/* ===== BI Plus Design System — biplus.com.br ===== */
/* OKLCH color system, dark-first, Outfit + Inter typography */

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Colors — Background */
  --color-bg-deep:         oklch(0.13 0.015 260);
  --color-bg-surface:      oklch(0.17 0.02 260);
  --color-bg-elevated:     oklch(0.22 0.025 260);
  --color-border-subtle:   oklch(0.30 0.02 260);

  /* Colors — Text */
  --color-text-primary:    oklch(0.95 0.005 260);
  --color-text-secondary:  oklch(0.70 0.01 260);
  --color-text-muted:      oklch(0.50 0.01 260);

  /* Colors — Accent (Neon Cyan) */
  --color-accent:          oklch(0.75 0.18 195);
  --color-accent-hover:    oklch(0.82 0.15 195);
  --color-accent-muted:    oklch(0.55 0.10 195);
  --color-accent-glow:     oklch(0.75 0.18 195 / 0.25);

  /* Colors — Status */
  --color-success:         oklch(0.72 0.17 155);
  --color-warning:         oklch(0.80 0.15 85);
  --color-error:           oklch(0.65 0.20 25);

  /* Gradients */
  --gradient-hero:         linear-gradient(165deg, oklch(0.13 0.015 260) 0%, oklch(0.10 0.03 230) 50%, oklch(0.12 0.02 195) 100%);
  --gradient-card:         linear-gradient(180deg, oklch(0.19 0.025 260) 0%, oklch(0.15 0.015 260) 100%);
  --gradient-accent:       linear-gradient(135deg, oklch(0.75 0.18 195) 0%, oklch(0.65 0.15 230) 100%);

  /* Typography */
  --font-heading:  'Outfit', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --text-display:  clamp(2.5rem, 5vw, 4.5rem);
  --text-h1:       clamp(2rem, 3.5vw, 3rem);
  --text-h2:       clamp(1.5rem, 2.5vw, 2rem);
  --text-h3:       clamp(1.25rem, 2vw, 1.5rem);
  --text-body:     clamp(1rem, 1.2vw, 1.125rem);
  --text-small:    clamp(0.8rem, 1vw, 0.875rem);
  --text-micro:    0.75rem;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:      150ms;
  --dur-normal:    300ms;
  --dur-slow:      500ms;
  --dur-enter:     400ms;

  /* Effects */
  --shadow-sm:    0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md:    0 4px 12px oklch(0 0 0 / 0.4);
  --shadow-lg:    0 8px 32px oklch(0 0 0 / 0.5);
  --shadow-glow:  0 0 24px var(--color-accent-glow);

  /* Layout */
  --container-max:     1200px;
  --container-padding: var(--space-lg);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-in-out);
}

a:hover, a:focus-visible {
  color: var(--color-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== ANIMATED GRID BACKGROUND ===== */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--color-accent-muted) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-accent-muted) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: oklch(0.13 0.015 260 / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background var(--dur-normal) var(--ease-in-out);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  text-decoration: none;
}

.nav__logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--color-bg-deep);
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav__links a {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--dur-normal) var(--ease-out-expo);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--color-text-primary);
}

.nav__cta {
  display: none;
}

.nav__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
}

.nav__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: oklch(0.10 0.02 260 / 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-normal) var(--ease-in-out),
              visibility var(--dur-normal);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 600;
  color: var(--color-text-primary);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  font-size: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-body);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out-expo);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--color-bg-deep);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--color-accent-glow), var(--shadow-md);
  color: var(--color-bg-deep);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent-muted);
}

.btn--outline:hover {
  background: oklch(0.75 0.18 195 / 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-small);
}

.btn svg {
  width: 1.25em;
  height: 1.25em;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: var(--space-5xl) 0 var(--space-4xl);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-lg);
  background: oklch(0.75 0.18 195 / 0.1);
  border: 1px solid oklch(0.75 0.18 195 / 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
  animation: fade-in-up 0.6s var(--ease-out-expo) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 oklch(0.72 0.17 155 / 0.5); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 8px oklch(0.72 0.17 155 / 0); }
}

