/* ============================================================
   THE PERFECT PITCH — editorial, navy & blue
   Cool paper · Deep navy · Cornflower blue
   ============================================================ */

:root {
  /* The Perfect Pitch brand: deep navy ink + cornflower blue, cool paper.
     (--teal = primary brand blue, --amber = light sky blue — names kept
     from the original build to avoid touching every rule.) */
  --paper: #F5F6F9;
  --paper-soft: #E9EDF4;
  --ink: #16233A;
  --ink-soft: #3A4A63;
  --muted: #71809A;
  --teal: #4A82E4;
  --teal-deep: #2F63C9;
  --amber: #9DC0F9;
  --line: rgba(22, 35, 58, 0.14);
  --line-light: rgba(245, 246, 249, 0.18);
  --radius: 20px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--teal); color: var(--paper); }

/* ---------- texture & progress ---------- */
.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 9998; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); } 60% { transform: translate(-2%,-2%); }
  80% { transform: translate(3%,3%); }
}

.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  z-index: 10000; transition: width 0.1s linear;
}

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); margin-bottom: 0.5em; }
h3 { font-size: 1.35rem; font-weight: 500; line-height: 1.2; }

.serif-italic { font-style: italic; font-weight: 300; color: var(--teal); }
.accent-text { color: var(--teal); }
.strike { position: relative; color: var(--muted); }
.strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 54%;
  height: 3px; background: var(--amber); transform: rotate(-3deg);
}

.eyebrow {
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--teal); margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 2px; background: var(--teal); }
.eyebrow.light { color: var(--amber); }
.eyebrow.light::before { background: var(--amber); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 56ch; }
.lead.strong { font-weight: 700; color: var(--ink); margin-top: 1.6rem; }

