:root {
  --ayo-red: #ef4053;
  --ayo-red-dark: #dc2342;
  --ayo-coral: #ff5a5f;
  --ayo-rose: #c93466;
  --ayo-plum: #72285e;
  --ayo-blush: #f7c8cf;
  --ayo-blush-soft: #fff1f3;
  --ayo-slate: #3b4052;
  --ayo-muted: #7c8392;
  --ayo-mist: #dde3e4;
  --ayo-cloud: #f7f8fa;
  --ayo-white: #ffffff;
  --ayo-shadow: 0 24px 70px rgba(114, 40, 94, .18);
  --ayo-shadow-soft: 0 18px 50px rgba(59, 64, 82, .10);
  --max-width: 1160px;
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ayo-slate);
  background: linear-gradient(180deg, #fff 0%, #fff8f9 38%, #fff 100%);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, textarea, select {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .16;
  animation: blobDrift 15s ease-in-out infinite alternate;
}

.blob-one {
  width: 470px;
  height: 470px;
  background: var(--ayo-red);
  top: -180px;
  right: -120px;
}

.blob-two {
  width: 520px;
  height: 520px;
  background: var(--ayo-plum);
  bottom: 18%;
  left: -260px;
  animation-delay: -5s;
}

.blob-three {
  width: 320px;
  height: 320px;
  background: var(--ayo-blush);
  bottom: -120px;
  right: 8%;
  animation-delay: -9s;
}

@keyframes blobDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(35px, 45px, 0) scale(1.08); }
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 82px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(239, 64, 83, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(59, 64, 82, .08);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 55px rgba(59, 64, 82, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 108px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(59, 64, 82, .82);
  font-weight: 700;
  font-size: 14px;
}

.nav a {
  padding: 11px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav a:hover {
  color: var(--ayo-red);
  background: var(--ayo-blush-soft);
  transform: translateY(-1px);
}

.nav .nav-cta {
  color: var(--ayo-white);
  background: linear-gradient(135deg, var(--ayo-red), var(--ayo-red-dark));
  box-shadow: 0 12px 28px rgba(239, 64, 83, .28);
}

.nav .nav-cta:hover {
  color: var(--ayo-white);
  background: linear-gradient(135deg, var(--ayo-red-dark), var(--ayo-rose));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--ayo-blush-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ayo-red);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  padding-top: 92px;
}

.hero::before,
.why-panel::before,
.final-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, .22), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(114, 40, 94, .24), transparent 28%);
  opacity: .78;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--ayo-red);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 12px;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ayo-red);
  box-shadow: 0 0 0 6px rgba(239, 64, 83, .12);
}

.eyebrow.light {
  color: rgba(255,255,255,.92);
}

.eyebrow.light span {
  background: var(--ayo-white);
  box-shadow: 0 0 0 6px rgba(255,255,255,.16);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.06em;
  color: var(--ayo-slate);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--ayo-slate);
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -.03em;
  color: var(--ayo-slate);
  margin-bottom: 10px;
}

p {
  color: var(--ayo-muted);
  line-height: 1.72;
}

.hero-lead {
  max-width: 640px;
  font-size: 19px;
  color: rgba(59, 64, 82, .78);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ayo-white);
  background: linear-gradient(135deg, var(--ayo-red), var(--ayo-red-dark));
  box-shadow: 0 16px 34px rgba(239, 64, 83, .32);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(239, 64, 83, .42);
}

.btn-soft {
  color: var(--ayo-red);
  background: rgba(239, 64, 83, .09);
  box-shadow: inset 0 0 0 1px rgba(239, 64, 83, .12);
}

.btn-light {
  color: var(--ayo-red);
  background: var(--ayo-white);
  box-shadow: 0 16px 36px rgba(40, 18, 36, .18);
}

.full { width: 100%; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
}

.trust-strip div {
  padding: 16px;
  border: 1px solid rgba(239, 64, 83, .12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .70);
  box-shadow: var(--ayo-shadow-soft);
}

.trust-strip strong {
  display: block;
  color: var(--ayo-red);
  font-size: 20px;
  line-height: 1.1;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--ayo-muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 38% 62% 53% 47% / 47% 38% 62% 53%;
  background: linear-gradient(135deg, var(--ayo-red), var(--ayo-rose) 55%, var(--ayo-plum));
  box-shadow: 0 46px 90px rgba(114, 40, 94, .24);
  animation: morph 12s ease-in-out infinite alternate;
}