.hero__title {
  font-size: var(--text-display);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  animation: fade-in-up 0.6s var(--ease-out-expo) 0.1s both;
}

.hero__title-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  animation: fade-in-up 0.6s var(--ease-out-expo) 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  animation: fade-in-up 0.6s var(--ease-out-expo) 0.3s both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero floating orb */
.hero__orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.75 0.18 195 / 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: orb-float 8s ease-in-out infinite;
}

.hero__orb--1 {
  top: 10%;
  right: -5%;
}

.hero__orb--2 {
  bottom: 5%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, oklch(0.65 0.15 230 / 0.12) 0%, transparent 70%);
  animation-delay: -3s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(15px, -20px) scale(1.05); }
  66%      { transform: translate(-10px, 10px) scale(0.95); }
}

/* ===== SECTION COMMON ===== */
.section {
  position: relative;
  z-index: 1;
  padding: var(--space-5xl) 0;
}

.section--alt {
  background: var(--color-bg-surface);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
}

.section__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  font-weight: 500;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.section__title {
  font-size: var(--text-h1);
  margin-bottom: var(--space-md);
}

.section__desc {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--dur-normal) var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: oklch(0.75 0.18 195 / 0.3);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.3), 0 0 0 1px oklch(0.75 0.18 195 / 0.1);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.75 0.18 195 / 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
}

.service-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card__title {
  font-size: var(--text-h3);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  counter-reset: step;
}

.step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  counter-increment: step;
}

.step__number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-bg-deep);
}

.step__content h3 {
  font-size: var(--text-h3);
  margin-bottom: var(--space-xs);
}

.step__content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--dur-normal) var(--ease-out-expo);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-glow);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-lg);
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-micro);
  font-weight: 700;
  color: var(--color-bg-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.pricing-card__desc {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-card__price {
  margin-bottom: var(--space-lg);
}

.pricing-card__setup {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 900;
  color: var(--color-text-primary);
}

.pricing-card__setup-label {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-card__monthly {
  font-size: var(--text-body);
  color: var(--color-accent);
  font-weight: 600;
  margin-top: var(--space-xs);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: var(--space-2xl);
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--color-text-secondary);
  font-size: var(--text-small);
  border-bottom: 1px solid oklch(0.30 0.02 260 / 0.5);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--color-success);
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

/* ===== SOCIAL PROOF ===== */
.proof {
  text-align: center;
}

.proof__quote {
  font-size: var(--text-h3);
  font-style: italic;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  position: relative;
}

.proof__quote::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--color-accent-muted);
  line-height: 1;
  opacity: 0.3;
}

.proof__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  opacity: 0.5;
  filter: grayscale(1) brightness(2);
  margin-top: var(--space-2xl);
}

.proof__logos span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-body);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  min-height: 44px;
  transition: color var(--dur-fast);
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__question svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  transition: transform var(--dur-normal) var(--ease-out-expo);
}

.faq-item.is-open .faq-item__question svg {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out-expo),
              padding var(--dur-slow) var(--ease-out-expo);
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.faq-item__answer p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__inner {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-2xl);
  position: relative;
}

.cta-section__inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: var(--gradient-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
}

.cta-section h2 {
  font-size: var(--text-h1);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  background: oklch(0.10 0.01 260);
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand p {
  color: var(--color-text-secondary);
  margin-top: var(--space-md);
  font-size: var(--text-small);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer__legal {
  font-size: var(--text-micro);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer__powered {
  font-size: var(--text-micro);
  color: var(--color-text-muted);
}

.footer__powered strong {
  color: var(--color-accent-muted);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-enter) var(--ease-out-expo),
              transform var(--dur-enter) var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__mobile-toggle {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .grid-bg {
    animation: none;
  }

  .hero__orb {
    animation: none;
  }
}
