/* ============================================================
   CommandDeck — Light / Rich Tone / Motion
   Palette: warm ivory + deep teal + amber
   ============================================================ */
:root {
  --bg: #FAF7F1;
  --bg-2: #F2EDE2;
  --card: #FFFFFF;
  --ink: #14201D;
  --ink-2: #56655F;
  --ink-3: #8A968F;
  --teal: #0E7568;
  --teal-deep: #0A4C43;
  --teal-ink: #093F38;
  --teal-soft: #DCEDE8;
  --amber: #DD9F35;
  --amber-deep: #B97E1D;
  --amber-soft: #F8EBD2;
  --rose: #C65A72;
  --line: rgba(20, 32, 29, .10);
  --shadow-sm: 0 1px 2px rgba(20,32,29,.05), 0 4px 14px rgba(20,32,29,.06);
  --shadow-md: 0 2px 6px rgba(20,32,29,.06), 0 14px 40px rgba(20,32,29,.10);
  --shadow-lg: 0 8px 24px rgba(9,63,56,.12), 0 32px 80px rgba(9,63,56,.18);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4.2vw, 52px); font-weight: 700; }
h3 { font-size: 21px; font-weight: 600; }
p { text-wrap: pretty; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; }

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

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--teal), var(--amber));
  z-index: 300;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.scrolled {
  background: rgba(250,247,241,.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 20px; }
.brand em { font-style: normal; color: var(--teal); }
.brand-mark { width: 36px; height: 36px; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: 15px; }
.nav-links a:not(.btn) { color: var(--ink-2); transition: color .2s; position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--teal); border-radius: 2px; transition: width .3s var(--ease-out);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 15.5px;
  font-family: var(--font-body); border: 0; cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .25s;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(14,117,104,.30); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14,117,104,.36); }
.btn-ghost { background: transparent; color: var(--teal-deep); border: 1.5px solid rgba(14,117,104,.35); }
.btn-ghost:hover { background: var(--teal-soft); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 160px 0 40px; overflow: clip; }
.aurora { position: absolute; inset: 0; pointer-events: none; }
.aurora i {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
  animation: drift 16s ease-in-out infinite alternate;
}
.aurora i:nth-child(1) { width: 540px; height: 540px; left: -160px; top: -120px; background: #CFE8E1; }
.aurora i:nth-child(2) { width: 460px; height: 460px; right: -120px; top: 40px; background: #F6E5C4; animation-delay: -5s; }
.aurora i:nth-child(3) { width: 380px; height: 380px; left: 38%; top: 360px; background: #E4EFE5; animation-delay: -9s; }
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.12); }
}

.hero-copy { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-size: 13.5px; font-weight: 700; color: var(--teal-deep);
  box-shadow: var(--shadow-sm);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); position: relative; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--teal); opacity: 0; animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.4); opacity: .8; } 100% { transform: scale(1.4); opacity: 0; } }

.hero h1 {
  font-size: clamp(40px, 6.4vw, 78px); font-weight: 800; margin: 26px 0 22px;
  letter-spacing: -0.03em;
}
.grad-text {
  background: linear-gradient(100deg, var(--teal) 10%, var(--amber-deep) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); max-width: 640px; margin: 0 auto 34px; }
