/* ============================================================
   NEXIS — The Operating System for Pilates & Yoga Studios
   Premium SaaS marketing site. Standalone. Orange brand.
   ============================================================ */

:root {
  /* Brand */
  --brand: #F0642B;
  --brand-2: #FF8A3D;
  --brand-3: #FFB067;
  --brand-ink: #C24A17;
  --brand-glow: rgba(240, 100, 43, 0.35);

  /* Neutrals — light */
  --bg: #FFFFFF;
  --bg-soft: #FBF9F7;
  --bg-sunken: #F4F1ED;
  --ink: #16130F;
  --ink-2: #423B33;
  --ink-3: #6B6259;
  --line: rgba(22, 19, 15, 0.09);
  --line-2: rgba(22, 19, 15, 0.06);
  --card: #FFFFFF;

  /* Charcoal (dark sections) */
  --char: #14110E;
  --char-2: #1C1813;
  --char-3: #251F19;
  --char-line: rgba(255, 255, 255, 0.10);
  --char-ink: #F5F1EC;
  --char-ink-2: rgba(245, 241, 236, 0.66);

  /* Accents for charts */
  --c-teal: #2FBFA6;
  --c-blue: #4E9BF5;
  --c-violet: #9B7BF0;
  --c-green: #46C08A;
  --c-pink: #F2749B;
  --c-amber: #F5B544;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(22,19,15,.06);
  --shadow: 0 18px 50px -20px rgba(22,19,15,.28);
  --shadow-lg: 0 40px 100px -30px rgba(22,19,15,.45);
  --shadow-brand: 0 30px 80px -24px var(--brand-glow);

  --maxw: 1200px;
  --ease: cubic-bezier(.16,1,.3,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: -0.011em;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--brand); color: #fff; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-ink);
  background: linear-gradient(180deg, rgba(240,100,43,.10), rgba(240,100,43,.04));
  border: 1px solid rgba(240,100,43,.22);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(240,100,43,.18); }

h1, h2, h3 { line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; }
.h-display { font-size: clamp(40px, 6vw, 76px); }
.h-section { font-size: clamp(32px, 4.4vw, 54px); font-weight: 800; }
.h-sub { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-3); line-height: 1.6; }
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head .lead { margin-top: 18px; }
.grad-text {
  background: linear-gradient(100deg, var(--brand-ink), var(--brand) 45%, var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 650; font-size: 15px; padding: 14px 24px; border-radius: 13px;
  border: 1px solid transparent; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  color: #fff; background: linear-gradient(180deg, var(--brand-2), var(--brand));
  box-shadow: 0 10px 26px -8px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ghost { background: var(--card); border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(22,19,15,.2); }
.btn-lg { padding: 17px 30px; font-size: 16px; border-radius: 15px; }
.on-dark .btn-ghost { background: rgba(255,255,255,.06); border-color: var(--char-line); color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .35s var(--ease);
}
.nav-inner {
  max-width: var(--maxw); margin: 14px auto 0; padding: 11px 14px 11px 22px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.72); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease);
}
.nav.scrolled .nav-inner { box-shadow: 0 12px 40px -18px rgba(22,19,15,.35); margin-top: 8px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--brand-2), var(--brand)); color: #fff;
  box-shadow: 0 6px 16px -4px var(--brand-glow); font-weight: 900;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 9px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 550; color: var(--ink-2); transition: all .2s; }
.nav-links a:hover { background: var(--bg-sunken); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; margin: 4px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.blob-1 { width: 620px; height: 620px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(255,138,61,.55), transparent 65%); }
.blob-2 { width: 520px; height: 520px; top: 120px; left: -160px; background: radial-gradient(circle, rgba(240,100,43,.30), transparent 65%); }
.blob-3 { width: 460px; height: 460px; bottom: -200px; left: 40%; background: radial-gradient(circle, rgba(155,123,240,.22), transparent 65%); }
.hero-grid { position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%); }

.hero-layout { display: grid; grid-template-columns: 1.02fr 1.1fr; gap: 40px; align-items: center; }
.hero h1 { margin: 22px 0 20px; }
.hero .lead { max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin: 32px 0 22px; flex-wrap: wrap; }
.hero-note { font-size: 13.5px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--c-green); }