/* ---------- layout ---------- */
.container { width: min(1180px, 92vw); margin: 0 auto; }
.container.narrow { width: min(820px, 92vw); }
.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.section-tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); max-width: 46rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.split-left { position: sticky; top: 7rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; text-decoration: none;
  border: 2px solid transparent; border-radius: 999px; cursor: pointer;
  padding: 0.8rem 1.7rem; font-size: 0.95rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s, color 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.02rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-accent { background: var(--teal); color: var(--paper); box-shadow: 0 10px 30px -10px rgba(74,130,228,0.55); }
.btn-accent:hover { background: var(--teal-deep); box-shadow: 0 16px 36px -10px rgba(74,130,228,0.65); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #22345A; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: #fff; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s, transform 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(245, 246, 249, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  width: min(1180px, 92vw); margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; padding: 1rem 0;
}
.brand { display: flex; align-items: center; text-decoration: none; color: var(--ink); }
.brand-name { font-weight: 800; font-size: 1.22rem; line-height: 1; letter-spacing: -0.02em; }
.brand-pitch { position: relative; display: inline-block; }
.brand-pitch::after {
  content: ""; position: absolute; left: -1px; right: -3px; bottom: -5px;
  height: 3.5px; border-radius: 99px; background: var(--teal); transform: rotate(-3deg);
}
.pitch-i { position: relative; font-style: normal; }
.pitch-i::after {
  content: ""; position: absolute; left: 50%; top: -0.36em; transform: translateX(-50%);
  width: 0.3em; height: 0.3em; border-radius: 50%; background: var(--teal);
}
.brand-name em {
  display: block; font-style: normal; font-weight: 700; font-size: 0.55rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-top: 7px;
}

.nav-links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 0.9rem;
  position: relative; padding: 0.2rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--teal); transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 6px 0; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 1.2rem;
  padding: 1.5rem 4vw 2rem;
  background: rgba(245, 246, 249, 0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.mobile-menu.open { display: flex; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  position: relative; padding: 8rem 0 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(74,130,228,0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(157,192,249,0.10), transparent 60%),
    var(--paper);
}
.hero-inner {
  width: min(1180px, 92vw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center;
}
.hero-sub { margin: 1.6rem 0 2.2rem; font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--ink-soft); max-width: 54ch; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-meta { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero-meta div:not(.meta-rule) { display: flex; flex-direction: column; }
.hero-meta strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.hero-meta span { font-size: 0.78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.meta-rule { width: 1px; height: 2.4rem; background: var(--line); }

/* load-in animation */
.load-in { opacity: 0; transform: translateY(26px); animation: loadIn 0.9s var(--ease-out) forwards; animation-delay: calc(var(--d) * 0.13s + 0.1s); }
@keyframes loadIn { to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--line); border-radius: 999px;
}
.hero-scroll span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 4px; background: var(--teal); animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: 0.2; } }

/* ---------- hero visual: document stack ---------- */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.doc-stack { position: relative; width: 300px; height: 420px; animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }

.doc {
  position: absolute; inset: 0; border-radius: 14px; background: #fff;
  box-shadow: 0 30px 60px -20px rgba(22,35,58,0.35);
  transition: transform 0.6s var(--ease-out);
}
.doc-back  { transform: rotate(9deg) translate(38px, 10px); background: var(--paper-soft); }
.doc-mid   { transform: rotate(-7deg) translate(-30px, 4px); background: #FBFAF7; }
.doc-stack:hover .doc-back { transform: rotate(13deg) translate(52px, 6px); }
.doc-stack:hover .doc-mid  { transform: rotate(-11deg) translate(-46px, 0); }

.doc-band { height: 44%; border-radius: 14px 14px 0 0; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.doc-band.alt { background: linear-gradient(135deg, var(--ink), #24384A); height: 34%; }
.doc-lines { padding: 1.2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.doc-lines i { display: block; height: 8px; border-radius: 4px; background: rgba(22,35,58,0.1); }
.doc-lines i:nth-child(2) { width: 80%; } .doc-lines i:nth-child(3) { width: 62%; } .doc-lines i:nth-child(4) { width: 71%; }
.doc-tag {
  position: absolute; bottom: 1rem; left: 1.2rem; font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
}

.doc-front { overflow: hidden; background: var(--ink); }
.doc-cover { height: 100%; padding: 2rem 1.7rem; display: flex; flex-direction: column; color: var(--paper); }
.doc-kicker { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.22em; color: var(--amber); }
.doc-title { font-family: var(--font-display); font-size: 2rem; line-height: 1.12; margin-top: auto; }
.doc-foot { margin-top: 1.6rem; font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(245,246,249,0.55); border-top: 1px solid var(--line-light); padding-top: 1rem; }
.doc-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.14) 46%, transparent 60%);
  transform: translateX(-120%); animation: shine 5.5s ease-in-out infinite 1.5s;
}
@keyframes shine { 0%, 55%, 100% { transform: translateX(-120%);} 75% { transform: translateX(120%);} }

.stamp {
  position: absolute; top: -22px; right: -30px; width: 92px; height: 92px; border-radius: 50%;
  background: var(--amber); color: var(--ink); display: grid; place-items: center;
  font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  text-align: center; line-height: 1.25; transform: rotate(12deg);
  box-shadow: 0 14px 30px -10px rgba(157,192,249,0.6);
  animation: stampSpin 12s linear infinite; z-index: 3;
}
@keyframes stampSpin { 0%,100% { transform: rotate(8deg) } 50% { transform: rotate(18deg) } }

.orbit { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(74,130,228,0.3); }
.orbit-1 { width: 520px; height: 520px; animation: spin 40s linear infinite; }
.orbit-2 { width: 640px; height: 640px; border-color: rgba(22,35,58,0.1); animation: spin 60s linear infinite reverse; }
.orbit-1::before, .orbit-2::before {
  content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px;
  border-radius: 50%; background: var(--teal);
}
.orbit-2::before { background: var(--amber); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- marquee ---------- */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; padding: 1.1rem 0; }
.marquee-track {
  display: flex; gap: 2.6rem; align-items: center; white-space: nowrap;
  width: max-content; animation: marquee 28s linear infinite;
  font-family: var(--font-display); font-size: 1.15rem; font-style: italic;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track i { color: var(--amber); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- problem ---------- */
.problem-list { list-style: none; margin: 2rem 0 0; display: flex; flex-direction: column; gap: 1rem; }
.problem-list li {
  display: flex; gap: 1rem; align-items: baseline; font-weight: 600;
  padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.problem-list li:hover { transform: translateX(8px); box-shadow: 0 10px 30px -18px rgba(22,35,58,0.35); }
.x { color: #C0452F; font-weight: 800; }

/* ---------- not this ---------- */
.notthis { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-soft); }
.not-row { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; justify-content: center; }
.not-chip, .is-chip {
  padding: 0.55rem 1.15rem; border-radius: 999px; font-weight: 700; font-size: 0.88rem;
  transition: transform 0.3s var(--ease-out);
}
.not-chip { border: 1.5px dashed rgba(22,35,58,0.35); color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(192,69,47,0.6); text-decoration-thickness: 2px; }
.is-chip { background: var(--teal); color: var(--paper); box-shadow: 0 10px 24px -12px rgba(74,130,228,0.6); }
.not-chip:hover, .is-chip:hover { transform: translateY(-3px) rotate(-1deg); }

/* ---------- deliverable cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem; overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -28px rgba(22,35,58,0.35);
  border-color: rgba(74,130,228,0.4);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out);
}
.card:hover::before { transform: scaleX(1); }
.card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: start; }

.card-num {
  font-family: var(--font-display); font-style: italic; font-size: 2.6rem; color: rgba(74,130,228,0.35);
  line-height: 1; display: block; margin-bottom: 1rem;
}
.card-wide .card-num { margin-bottom: 0; font-size: 3.4rem; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }
.card-icon { font-size: 2rem; filter: grayscale(0.2); align-self: center; }
.card:not(.card-wide) .card-icon { position: absolute; top: 1.6rem; right: 1.6rem; font-size: 1.5rem; opacity: 0.7; }

.card-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.card-tags li {
  font-size: 0.78rem; font-weight: 700; padding: 0.32rem 0.8rem; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft);
}

/* ---------- dark zone ---------- */
.dark-zone {
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(74,130,228,0.25), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(157,192,249,0.12), transparent 60%),
    var(--ink);
  color: var(--paper); padding: clamp(5rem, 10vw, 8.5rem) 0;
}
.dark-zone .lead { color: rgba(245,246,249,0.72); }
.dark-zone h2 .serif-italic { color: var(--amber); }

.honesty { max-width: 46rem; margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.no-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.no-grid span {
  padding: 0.6rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line-light);
  font-weight: 700; font-size: 0.9rem; color: rgba(245,246,249,0.75); position: relative;
  transition: border-color 0.3s, color 0.3s;
}
.no-grid span::before { content: "✕ "; color: #E07856; }
.no-grid span:hover { border-color: #E07856; color: var(--paper); }

/* ---------- pricing ---------- */
.price-panel {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line-light); border-radius: 28px;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(245,246,249,0.04); backdrop-filter: blur(6px);
}
.price-figure { display: flex; align-items: baseline; margin: 0.6rem 0 0.4rem; }
.currency { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--amber); }
.amount { font-family: var(--font-display); font-size: clamp(4rem, 8.5vw, 6.5rem); font-weight: 500; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.amount-words { font-size: clamp(3rem, 6vw, 4.8rem); line-height: 1.04; font-style: italic; }
.price-note { color: rgba(245,246,249,0.65); margin: 0.6rem 0 2rem; font-weight: 600; max-width: 30ch; }

.milestone { display: flex; gap: 1.2rem; margin-bottom: 1.8rem; }
.milestone-bar { width: 8px; border-radius: 8px; background: rgba(245,246,249,0.12); position: relative; overflow: hidden; flex-shrink: 0; }
.milestone-bar .fill { position: absolute; bottom: 0; left: 0; right: 0; border-radius: 8px; background: linear-gradient(180deg, var(--amber), var(--teal)); transform: scaleY(0); transform-origin: bottom; transition: transform 1.2s var(--ease-out) 0.3s; }
.in-view .fill-20 { transform: scaleY(0.2); }
.in-view .fill-80 { transform: scaleY(0.8); }
.milestone-info strong { display: block; font-size: 1.05rem; margin-bottom: 0.25rem; }
.milestone-info span { color: rgba(245,246,249,0.62); font-size: 0.92rem; }

.price-extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line-light); }
.price-extras div { display: flex; flex-direction: column; gap: 0.2rem; }
.price-extras strong { font-size: 0.95rem; }
.price-extras span { font-size: 0.8rem; color: rgba(245,246,249,0.6); }

/* ---------- process ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  display: flex; gap: 1.4rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.8rem; position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -26px rgba(22,35,58,0.3); }
.step-num {
  flex-shrink: 0; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem;
  background: var(--ink); color: var(--paper);
  transition: background 0.3s, transform 0.4s var(--ease-out);
}
.step:hover .step-num { background: var(--teal); transform: rotate(-8deg) scale(1.08); }
.step h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.step p { color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- intake checklist ---------- */
.intake { background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.check-list li {
  display: flex; gap: 0.9rem; align-items: baseline; font-weight: 600;
  padding: 0.9rem 1.2rem; border-radius: 12px; background: #fff; border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.check-list li:hover { transform: translateX(8px); border-color: rgba(74,130,228,0.5); }
.tick { color: var(--teal); font-weight: 800; }

/* ---------- FAQ accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: 0.9rem; }
.accordion details { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color 0.3s; }
.accordion details[open] { border-color: rgba(74,130,228,0.5); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 1.3rem 1.5rem;
  font-weight: 700; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.acc-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; background: var(--teal); border-radius: 2px;
  transition: transform 0.35s var(--ease-out);
}
.acc-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
details[open] .acc-icon::after { transform: rotate(90deg); }
.accordion p { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }

/* ---------- CTA & form ---------- */
.cta-inner { max-width: 40rem; margin: 0 auto; text-align: center; }
.cta-inner .eyebrow { justify-content: center; }
.cta-inner .lead { margin: 0 auto 2.5rem; }

.cta-form { text-align: left; display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(245,246,249,0.7); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--paper);
  background: rgba(245,246,249,0.07); border: 1.5px solid var(--line-light);
  border-radius: 12px; padding: 0.85rem 1rem; outline: none; resize: vertical;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245,246,249,0.35); }
.field input:focus, .field textarea:focus {
  border-color: var(--teal); background: rgba(245,246,249,0.1);
  box-shadow: 0 0 0 4px rgba(74,130,228,0.25);
}
.field input.error, .field textarea.error { border-color: #E07856; }
.form-note { text-align: center; font-size: 0.85rem; color: rgba(245,246,249,0.55); }
.form-note.success { color: #6FD3A7; font-weight: 700; }
.form-note.error { color: #F0916F; font-weight: 700; }
.form-note.error a { color: inherit; text-decoration: underline; }
.btn:disabled { opacity: 0.65; cursor: default; transform: none; }

/* ---------- footer ---------- */
.footer { background: var(--paper); padding: 3.5rem 0 2.5rem; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; gap: 1.6rem; }
.footer-line { max-width: 52ch; color: var(--ink-soft); font-size: 0.95rem; }
.footer-meta { display: flex; gap: 1.6rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); }
.footer-meta a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer-meta a:hover { color: var(--teal); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: var(--stagger, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; margin-top: 1rem; }
  .orbit-1 { width: 400px; height: 400px; } .orbit-2 { width: 500px; height: 500px; }
  .split { grid-template-columns: 1fr; }
  .split-left { position: static; }
  .cards, .steps { grid-template-columns: 1fr; }
  .card-wide { grid-template-columns: 1fr; }
  .price-panel { grid-template-columns: 1fr; }
  .price-extras { grid-template-columns: 1fr; }
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: block; }
  .nav { background: rgba(245, 246, 249, 0.92); backdrop-filter: blur(14px); }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .doc-stack { width: 240px; height: 340px; }
  .stamp { width: 76px; height: 76px; font-size: 0.62rem; top: -14px; right: -14px; }
  .hero-meta { gap: 1rem; }
  .hero-scroll { display: none; }
}

/* ---------- optional extras (deliberately quieter than the core cards) ---------- */
.extras {
  background: var(--paper-soft);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.extras-head {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end; margin-bottom: 2rem;
}
.extras-title {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1; letter-spacing: -0.015em;
}
.extras-note { font-size: 0.92rem; color: var(--muted); max-width: 52ch; font-weight: 500; }

.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.extra {
  background: rgba(255,255,255,0.6); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.1rem 1.2rem;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, background 0.3s;
}
.extra:hover { transform: translateY(-4px); background: #fff; border-color: rgba(74,130,228,0.45); }
.extra h4 {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 800;
  margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.5rem;
}
.extra h4::before {
  content: "+"; color: var(--teal); font-size: 1.1rem; font-weight: 700; line-height: 1;
}
.extra p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 960px) {
  .extras-head { grid-template-columns: 1fr; align-items: start; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .extras-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .load-in { opacity: 1; transform: none; }
}