@keyframes morph {
  0% { border-radius: 38% 62% 53% 47% / 47% 38% 62% 53%; transform: rotate(-5deg) scale(.95); }
  100% { border-radius: 64% 36% 36% 64% / 42% 55% 45% 58%; transform: rotate(7deg) scale(1.02); }
}

.phone-shell {
  position: relative;
  width: min(326px, 78vw);
  aspect-ratio: 313 / 678;
  padding: 13px;
  border-radius: 42px;
  background: #192033;
  border: 4px solid #2a324c;
  box-shadow: 0 38px 90px rgba(28, 18, 38, .36);
  overflow: hidden;
  z-index: 2;
  transform: rotate(3deg);
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

.phone-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  background: var(--ayo-white);
}

.phone-notch {
  position: absolute;
  width: 110px;
  height: 25px;
  left: 50%;
  top: 13px;
  transform: translateX(-50%);
  border-radius: 0 0 17px 17px;
  background: #192033;
  z-index: 4;
}

.orbital-card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 245px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  box-shadow: var(--ayo-shadow);
  border: 1px solid rgba(255,255,255,.7);
}

.orbital-card strong,
.orbital-card small { display: block; }

.orbital-card strong { color: var(--ayo-slate); }
.orbital-card small { color: var(--ayo-muted); line-height: 1.45; }

.card-a { top: 74px; left: 0; }
.card-b { right: -4px; bottom: 90px; }

.mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ayo-white);
  background: var(--ayo-red);
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(239,64,83,.28);
}

.heartbeat {
  animation: beat 1.4s ease-in-out infinite;
}

@keyframes beat {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.12); }
  55% { transform: scale(.96); }
}

.floating { animation: float 5.8s ease-in-out infinite; }
.floating.slow { animation-duration: 7s; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  font-size: 18px;
}

.centered { text-align: center; }

.problem-list {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--ayo-shadow-soft);
  border: 1px solid rgba(239, 64, 83, .10);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.question-grid span {
  padding: 14px 14px 14px 42px;
  position: relative;
  border-radius: 16px;
  color: var(--ayo-slate);
  background: var(--ayo-cloud);
  font-weight: 800;
}

.question-grid span::before {
  content: "?";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ayo-white);
  background: var(--ayo-red);
  font-size: 12px;
}

.bold-note {
  font-weight: 800;
  color: var(--ayo-slate);
  margin-bottom: 0;
}

.service-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.price-card,
.step,
.lead-form,
.packages {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(239, 64, 83, .11);
  box-shadow: var(--ayo-shadow-soft);
}

.service-card {
  padding: 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(239,64,83,.18), transparent 70%);
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 64, 83, .24);
  box-shadow: 0 26px 58px rgba(59,64,82,.13);
}

.service-card:hover::after { transform: scale(1.2); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ayo-white);
  background: linear-gradient(135deg, var(--ayo-red), var(--ayo-rose));
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(239,64,83,.25);
}

.service-card p { margin-bottom: 0; }

.why-panel,
.final-panel {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 54px;
  color: var(--ayo-white);
  background: linear-gradient(135deg, var(--ayo-red), var(--ayo-rose) 52%, var(--ayo-plum));
  box-shadow: 0 34px 80px rgba(114,40,94,.22);
}

.why-panel h2,
.final-panel h2 { color: var(--ayo-white); }
.why-panel p,
.final-panel p { color: rgba(255,255,255,.82); }

.why-panel > *, .final-panel > * { position: relative; z-index: 1; }

.why-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-grid div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.why-grid strong {
  display: block;
  color: var(--ayo-white);
  margin-bottom: 8px;
  font-size: 17px;
}

.why-grid p { margin-bottom: 0; line-height: 1.55; font-size: 14px; }

.timeline {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(239,64,83,.08), rgba(239,64,83,.44), rgba(239,64,83,.08));
}

.step {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 28px;
}

.step-num {
  width: 76px;
  height: 76px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ayo-white);
  background: linear-gradient(135deg, var(--ayo-red), var(--ayo-rose));
  font-size: 27px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(239,64,83,.28);
}

.step p { margin-bottom: 0; }

.pricing-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  padding: 30px;
  border-radius: 30px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover { transform: translateY(-7px); }

.price-card.featured {
  background: linear-gradient(180deg, var(--ayo-white), var(--ayo-blush-soft));
  border-color: rgba(239,64,83,.28);
  transform: translateY(-12px);
}

