/* =========================================
   REBRAN.AI — style.css  v2
   Fonts: Playfair Display (headings) + Instrument Sans (body)
   Palette: Warm off-white #F4F1EC, Near-black #111110
   Accent: Purple #7B2FBE, Danger #C23B3B
   ========================================= */

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

:root {
  --bg:           #F4F1EC;
  --bg-2:         #EDEAE3;
  --ink:          #111110;
  --ink-2:        #38362F;
  --ink-3:        #6A6760;
  --accent:       #7B2FBE;
  --accent-light: rgba(123,47,190,0.09);
  --accent-mid:   rgba(123,47,190,0.22);
  --danger:       #C23B3B;
  --green:        #2D8A5A;
  --dark:         #0E0E0C;
  --dark-2:       #181816;
  --dark-3:       #222220;
  --white:        #FFFFFF;
  --border:       rgba(17,17,16,0.10);
  --border-dark:  rgba(255,255,255,0.07);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(244,241,236,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 30px; width: auto; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123,47,190,0.30);
}

.btn-primary.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-primary.light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(123,47,190,0.35);
}

.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 2px solid rgba(17,17,16,0.20);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(17,17,16,0.04);
  transform: translateY(-2px);
}

.btn-ghost.full { width: 100%; justify-content: center; }

/* =========================================
   SHARED
   ========================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-label.light { color: rgba(123,47,190,0.80); }

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-heading em {
  font-style: italic;
  color: var(--accent);
}

.section-heading.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 620px;
  line-height: 1.72;
  margin-bottom: 44px;
  font-weight: 400;
}

.section-sub.light { color: rgba(255,255,255,0.58); }

.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(17,17,16,0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,17,16,0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
  animation: fadeUp 0.55s ease both;
}

.pulse { animation: pulseDot 2s infinite; }
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.8vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 26px;
  animation: fadeUp 0.55s ease 0.10s both;
}

.hero-headline .highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 20px;
  color: var(--ink-3);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.72;
  animation: fadeUp 0.55s ease 0.18s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 68px;
  flex-wrap: wrap;
  animation: fadeUp 0.55s ease 0.26s both;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.55s ease 0.34s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}

.divider-v {
  width: 1px;
  height: 44px;
  background: var(--border);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   PROBLEM
   ========================================= */
.problem {
  padding: 108px 0;
  background: var(--bg);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform 0.22s, box-shadow 0.22s;
}

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

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 17px;
  margin-bottom: 18px;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.68;
}

/* =========================================
   COST
   ========================================= */
.cost {
  padding: 108px 0;
  background: var(--dark);
}

.cost-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.calc-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-2xl);
  padding: 38px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-dark);
}

.calc-row:first-child { padding-top: 0; }
.calc-row:last-child  { border-bottom: none; padding-bottom: 0; }

.calc-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.calc-label i { color: var(--accent); font-size: 12px; }

.calc-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.calc-val.warning { color: rgba(255,255,255,0.85); }
.calc-val.danger  { color: #9B4FE8; font-size: 30px; }

.calc-row.big .calc-label {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  font-weight: 600;
}

.calc-divider {
  border: none;
  border-top: 1px solid var(--border-dark);
  margin: 6px 0;
}

.calc-note {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  margin-top: 22px;
  text-align: center;
  font-style: italic;
}

/* =========================================
   PROOF
   ========================================= */
.proof {
  padding: 108px 0;
  background: var(--dark);
}

.proof .section-label { color: rgba(123,47,190,0.80); }
.proof .section-heading { color: var(--white); }
.proof .section-sub { color: rgba(255,255,255,0.48); }

.proof-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-2xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 0;
  align-items: center;
  margin-top: 8px;
}

.proof-firm {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 48px;
}

.proof-firm-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}

.proof-val {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
}

.proof-divider {
  width: 1px;
  height: 140px;
  background: var(--border-dark);
  flex-shrink: 0;
}

.proof-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-left: 48px;
}

.proof-result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proof-result-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.proof-result-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 3px;
}

.proof-result-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  line-height: 1.4;
  font-weight: 500;
}

/* =========================================
   PROOF
   ========================================= */
.proof {
  padding: 108px 0;
  background: var(--bg-2);
}

.proof .section-label { color: var(--accent); }
.proof .section-heading { color: var(--ink); }
.proof .section-sub { color: var(--ink-3); }

.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 0;
  align-items: center;
  margin-top: 8px;
  box-shadow: var(--shadow-md);
}

.proof-firm {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 48px;
}

.proof-firm-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.proof-val {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.proof-divider {
  width: 1px;
  height: 140px;
  background: var(--border);
  flex-shrink: 0;
}

.proof-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-left: 48px;
}

.proof-result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proof-result-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.proof-result-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 3px;
}

.proof-result-label {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
  font-weight: 500;
}

/* Specificity strip below proof card */
.proof-specificity {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.proof-spec-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.proof-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-spec-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.proof-spec-tags span i {
  color: var(--accent);
  font-size: 10px;
}

.proof-footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
  opacity: 0.7;
}