.hero-stats { display: flex; gap: 34px; margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line); }
.stat .num { font-size: 30px; font-weight: 850; letter-spacing: -.03em; }
.stat .num .grad-text { display: inline; }
.stat .lbl { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* ---------- Product mockups (built from faux UI) ---------- */
.ui {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
}
.ui-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--line-2); background: var(--bg-soft); }
.ui-dot { width: 10px; height: 10px; border-radius: 50%; background: #E4DED6; }
.ui-dot.r { background: #FF6058; } .ui-dot.y { background: #FFBE2E; } .ui-dot.g { background: #2ACB42; }
.ui-title { font-size: 12px; font-weight: 650; color: var(--ink-3); margin-left: 8px; }
.ui-body { padding: 16px; }

.hero-stage { position: relative; height: 520px; }
.float { position: absolute; animation: bob 7s var(--ease) infinite; will-change: transform; }
.float.f2 { animation-delay: -2.2s; } .float.f3 { animation-delay: -4s; } .float.f4 { animation-delay: -1s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.stage-main { width: 108%; top: 30px; left: -4%; z-index: 2; }
.stage-tr { width: 250px; top: -14px; right: -18px; z-index: 4; }
.stage-bl { width: 235px; bottom: -18px; left: -26px; z-index: 5; }
.stage-phone { width: 150px; bottom: 6px; right: -8px; z-index: 6; }
.badge-float {
  position: absolute; z-index: 7; background: var(--card); border: 1px solid var(--line);
  border-radius: 13px; padding: 11px 14px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px;
}
.badge-float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.badge-float .t { font-size: 12px; color: var(--ink-3); font-weight: 550; }
.badge-float .v { font-size: 15px; font-weight: 800; }

/* faux dashboard bits */
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.kpi { background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px; }
.kpi .l { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); font-weight: 700; }
.kpi .v { font-size: 20px; font-weight: 850; margin-top: 3px; }
.kpi .d { font-size: 10.5px; font-weight: 700; color: var(--c-green); margin-top: 2px; }
.mini-chart { margin-top: 14px; height: 120px; }

.bars { display: flex; align-items: flex-end; gap: 8px; height: 100%; }
.bars .bar { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--brand-3), var(--brand)); opacity: .85; }