.price-card.featured:hover { transform: translateY(-18px); }

.price-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ayo-red);
  background: rgba(239,64,83,.09);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price {
  color: var(--ayo-slate);
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.05em;
  margin: 12px 0 18px;
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ayo-red);
  font-weight: 950;
}

.card-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform .2s ease;
}

.card-link:hover::after { transform: translateX(4px); }

.packages {
  margin-top: 24px;
  border-radius: 34px;
  padding: 30px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.package-copy h3 { font-size: 32px; }
.package-copy p:last-child { margin-bottom: 0; }

.package-table {
  display: grid;
  gap: 10px;
}

.package-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: var(--ayo-cloud);
}

.package-row span { font-weight: 800; color: var(--ayo-slate); }
.package-row strong { color: var(--ayo-muted); }
.package-row b { color: var(--ayo-red); font-size: 18px; }

.package-row.highlight {
  background: linear-gradient(135deg, rgba(239,64,83,.12), rgba(247,200,207,.36));
  box-shadow: inset 0 0 0 1px rgba(239,64,83,.18);
}

.consultation-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ayo-slate);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ayo-white);
  background: var(--ayo-red);
  font-size: 13px;
}

.lead-form {
  padding: 30px;
  border-radius: 34px;
}

.form-header h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.form-header p { margin-bottom: 22px; }

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ayo-slate);
  font-weight: 900;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(59,64,82,.13);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ayo-slate);
  background: var(--ayo-white);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form textarea { resize: vertical; }

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: rgba(239,64,83,.45);
  box-shadow: 0 0 0 5px rgba(239,64,83,.10);
}

.form-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(124,131,146,.82);
  line-height: 1.55;
}

.form-success {
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  color: #147a48;
  background: #eafff3;
  font-weight: 850;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 54px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(239,64,83,.11);
  border-radius: 22px;
  padding: 20px 22px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--ayo-shadow-soft);
  cursor: pointer;
}

.accordion-item span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ayo-slate);
  font-weight: 950;
  font-size: 18px;
}

.accordion-item span::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ayo-red);
  background: rgba(239,64,83,.09);
  transition: transform .2s ease;
}

.accordion-item[aria-expanded="true"] span::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height .28s ease, opacity .28s ease, margin .28s ease;
}

.accordion-item[aria-expanded="true"] p {
  max-height: 220px;
  opacity: 1;
  margin-top: 12px;
}

.final-panel {
  text-align: center;
  padding: 66px 44px;
}

.final-panel p {
  max-width: 720px;
  margin: 0 auto 26px;
  font-size: 18px;
}

.footer {
  padding: 44px 0 88px;
  background: var(--ayo-white);
  border-top: 1px solid rgba(239,64,83,.10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}

.footer-logo {
  width: 104px;
  margin-bottom: 12px;
}

.footer strong {
  display: block;
  color: var(--ayo-slate);
  margin-bottom: 8px;
}

.footer p { margin-bottom: 0; }

.sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ayo-white);
  background: linear-gradient(135deg, var(--ayo-red), var(--ayo-red-dark));
  box-shadow: 0 16px 36px rgba(239,64,83,.35);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  .section-pad { padding: 82px 0; }
  .section-pad-sm { padding: 64px 0; }

  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 24px 60px rgba(59,64,82,.16);
    border: 1px solid rgba(239,64,83,.12);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 16px;
  }

  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid,
  .two-col,
  .consultation-grid,
  .faq-grid,
  .packages {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual::before {
    width: 480px;
    height: 480px;
  }

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

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

  .timeline::before { display: none; }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand img { width: 88px; }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .trust-strip,
  .question-grid,
  .service-grid,
  .pricing-grid,
  .timeline,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual::before {
    width: 360px;
    height: 360px;
  }

  .phone-shell {
    width: min(270px, 76vw);
    border-radius: 36px;
  }

  .orbital-card {
    width: 210px;
    padding: 12px;
  }

  .card-a {
    top: 20px;
    left: 2px;
  }

  .card-b {
    right: 2px;
    bottom: 30px;
  }

  .why-panel,
  .final-panel {
    padding: 34px 22px;
    border-radius: 30px;
  }

  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-7px); }

  .package-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lead-form {
    padding: 22px;
    border-radius: 28px;
  }

  .form-header h3,
  .package-copy h3 {
    font-size: 26px;
  }

  .footer {
    padding-bottom: 96px;
  }

  .sticky-cta {
    display: flex;
  }
}
