:root {
  --white: #ffffff;
  --rose: #F7CAC9;
  --rose-light: #fdf0ef;
  --rose-deep: #e9a8a6;
  --blue: #93A9D1;
  --blue-light: #eef2f9;
  --blue-deep: #5c74a3;
  --ink: #2b2f3f;
  --muted: #6b7086;
  --font: 'Arimo', sans-serif;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(92, 116, 163, 0.15);
  --shadow-sm: 0 8px 24px rgba(92, 116, 163, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--blue-deep); }
a:hover { color: var(--ink); }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--rose-deep);
  border-radius: 3px;
  margin-right: 0.75rem;
  vertical-align: middle;
}

.lead { font-size: 1.15rem; color: var(--muted); }

.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .lead { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(147, 169, 209, 0.2);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}

.logo small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

footer .logo small { color: rgba(255, 255, 255, 0.6); }

.logo .mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(92, 116, 163, 0.25);
  flex-shrink: 0;
}

nav { display: flex; gap: 0.25rem; }

nav a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

nav a:hover { background: var(--rose-light); color: var(--ink); }
nav a.active { background: var(--rose); color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(43, 47, 63, 0.25);
}

.btn-primary:hover { background: var(--blue-deep); color: var(--white); }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--rose-deep);
}

.btn-secondary:hover { background: var(--rose-light); color: var(--ink); }

.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.75;
  animation: float 14s ease-in-out infinite;
  z-index: 0;
}

.blob-rose { width: 520px; height: 520px; background: var(--rose); top: -160px; left: -140px; }
.blob-blue { width: 600px; height: 600px; background: var(--blue); bottom: -220px; right: -160px; animation-delay: -6s; }
.blob-small { width: 260px; height: 260px; background: var(--rose); bottom: 10%; left: 40%; animation-delay: -3s; opacity: 0.5; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--blue-deep), var(--rose-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .tagline {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait {
  width: min(400px, 80vw);
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px 30px 30px;
  background: linear-gradient(160deg, var(--rose) 0%, var(--blue) 100%);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 55%);
}

.portrait .initial {
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.05em;
  z-index: 1;
}

.portrait picture { position: absolute; inset: 0; z-index: 1; }
.portrait::after { z-index: 2; }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }

.badge {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  animation: bob 6s ease-in-out infinite;
}

.badge .dot {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.badge-1 { top: 8%; left: -6%; }
.badge-1 .dot { background: var(--rose); }
.badge-2 { bottom: 12%; right: -8%; animation-delay: -3s; }
.badge-2 .dot { background: var(--blue); }

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

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--rose-light), var(--blue-light));
}

.page-hero .blob { opacity: 0.55; }
.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.75rem;
}

.page-hero .lead { max-width: 640px; margin: 0 auto; }
.page-hero.split-hero { text-align: left; padding: 6rem 0; }
.page-hero.split-hero .split { grid-template-columns: minmax(0, 65fr) minmax(0, 35fr); gap: 3rem; }
.page-hero.split-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
.page-hero.split-hero .lead { margin: 0 0 1rem; max-width: none; }
.page-hero.compact { padding: 3.5rem 0; }
.page-hero.compact .stat-card { padding: 2rem; }
.page-hero.compact .stat-card p { font-size: 1rem; }

section.tight { padding: 3rem 0; }
section.tight .faq,
section.tight .testimonials { margin-top: 0; }

.stat-card.poem p {
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.stat-card.poem cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue-deep);
}

/* ---------- Wave divider ---------- */
.wave { display: block; width: 100%; height: 80px; }
.wave svg { display: block; width: 100%; height: 100%; }

/* ---------- Sections ---------- */
section { padding: 5.5rem 0; position: relative; }

.section-soft { background: var(--blue-light); }
.section-rose { background: var(--rose-light); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse > :first-child { order: 2; }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--rose);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.stat-card .quote-mark {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  font-size: 6rem;
  line-height: 1;
  color: var(--rose);
  font-weight: 700;
}

.stat-card p { font-size: 1.1rem; color: var(--ink); margin: 0; }

.about-visual {
  position: relative;
  height: 520px;
}

.about-photo {
  position: absolute;
  inset: 5% 8% 5% 12%;
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

.about-visual .shape {
  position: absolute;
  border-radius: var(--radius);
}

.about-visual .s1 {
  inset: 10% 20% 20% 0;
  background: linear-gradient(160deg, var(--rose), var(--rose-deep));
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
}

.about-visual .s2 {
  inset: 30% 0 0 35%;
  background: linear-gradient(160deg, var(--blue), var(--blue-deep));
  border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
  opacity: 0.9;
}

.about-visual .s3 {
  top: 0;
  right: 0;
  z-index: 2;
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 3rem;
}

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(147, 169, 209, 0.15);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.card p { color: var(--muted); }

.icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.icon-rose { background: var(--rose); }
.icon-blue { background: var(--blue); color: var(--white); }
.icon-mix { background: linear-gradient(135deg, var(--rose), var(--blue)); }

.card .num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
}