/* pill list */
.list-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line-2); }
.list-row:last-child { border: 0; }
.av { width: 28px; height: 28px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 800; }
.list-row .nm { font-size: 12.5px; font-weight: 650; }
.list-row .sub { font-size: 11px; color: var(--ink-3); }
.tag { margin-left: auto; font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.tag.g { background: rgba(70,192,138,.14); color: #2c8f61; }
.tag.o { background: rgba(240,100,43,.13); color: var(--brand-ink); }
.tag.b { background: rgba(78,155,245,.14); color: #2f6fc0; }

/* phone */
.phone { border-radius: 30px; border: 8px solid #1b1712; background: #1b1712; box-shadow: var(--shadow-lg); overflow: hidden; }
.phone-screen { background: var(--bg); border-radius: 22px; overflow: hidden; }
.phone-hd { background: linear-gradient(140deg, var(--brand-2), var(--brand)); color: #fff; padding: 16px 14px 14px; }
.phone-hd .t { font-size: 13px; font-weight: 800; }
.phone-hd .s { font-size: 10.5px; opacity: .85; }
.class-card { border: 1px solid var(--line-2); border-radius: 12px; padding: 10px; margin: 9px 10px; box-shadow: var(--shadow-sm); }
.class-card .ct { font-size: 12px; font-weight: 750; }
.class-card .cm { font-size: 10.5px; color: var(--ink-3); }
.class-card .book { margin-top: 8px; background: var(--brand); color: #fff; border-radius: 8px; text-align: center; font-size: 11px; font-weight: 700; padding: 6px; }

/* ---------- Logo strip ---------- */
.logos { padding: 44px 0 10px; }
.logos p { text-align: center; font-size: 13px; font-weight: 650; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 26px; }
.logo-track { display: flex; gap: 54px; justify-content: center; align-items: center; flex-wrap: wrap; opacity: .62; }
.logo-item { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--ink-2); letter-spacing: -.02em; }
.logo-item svg { width: 26px; height: 26px; color: var(--ink-3); }

/* ---------- Cards / grids ---------- */
.cards { display: grid; gap: 20px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(240,100,43,.28); }
.card .ic-tile {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(150deg, rgba(255,138,61,.16), rgba(240,100,43,.08)); color: var(--brand);
  border: 1px solid rgba(240,100,43,.16);
}
.card .ic-tile svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -.02em; }
.card p { font-size: 14.5px; color: var(--ink-3); }

/* why-choose check cards */
.why-card { display: flex; gap: 14px; align-items: flex-start; }
.why-card .ck { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, var(--brand-2), var(--brand)); color: #fff; box-shadow: 0 6px 14px -5px var(--brand-glow); }
.why-card .ck svg { width: 16px; height: 16px; }
.why-card h3 { font-size: 16.5px; margin-bottom: 4px; }
.why-card p { font-size: 13.5px; }

/* ---------- Showcase (alternating) ---------- */
.showcase-row { display: grid; grid-template-columns: 1fr 1.08fr; gap: 60px; align-items: center; margin-bottom: 120px; }
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.rev .showcase-text { order: 2; }
.showcase-row.rev .showcase-media { order: 1; }
.showcase-text .eyebrow { margin-bottom: 18px; }
.showcase-text h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 16px; }
.showcase-text .lead { font-size: 17px; margin-bottom: 22px; }
.feat-list { display: grid; gap: 13px; }
.feat-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-2); list-style: none; }
.feat-list .fk { width: 22px; height: 22px; border-radius: 7px; flex: none; display: grid; place-items: center; background: rgba(240,100,43,.12); color: var(--brand); margin-top: 1px; }
.feat-list .fk svg { width: 13px; height: 13px; }
.showcase-media { position: relative; }
.showcase-media .glow { position: absolute; inset: -30px; background: radial-gradient(circle at 60% 40%, var(--brand-glow), transparent 70%); filter: blur(30px); z-index: -1; opacity: .7; }

.cal-ev { font-size: 9.5px; font-weight: 700; padding: 6px 5px; border-radius: 7px; text-align: center; line-height: 1.1; }

/* ---------- Feature grid (large) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feat-cell { display: flex; align-items: center; gap: 12px; padding: 15px 16px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; transition: all .25s var(--ease); }
.feat-cell:hover { border-color: rgba(240,100,43,.35); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feat-cell .fi { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, rgba(255,138,61,.16), rgba(240,100,43,.07)); color: var(--brand); }
.feat-cell .fi svg { width: 17px; height: 17px; }
.feat-cell span { font-size: 14px; font-weight: 600; }

/* ---------- Dark section ---------- */
.on-dark { background: var(--char); color: var(--char-ink); }
.on-dark .lead { color: var(--char-ink-2); }
.on-dark .eyebrow { color: var(--brand-3); background: rgba(240,100,43,.12); border-color: rgba(240,100,43,.25); }
.on-dark .card { background: var(--char-2); border-color: var(--char-line); box-shadow: none; }
.on-dark .card:hover { border-color: rgba(240,100,43,.4); }
.on-dark .card p { color: var(--char-ink-2); }
.on-dark .ui { box-shadow: 0 40px 100px -30px rgba(0,0,0,.6); }

/* automation timeline */
.auto-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.auto-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--char-2); border: 1px solid var(--char-line); border-radius: 14px; }
.auto-item .ai { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, var(--brand-2), var(--brand)); color: #fff; }
.auto-item .ai svg { width: 19px; height: 19px; }
.auto-item .at { font-weight: 700; font-size: 15px; }
.auto-item .as { font-size: 12.5px; color: var(--char-ink-2); }

/* ---------- Dashboard analytics band ---------- */
.dash-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
.metric-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.metric-card .ml { font-size: 12.5px; color: var(--ink-3); font-weight: 650; }
.metric-card .mv { font-size: 28px; font-weight: 850; letter-spacing: -.03em; margin: 6px 0 10px; }
.spark { height: 46px; }