.lead strong { color: var(--ink); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-points {
  list-style: none; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7568' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* word-rise on load (class-triggered transition) */
.words .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.words .w > span {
  display: inline-block; transform: translateY(110%);
  transition: transform .9s var(--ease-out); transition-delay: var(--wd, 0s);
}
.words.ready .w > span { transform: translateY(0); }

/* hero screenshot — 3D tilt that flattens on scroll */
.hero-shot-wrap { perspective: 1400px; margin: 70px auto 0; max-width: 1060px; position: relative; padding: 0 28px; }
.hero-shot {
  transform: rotateX(22deg) scale(.94); transform-origin: 50% 0;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(9,63,56,.16);
  background: #0d1117;
  will-change: transform;
}
.shot-bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 18px;
  background: #1A2522;
}
.shot-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.shot-bar .dot.r { background: #E0695E; } .shot-bar .dot.y { background: #E3B341; } .shot-bar .dot.g { background: #4CAF7D; }
.shot-bar .shot-title { margin-left: 12px; font-size: 12.5px; color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: .04em; }
.hero-chip {
  position: absolute; z-index: 5; background: #fff; border-radius: 14px;
  padding: 12px 18px; font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 9px; will-change: transform;
}
.hero-chip svg { width: 18px; height: 18px; }
.chip-a { left: -8px; top: 22%; color: var(--teal-deep); }
.chip-b { right: -14px; top: 52%; color: var(--amber-deep); }
.chip-c { left: 6%; bottom: -16px; color: var(--ink); }

/* ---------- Marquee ---------- */
.marquee-section { padding: 64px 0 10px; }
.marquee { overflow: hidden; position: relative; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.tool {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 22px; font-weight: 700; font-size: 14.5px; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.tool b { color: var(--teal); font-size: 16px; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--amber-deep); margin-bottom: 16px;
  background: var(--amber-soft); padding: 6px 16px; border-radius: 999px;
}
.section-head p { color: var(--ink-2); margin-top: 18px; font-size: 18px; }

/* ---------- Reveal system ---------- */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.9) translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--rd, 0s); }
.reveal-scale.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--rd, 0s); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--rd, 0s); }
.reveal-right.in { opacity: 1; transform: none; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 34px 30px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-deep); margin-bottom: 22px;
  transition: transform .4s var(--ease-out), background .4s, color .4s;
}
.card:hover .card-icon { transform: rotate(-8deg) scale(1.08); background: var(--teal); color: #fff; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-2); font-size: 15.5px; }
.card-tag {
  position: absolute; top: 22px; right: 22px; font-size: 11.5px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; color: var(--amber-deep);
  background: var(--amber-soft); padding: 5px 12px; border-radius: 999px;
}

/* ============================================================
   FLY GALLERY — screenshots fly in & arrange on scroll
   ============================================================ */
.fly-section { height: 460vh; position: relative; }
.fly-stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 50% -10%, rgba(14,117,104,.10), transparent 60%),
    radial-gradient(800px 500px at 90% 110%, rgba(221,159,53,.10), transparent 60%),
    var(--teal-ink);
}
.fly-stage::before {
  content: ""; position: absolute; inset: 0; opacity: .25;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1.4px);
  background-size: 30px 30px;
}
.fly-head {
  position: absolute; top: 7vh; left: 0; right: 0; text-align: center; z-index: 2;
  color: #fff; padding: 0 24px;
}
.fly-head .eyebrow { background: rgba(221,159,53,.16); color: var(--amber); }
.fly-head h2 { color: #fff; }
.fly-head p { color: rgba(255,255,255,.62); margin-top: 12px; font-size: 17px; }
.fly-card {
  position: absolute; left: 50%; top: 54%;
  width: calc(var(--w) * 1vw);
  border-radius: 14px; overflow: hidden; margin: 0;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
  will-change: transform;
  background: #11181f;
}
.fly-card img { width: 100%; }
.fly-card figcaption {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(10,20,17,.78); backdrop-filter: blur(6px);
  color: #fff; font-size: clamp(9px, .68vw, 13px); font-weight: 700; letter-spacing: .05em;
  padding: 5px 12px; border-radius: 999px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.fly-card.landed figcaption { opacity: 1; transform: none; }
.fly-hint {
  position: absolute; bottom: 4.5vh; left: 0; right: 0; text-align: center; z-index: 2;
  color: rgba(255,255,255,.55); font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
}
.fly-hint .mouse {
  display: block; width: 22px; height: 34px; margin: 0 auto 10px;
  border: 2px solid rgba(255,255,255,.45); border-radius: 12px; position: relative;
}
.fly-hint .mouse::after {
  content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 7px;
  margin-left: -1.5px; border-radius: 3px; background: var(--amber);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Work ---------- */
.work-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s;
}
.work-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.work-shot { position: relative; overflow: hidden; aspect-ratio: 1920 / 872; background: var(--bg-2); }
.work-shot img { transition: transform .8s var(--ease-out); }
.work-card:hover .work-shot img { transform: scale(1.045); }
.work-body { padding: 26px 28px 30px; }
.work-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.work-live { font-size: 12.5px; font-weight: 800; color: var(--teal); white-space: nowrap; }
.work-card p { color: var(--ink-2); font-size: 15.5px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.work-tags span {
  font-size: 12.5px; font-weight: 700; padding: 5px 13px; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal-deep);
}
.pricing-note { text-align: center; margin-top: 44px; color: var(--ink-2); font-size: 16px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 33px; left: 6%; right: 6%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, var(--teal-soft), var(--teal), var(--amber), var(--amber-soft));
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 1.6s var(--ease-out) .2s;
}
.steps.in::before { transform: scaleX(1); }
.step { position: relative; z-index: 1; text-align: left; }
.step-num {
  display: grid; place-items: center; width: 66px; height: 66px; border-radius: 20px;
  background: #fff; border: 1.5px solid var(--line);
  font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--teal);
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out);
}
.step:hover .step-num { transform: translateY(-4px) rotate(-5deg); }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15px; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.testi-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--amber); font-size: 15px; letter-spacing: 3px; }
.testi-card blockquote { font-size: 15.5px; color: var(--ink-2); flex: 1; }
.testi-card blockquote::before { content: "“"; color: var(--teal); font-size: 1.5em; font-weight: 800; line-height: 0; vertical-align: -6px; margin-right: 2px; }
.testi-card blockquote::after { content: "”"; color: var(--teal); font-size: 1.5em; font-weight: 800; line-height: 0; vertical-align: -6px; margin-left: 2px; }
.testi-card figcaption { display: flex; align-items: center; gap: 13px; font-size: 13.5px; color: var(--ink-2); }
.testi-card figcaption strong { color: var(--ink); font-size: 15px; font-family: var(--font-head); }
.testi-avatar {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 38px 32px; position: relative; display: flex; flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--teal-ink); color: #fff; border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card.featured .price-desc, .price-card.featured .price-list li { color: rgba(255,255,255,.78); }
.price-card.featured .price-list li::before { background-color: rgba(221,159,53,.2); }
.price-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 7px 18px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(221,159,53,.4);
}
.price-desc { color: var(--ink-2); font-size: 14.5px; margin: 6px 0 20px; }
.price { font-family: var(--font-head); font-size: 44px; font-weight: 800; margin-bottom: 24px; letter-spacing: -.02em; }
.price .currency { font-size: 26px; vertical-align: 8px; margin-right: 2px; }
.price .onwards { font-size: 14px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.price-card.featured .price .onwards { color: rgba(255,255,255,.55); }
.price-list { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; flex: 1; }
.price-list li { font-size: 14.8px; color: var(--ink-2); padding-left: 28px; position: relative; }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7568' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E") center/10px no-repeat;
}
.price-card.featured .price-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DD9F35' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E");
}
.price-card.featured .btn-primary { background: var(--amber); box-shadow: 0 8px 22px rgba(221,159,53,.35); }
.price-card.featured .btn-primary:hover { background: var(--amber-deep); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.about-text { color: var(--ink-2); margin: 18px 0 0; font-size: 16.5px; }
.about-text em { color: var(--teal-deep); font-style: normal; font-weight: 700; }
.about-links { display: flex; gap: 12px; margin-top: 28px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 24px; transition: transform .4s var(--ease-out), box-shadow .4s;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-num { display: block; font-family: var(--font-head); font-size: 38px; font-weight: 800; color: var(--teal-deep); letter-spacing: -.02em; }
.stat-label { font-size: 14px; color: var(--ink-2); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: box-shadow .3s;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  cursor: pointer; padding: 22px 56px 22px 26px; font-weight: 700; font-size: 16.5px;
  list-style: none; position: relative; font-family: var(--font-head);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 26px; height: 26px;
  margin-top: -13px; border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A4C43' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/13px no-repeat;
  transition: transform .35s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 24px; color: var(--ink-2); font-size: 15.5px; }

/* ---------- Contact ---------- */
.contact-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  background: var(--teal-ink); border-radius: 32px; padding: 64px;
  color: #fff; position: relative; overflow: hidden;
}
.contact-panel::before {
  content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,159,53,.18), transparent 65%);
  top: -200px; right: -200px;
}
.contact-panel h2 { color: #fff; }
.contact-panel .eyebrow { background: rgba(221,159,53,.16); color: var(--amber); }
.contact-copy > p { color: rgba(255,255,255,.72); margin-top: 16px; }
.contact-methods { display: grid; gap: 12px; margin-top: 32px; }
.contact-method {
  display: flex; align-items: center; gap: 16px; padding: 15px 18px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; transition: background .3s, transform .3s var(--ease-out);
  font-size: 14.5px; line-height: 1.4;
}
.contact-method:hover { background: rgba(255,255,255,.13); transform: translateX(6px); }
.cm-icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(221,159,53,.18); color: var(--amber); flex-shrink: 0;
}
.cm-icon svg { width: 20px; height: 20px; }
.contact-form { position: relative; display: grid; gap: 16px; align-content: start; }
.contact-form label { display: grid; gap: 7px; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.85); }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: #fff; border: 0; border-radius: 12px; padding: 13px 16px; width: 100%;
  outline: 3px solid transparent; transition: outline-color .25s; resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline-color: rgba(221,159,53,.55); }