.proof-footnote i {
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Price frame line */
.price-frame {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  font-style: italic;
  margin-bottom: 14px;
  margin-top: -4px;
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}

@media (max-width: 760px) {
  .proof-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proof-divider { width: 100%; height: 1px; }
  .proof-firm { padding-right: 0; }
  .proof-results { padding-left: 0; }
  .proof-specificity { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   SYSTEM
   ========================================= */
.system {
  padding: 108px 0;
  background: var(--bg-2);
}

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

.sys-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}

.sys-card::before {
  content: attr(data-num);
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 68px;
  color: rgba(17,17,16,0.05);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

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

.sys-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 19px;
  margin-bottom: 20px;
}

.sys-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.28;
}

.sys-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.70;
  margin-bottom: 22px;
}

.sys-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sys-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}

.sys-features li i {
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

/* =========================================
   FUTURE STATE
   ========================================= */
.futurestate {
  padding: 108px 0;
  background: var(--bg);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.future-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.future-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.future-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
}

.future-item p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.60;
  font-weight: 500;
  padding-top: 2px;
}

/* =========================================
   FOR YOU
   ========================================= */
.foryou {
  padding: 108px 0;
  background: var(--bg-2);
}

.foryou-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.foryou-yes, .foryou-no {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px;
}

.foryou-no { background: var(--bg); }

.foryou-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.foryou-card-label.yes { color: var(--green); }
.foryou-card-label.no  { color: var(--danger); }

.foryou-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foryou-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 400;
}

.foryou-list.yes li i { color: var(--green);  font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.foryou-list.no  li i { color: var(--danger); font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: 108px 0;
  background: var(--dark);
}

.process .section-label { color: rgba(123,47,190,0.80); }
.process .section-heading { color: var(--white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}

.proc-step { flex: 1; }

.proc-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.proc-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.proc-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.70;
}

.proc-connector {
  color: var(--accent);
  font-size: 18px;
  padding: 0 40px;
  padding-top: 18px;
  opacity: 0.45;
  flex-shrink: 0;
}

.process .section-cta .btn-primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.process .section-cta .btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* =========================================
   PRICING
   ========================================= */
.pricing {
  padding: 108px 0;
  background: var(--bg-2);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px;
  transition: transform 0.22s, box-shadow 0.22s;
}

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

.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}

.price-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}

.price-card.featured .price-header h3 { color: var(--white); }

.price-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  line-height: 1;
}

.price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
  font-family: var(--font-body);
}

.price-card.featured .price-amount       { color: var(--white); }
.price-card.featured .price-amount span  { color: rgba(255,255,255,0.42); }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 400;
}

.price-card.featured .price-features li { color: rgba(255,255,255,0.70); }
.price-features li i { color: var(--accent); font-size: 12px; flex-shrink: 0; }

/* =========================================
   FAQ
   ========================================= */
.faq { padding: 108px 0; background: var(--bg); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: none;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-q:hover, .faq-q.open { background: var(--bg); }

.faq-icon {
  font-size: 14px;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  background: var(--bg);
  transition: max-height 0.32s ease;
}

.faq-a.open { max-height: 200px; }

.faq-a p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.75;
  padding: 4px 28px 24px;
}

/* =========================================
   BOOK
   ========================================= */
.book { padding: 108px 0; background: var(--dark); }

.book-header { text-align: center; margin-bottom: 56px; }

.book-includes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: -18px;
  margin-bottom: 28px;
}

.book-includes span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.02em;
}

.book-includes span i { color: var(--accent); font-size: 12px; }

.book-slots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  font-style: italic;
}

.book-slots i { color: var(--accent); font-size: 12px; }

.cal-wrapper {
  background: var(--white);
  border-radius: var(--r-2xl);
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--border-dark);
}

#my-cal-inline-discovery-call-with-ceo { min-height: 640px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark-2);
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  margin-bottom: 4px;
}

.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-copy    { font-size: 12px; color: rgba(255,255,255,0.18); }

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 920px) {
  .cost-inner        { grid-template-columns: 1fr; gap: 48px; }
  .system-grid       { grid-template-columns: 1fr; }
  .future-grid       { grid-template-columns: 1fr 1fr; }
  .foryou-inner      { grid-template-columns: 1fr; }
  .pricing-cards     { grid-template-columns: 1fr; max-width: 460px; }
  .process-steps     { flex-direction: column; }
  .proc-connector    { padding: 10px 0; transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .future-grid       { grid-template-columns: 1fr; }
  .hero-actions      { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .divider-v         { display: none; }
  .hero-stat-row     { gap: 20px; }
  section            { padding-top: 80px !important; padding-bottom: 80px !important; }
  .auth-tags         { gap: 8px; }
  .nav-cta           { font-size: 12px; padding: 9px 14px; gap: 6px; }
  .nav-cta i         { display: none; }
}