/* ---------- Booking / phones band ---------- */
.phones-row { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.phones-row .phone { width: 230px; flex: none; }

/* ---------- Integrations ---------- */
.int-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.int-cell { aspect-ratio: 1.35; display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--line); border-radius: 16px; transition: all .25s var(--ease); }
.int-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(240,100,43,.3); }
.int-cell .il { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-weight: 900; color: #fff; font-size: 17px; }
.int-cell span { font-size: 12.5px; font-weight: 650; color: var(--ink-2); }

/* ---------- Testimonials ---------- */
.tcard { display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; color: var(--brand); margin-bottom: 14px; }
.stars svg { width: 17px; height: 17px; }
.tcard .quote { font-size: 16px; color: var(--ink-2); line-height: 1.62; font-weight: 500; flex: 1; }
.tperson { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.tperson .pi { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 17px; flex: none; }
.tperson .pn { font-weight: 750; font-size: 14.5px; }
.tperson .pr { font-size: 12.5px; color: var(--ink-3); }

/* ---------- Owner cards ---------- */
.owner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.owner-card { text-align: center; padding: 26px 18px; }
.owner-card .oi { width: 52px; height: 52px; border-radius: 15px; margin: 0 auto 16px; display: grid; place-items: center; background: linear-gradient(150deg, var(--brand-2), var(--brand)); color: #fff; box-shadow: var(--shadow-brand); }
.owner-card .oi svg { width: 24px; height: 24px; }
.owner-card h3 { font-size: 16px; margin-bottom: 6px; }
.owner-card p { font-size: 13px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.pop { border-color: var(--brand); box-shadow: 0 30px 70px -28px var(--brand-glow); transform: scale(1.03); }
.pop-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg,var(--brand-2),var(--brand)); color: #fff; font-size: 11.5px; font-weight: 800; padding: 5px 15px; border-radius: 999px; letter-spacing: .04em; box-shadow: var(--shadow-brand); }
.price-card .pname { font-size: 15px; font-weight: 800; color: var(--brand-ink); }
.price-card .pdesc { font-size: 13.5px; color: var(--ink-3); margin: 4px 0 18px; }
.price-card .pamt { font-size: 46px; font-weight: 850; letter-spacing: -.03em; }
.price-card .pamt small { font-size: 15px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.price-card ul { list-style: none; margin: 22px 0; display: grid; gap: 11px; flex: 1; }
.price-card li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); }
.price-card li svg { width: 18px; height: 18px; color: var(--c-green); flex: none; }
.price-card li.off { color: var(--ink-3); opacity: .5; }
.price-card li.off svg { color: var(--ink-3); }

/* comparison table */
.cmp { margin-top: 60px; overflow-x: auto; }
.cmp table { width: 100%; border-collapse: collapse; min-width: 620px; }
.cmp th, .cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-2); font-size: 14px; }
.cmp th { font-weight: 750; font-size: 13px; }
.cmp thead th { color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; font-size: 11.5px; }
.cmp td.ctr, .cmp th.ctr { text-align: center; }
.cmp .yes { color: var(--c-green); } .cmp .no { color: #cfc7bd; }
.cmp .colpop { background: rgba(240,100,43,.05); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 17px; font-weight: 700; color: var(--ink); }
.faq-q .pm { width: 26px; height: 26px; border-radius: 8px; background: var(--bg-sunken); display: grid; place-items: center; flex: none; transition: .3s; font-size: 18px; }
.faq-item.open .pm { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 22px; color: var(--ink-3); font-size: 15px; max-width: 92%; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: 34px; overflow: hidden; padding: 80px 40px; text-align: center;
  background: linear-gradient(150deg, #1a1510, #241c14); border: 1px solid var(--char-line); }
.cta-band .blob { opacity: .5; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: var(--char-ink-2); max-width: 560px; margin: 18px auto 0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--char); color: var(--char-ink-2); padding: 70px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 34px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.foot-about { font-size: 14px; max-width: 280px; line-height: 1.6; }
.foot-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: var(--brand-3); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--char-line); font-size: 13px; flex-wrap: wrap; gap: 16px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: .2s; }
.socials a:hover { background: var(--brand); color: #fff; }
.socials svg { width: 17px; height: 17px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
  .hero-stage { height: 440px; margin-top: 10px; }
  .showcase-row, .showcase-row.rev .showcase-text, .showcase-row.rev .showcase-media { grid-template-columns: 1fr; order: initial; }
  .showcase-media { order: 2 !important; }
  .g3, .g4, .owner-grid, .int-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.pop { transform: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .dash-metrics, .auto-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 72px; left: 14px; right: 14px; flex-direction: column; align-items: stretch; background: rgba(255,255,255,.96); backdrop-filter: blur(18px); border: 1px solid var(--line); border-radius: 16px; padding: 12px; box-shadow: var(--shadow); }
}
@media (max-width: 620px) {
  .section { padding: 74px 0; }
  .hero { padding: 130px 0 60px; }
  .g3, .g4, .g2, .owner-grid, .int-grid, .feat-grid, .auto-grid, .dash-metrics, .foot-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 22px; }
  .nav-cta .btn-ghost { display: none; }
  .cta-band { padding: 56px 22px; }
  .wrap { padding: 0 18px; }
}