.card .meta {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--rose);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.card .meta a { font-size: 0.85rem; }

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  align-items: stretch;
}

.plan {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s;
}

.plan:hover { transform: translateY(-8px); }

.plan.featured {
  background: linear-gradient(160deg, var(--ink), #3c4460);
  color: var(--white);
  transform: scale(1.04);
}

.plan.featured:hover { transform: scale(1.04) translateY(-8px); }
.plan.featured h3, .plan.featured .plan-price { color: var(--white); }
.plan.featured .includes li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.12); }
.plan.featured .includes li::before { background: var(--rose); color: var(--ink); }

.plan .ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.plan h3 { font-size: 1.6rem; }

.plan-price {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.5rem 0 1.5rem;
  letter-spacing: -0.03em;
}

.plan-price small { font-size: 1rem; font-weight: 400; color: inherit; opacity: 0.7; }

.includes { list-style: none; margin: 0 0 2rem; flex: 1; }

.includes li {
  padding: 0.6rem 0 0.6rem 2rem;
  border-bottom: 1px solid var(--rose-light);
  color: var(--muted);
  position: relative;
  font-size: 0.95rem;
}

.includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.plan .btn { justify-content: center; }

/* ---------- Price table ---------- */
.price-table {
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--rose-light);
  align-items: center;
}

.price-row:last-child { border-bottom: 0; }
.price-row:nth-child(even) { background: #fbfcfe; }
.price-row strong { display: block; }
.price-row .note { font-size: 0.875rem; color: var(--muted); }
.price-row .amount { font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.price-row .amount.free { color: var(--blue-deep); }

.footnote { font-size: 0.9rem; color: var(--muted); margin-top: 1.25rem; }

/* ---------- Quote blocks ---------- */
.quote-block {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.quote-block::before {
  content: '“';
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(90deg, var(--rose-deep), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-block p {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.quote-block cite {
  font-style: normal;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.05em;
}

.poem p { line-height: 1.9; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step { text-align: center; }

.step .circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose), var(--blue));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.step p { color: var(--muted); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 3rem auto 0; }

.faq details {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  border: 1px solid rgba(147, 169, 209, 0.15);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 4rem 1.4rem 1.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rose);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: transform 0.3s, background 0.3s;
}

.faq details[open] summary::after { content: '−'; background: var(--blue); color: var(--white); }

.faq .answer {
  padding: 0 1.75rem 1.5rem;
  color: var(--muted);
}

.faq .answer ul { margin: 0.5rem 0 1rem 1.25rem; }
.faq .answer li { margin-bottom: 0.5rem; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.75rem 2.25rem 2.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial[hidden] { display: none; }

.testimonials-more { margin-top: 2.5rem; }
.testimonials-more .btn { cursor: pointer; font-family: inherit; }

.testimonial::before {
  content: '“';
  position: absolute;
  top: 0.5rem;
  left: 1.75rem;
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  color: var(--rose);
}

.testimonial .stars { color: #f2b544; letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 1.1rem; }
.testimonial blockquote p { font-size: 1.05rem; color: var(--ink); flex: 1; }

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rose-light);
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

.avatar-rose { background: linear-gradient(135deg, var(--rose-deep), var(--rose)); }
.avatar-blue { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); }

.author strong { display: block; }
.author span { font-size: 0.9rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--rose) 0%, var(--blue) 100%);
  text-align: center;
  padding: 6rem 0;
}

.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-band .lead { color: var(--ink); opacity: 0.85; }
.cta-band .cta { justify-content: center; margin-top: 2rem; }

.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.cta-band::before { width: 400px; height: 400px; top: -200px; left: -100px; }
.cta-band::after { width: 300px; height: 300px; bottom: -150px; right: -80px; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 4.5rem 0 2rem;
}

footer a { color: var(--rose); text-decoration: none; }
footer a:hover { color: var(--white); text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

footer .logo { color: var(--white); margin-bottom: 1rem; }
footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
footer p { margin-bottom: 0.5rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 0.5rem; }

.social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
  font-weight: 700;
}

.social:hover { background: var(--rose); color: var(--ink) !important; text-decoration: none !important; }

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero .tagline { margin: 0 auto 2rem; }
  .cta { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .badge-1 { left: 0; }
  .badge-2 { right: 0; }
  .split, .split.reverse, .page-hero.split-hero .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child { order: 0; }
  .pricing { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-8px); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { height: 460px; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .logo small { display: none; }

  nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow);
    display: none;
  }

  nav.open { display: flex; }
  nav a { padding: 0.9rem 1rem; }

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

  section { padding: 4rem 0; }
  .hero { min-height: auto; padding: 3.5rem 0 5rem; }
  .scroll-hint { display: none; }
  .price-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .quote-block { padding: 2.5rem 1.5rem; }
}