.form-note { font-size: 12.5px; color: rgba(255,255,255,.5); text-align: center; }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 44px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; gap: 14px; justify-items: center; text-align: center; }
.footer-tag { color: var(--ink-2); font-size: 14.5px; }
.footer-links { display: flex; gap: 26px; font-weight: 700; font-size: 14.5px; color: var(--teal-deep); }
.footer-links a:hover { text-decoration: underline; }
.copyright { font-size: 13px; color: var(--ink-3); margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-panel { grid-template-columns: 1fr; padding: 44px 32px; gap: 40px; }
}
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; background: var(--bg);
    flex-direction: column; padding: 28px; gap: 22px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .4s var(--ease-out);
  }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; }
  .section { padding: 76px 0; }
  /* fly gallery falls back to stacked reveal cards */
  .fly-section { height: auto; padding: 80px 0; }
  .fly-stage { position: static; height: auto; padding: 0 20px 50px; overflow: visible; }
  .fly-head { position: static; margin-bottom: 34px; }
  .fly-card {
    position: static; width: 100% !important; transform: none !important;
    margin-bottom: 18px;
  }
  .fly-card figcaption { opacity: 1; transform: none; }
  .fly-hint { display: none; }
  .hero { padding-top: 130px; }
  .hero-chip { display: none; }
  .price-card.featured { order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01s !important; transition-duration: .01s !important; }
  .reveal, .reveal-scale, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .hero-shot { transform: none; }
}
