/* ══════════════════════════════════════════════════════
   ROOT & RESET
══════════════════════════════════════════════════════ */
:root {
  --black:   #070708;
  --black-2: #0f1011;
  --black-3: #181a1b;
  --black-4: #222426;
  --gold:    #d4af37;
  --gold-l:  #e8c94a;
  --gold-d:  #a88c26;
  --white:   #f5f5f5;
  --gray:    #8a8e96;
  --gray-l:  #c0c4cc;
  --border:  rgba(212,175,55,.12);
  --glass:   rgba(255,255,255,.03);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --nav-h:   72px;
  --trans:   .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
mark { background: none; color: var(--gold); }
strong { font-weight: 700; }
em { font-style: normal; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ══════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════ */
.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}
.container--narrow {
  width: min(760px, 100% - 40px);
}
.section {
  padding-block: clamp(72px, 10vw, 120px);
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: .08s !important; }
.d2 { transition-delay: .16s !important; }
.d3 { transition-delay: .24s !important; }
.d4 { transition-delay: .32s !important; }
.d5 { transition-delay: .40s !important; }

/* ══════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════════════════ */
.gold { color: var(--gold); }

.sh2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
}

.slead {
  font-size: 18px;
  color: var(--gray-l);
  max-width: 560px;
  margin-inline: auto;
}

.tag {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  background: rgba(212,175,55,.06);
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%);
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--r-md);
  transition: var(--trans);
  white-space: nowrap;
}
.btn-main:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-main svg { flex-shrink: 0; }
.btn-main--lg { padding: 18px 36px; font-size: 18px; }

.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--gray-l);
  font-weight: 500;
  font-size: 16px;
  transition: var(--trans);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline:hover { background: rgba(212,175,55,.08); transform: translateY(-1px); }
.btn-sec:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--trans);
}
.nav.scrolled {
  background: rgba(7,7,8,.9);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
}
.brand em { color: var(--gold); }
.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.35));
  transition: filter .3s;
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 0 14px rgba(212,175,55,0.65));
}
.brand-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--black);
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-inline-start: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-l);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 10px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  transition: var(--trans);
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .6;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,.18) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 70%);
  bottom: 0; right: 5%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold);
  background: rgba(212,175,55,.06);
  margin-bottom: 24px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
.live-dot--sm { width: 6px; height: 6px; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.hero-h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-l);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.trust-item span {
  font-size: 12px;
  color: var(--gray);
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Chat preview (hero right) */
.hero-chat {
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-preview {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.chat-preview-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--black-4);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.chat-preview-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--black);
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.chat-preview-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.4));
}
.chat-preview-head strong { display: block; font-size: 14px; }
.online-txt {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #22c55e;
}

/* Scenario pills inside the chat header */
.chat-scenario-pills {
  display: flex;
  gap: 4px;
  margin-right: auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 4px;
}
.sc-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color .2s, background .2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.sc-pill svg { flex-shrink: 0; opacity: .7; transition: opacity .2s; }
.sc-pill--active {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.25);
}
.sc-pill--active svg { opacity: 1; }
.sc-pill:not(.sc-pill--active):hover {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
}
.sc-pill:not(.sc-pill--active):hover svg { opacity: .9; }

/* Scenario bodies — only active shown */
.chat-preview-body {
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
}
.chat-preview-body.sc-body--active {
  display: flex;
}

.msg {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
  opacity: 0;
  animation: msgIn .4s ease forwards;
}
.msg--bot {
  background: var(--black-4);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-radius: 4px 16px 16px 16px;
}
.msg--user {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--black);
  font-weight: 600;
  align-self: flex-end;
  border-radius: 16px 4px 16px 16px;
}
/* Scenario messages — reset and play when active */
.sc-body .sc-msg {
  opacity: 0;
  animation: none;
}
.sc-body--active .sc-msg {
  animation: msgIn .4s ease forwards;
}
@keyframes msgIn {
  from { opacity:0; transform: translateY(8px); }
  to   { opacity:1; transform: none; }
}
.chat-chips {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.chat-chip {
  border: 1px solid var(--gold);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,175,55,.07);
  cursor: pointer;
  transition: var(--trans);
  font-family: inherit;
}
.chat-chip:hover { background: rgba(212,175,55,.15); }
.typing-indicator,
.chat-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 12px 16px;
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 4px 16px 16px 16px;
  width: fit-content;
  animation: msgIn .4s ease forwards;
}
.typing-indicator span,
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--gray);
  border-radius: 50%;
  animation: bounce 1s infinite;
}
.typing-indicator span:nth-child(2),
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.typing-indicator span:nth-child(3),
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* ══════════════════════════════════════════════════════
   PAIN CARDS
══════════════════════════════════════════════════════ */
.pains-section { background: var(--black-2); }
.pains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.pain-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: var(--trans);
}
.pain-card:hover {
  border-color: rgba(212,175,55,.35);
  background: rgba(212,175,55,.04);
  transform: translateY(-3px);
}
.pain-card--cta {
  border-color: rgba(212,175,55,.2);
  background: rgba(212,175,55,.04);
}
.pain-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--black-4);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gray-l);
  transition: var(--trans);
}
.pain-icon--gold { color: var(--gold); border-color: rgba(212,175,55,.25); background: rgba(212,175,55,.07); }
.pain-card:hover .pain-icon { color: var(--gold); border-color: rgba(212,175,55,.3); }
.pain-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}
.pain-audience {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 99px;
  padding: 3px 10px;
  width: fit-content;
}
.pain-sol {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.how-step {
  flex: 1 1 240px;
  max-width: 320px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.how-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(212,175,55,.15);
  line-height: 1;
  margin-bottom: 16px;
  font-feature-settings: "tnum";
}
.how-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-body p {
  font-size: 15px;
  color: var(--gray-l);
  line-height: 1.65;
  margin-bottom: 16px;
}
.how-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}
.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-d);
  margin-top: 60px;
  flex-shrink: 0;
}
.how-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.how-cta p {
  font-size: 14px;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about-section { background: var(--black-2); }
.about-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.about-card {
  background: linear-gradient(160deg, #16151f 0%, #0f0e18 100%);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 0 60px rgba(212,175,55,.04), inset 0 1px 0 rgba(212,175,55,.06);
}
.about-brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212,175,55,.3));
}
.about-brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.6);
  flex-shrink: 0;
}
.about-brand-status {
  font-size: 13px;
  color: #22c55e;
  font-weight: 500;
}
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-skill-tag {
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .3px;
  font-family: 'Courier New', monospace;
}
.about-stat-row {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 20px;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stat strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-stat span { font-size: 12px; color: var(--gray); }
.about-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--gray-l);
  border-right: 3px solid var(--gold);
  padding-right: 16px;
}
.about-p {
  font-size: 17px;
  color: var(--gray-l);
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.pill {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 13px;
  color: var(--gray-l);
  background: var(--black-3);
}

/* ══════════════════════════════════════════════════════
   NUMBERS BAR
══════════════════════════════════════════════════════ */
.nums-bar {
  background: var(--black-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 40px;
}
.nums-inner {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.num-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.num-cell strong {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.num-cell span {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
}

/* ══════════════════════════════════════════════════════
   REVIEWS CAROUSEL
══════════════════════════════════════════════════════ */
.reviews-section { background: var(--black-2); }
.carousel-wrap { position: relative; }
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 12px);
  gap: 24px;
  overflow: hidden;
}
.rev-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--trans);
}
.rev-card.active { border-color: rgba(212,175,55,.3); }
.rev-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rev-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-l);
  flex: 1;
}
.rev-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rev-initial {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--black);
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.rev-card footer strong { display: block; font-size: 15px; }
.rev-card footer span { font-size: 13px; color: var(--gray); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.car-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black-3);
  color: var(--gray-l);
  display: grid;
  place-items: center;
  transition: var(--trans);
}
.car-btn:hover { border-color: var(--gold); color: var(--gold); }
.car-dots {
  display: flex;
  gap: 8px;
}
.car-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--black-4);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--trans);
}
.car-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item[open] { border-color: rgba(212,175,55,.25); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: color var(--trans);
  user-select: none;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item[open] summary { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-icon div {
  width: 10px; height: 2px;
  background: currentColor;
  position: relative;
  transition: var(--trans);
}
.faq-icon div::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 10px; height: 2px;
  background: currentColor;
  transition: transform var(--trans);
}
.faq-item[open] .faq-icon div::before { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body {
  padding: 0 24px 20px;
}
.faq-body p {
  font-size: 15px;
  color: var(--gray-l);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   BIG CTA
══════════════════════════════════════════════════════ */
.big-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 140px);
  text-align: center;
}
.big-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.big-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.big-cta-inner h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}
.big-cta-inner p {
  font-size: 18px;
  color: var(--gray-l);
  max-width: 520px;
  margin-bottom: 8px;
}
.big-cta-note {
  font-size: 13px;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════════════ */
.cform {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.cform-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cform-full { margin-bottom: 20px; }
.cform-field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-l);
}
.cform-field span em { color: var(--gold); margin-inline-start: 2px; }
.cform-field input,
.cform-field textarea,
.cform-field select {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--trans);
  width: 100%;
  resize: vertical;
}
.cform-field input:focus,
.cform-field textarea:focus,
.cform-field select:focus {
  outline: none;
  border-color: var(--gold);
}
/* ── Custom Dropdown (cdd) ───────────────────────────── */
.cdd {
  position: relative;
}

/* Trigger button */
.cdd-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  text-align: right;
  transition: border-color var(--trans);
}
.cdd-btn:hover,
.cdd--open .cdd-btn {
  border-color: var(--gold);
}
.cdd-label { flex: 1; }
.cdd-label--placeholder { color: #555; }
.cdd-arrow {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--trans);
}
.cdd--open .cdd-arrow { transform: rotate(180deg); }

/* Dropdown list */
.cdd-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0; left: 0;
  z-index: 500;
  background: var(--black-3);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--r-md);
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,.7);
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,.25) transparent;
}
.cdd-list::-webkit-scrollbar { width: 4px; }
.cdd-list::-webkit-scrollbar-thumb { background: rgba(212,175,55,.25); border-radius: 4px; }

.cdd--open .cdd-list { display: block; }

/* Option */
.cdd-opt {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  color: var(--gray-l);
}
.cdd-opt:hover {
  background: rgba(212,175,55,.1);
  color: var(--gold);
}
.cdd-opt--selected {
  background: rgba(212,175,55,.12);
  color: var(--gold);
  font-weight: 600;
}
.cdd-opt--other {
  color: var(--gold);
  font-weight: 600;
}

/* Group title */
.cdd-group-title {
  padding: 10px 14px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(212,175,55,.5);
  pointer-events: none;
}

/* Divider */
.cdd-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* Tall dropdown (business type) list */
.cdd--tall .cdd-list {
  max-height: 380px;
}
.cform-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cform-legal {
  font-size: 13px;
  color: var(--gray);
}
.cform-legal a { color: var(--gold); text-decoration: underline; }
.cform-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}
.cform-status.ok  { color: #22c55e; }
.cform-status.err { color: #ef4444; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  padding-block: 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}
.footer-brand p { font-size: 13px; color: var(--gray); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   HAMBURGER NAV
══════════════════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  right: 0; left: 0;
  background: rgba(10,10,12,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 32px;
  gap: 4px;
  z-index: 899;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-drawer-link {
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-l);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.nav-drawer-link:hover { color: var(--gold); }
.nav-drawer-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ══════════════════════════════════════════════════════
   TABLET  ≤ 900px
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: flex; margin-inline-start: auto; }
  .nav-drawer { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 56px;
  }
  .hero-chat { display: none; }
  .hero-actions { justify-content: center; }
  .hero-trust  { justify-content: center; }
  .hero-p      { margin-inline: auto; }

  .about-layout { grid-template-columns: 1fr; gap: 24px; }
  .about-left   { display: block; }
  .about-photo-wrap { margin-bottom: 0; }
  .about-photo-shield { max-height: 260px; aspect-ratio: 16/9; }
  .about-photo { object-position: center 20%; }
  .about-card  { padding: 20px; }
  .about-brand-badge { display: none; }
  .how-arrow    { display: none; }
  .how-steps    { flex-direction: column; align-items: center; }
  .how-step     { max-width: 100%; width: 100%; }

  .schedule-widget { padding: 24px 20px; }
  .sched-selected-info { flex-direction: column; gap: 8px; }
}

/* ══════════════════════════════════════════════════════
   MOBILE  ≤ 640px
══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Global */
  .section { padding-block: clamp(52px, 12vw, 80px); }
  .section-head { margin-bottom: 40px; }
  .sh2 { font-size: clamp(24px, 7vw, 36px); letter-spacing: -.3px; }
  .section-sub { font-size: 14px; }

  /* Hero */
  .hero-h1 { font-size: clamp(36px, 9vw, 52px); letter-spacing: -1px; }
  .hero-p  { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-main,
  .hero-actions .btn-sec { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .trust-sep  { display: none; }
  .live-badge { font-size: 12px; }

  /* How */
  .how-step { padding: 24px 20px; }
  .how-num  { font-size: 36px; }

  /* Numbers */
  .nums-inner { gap: 20px; flex-wrap: wrap; justify-content: center; }

  /* About */
  .about-pills { gap: 8px; }
  .about-skill-tag { font-size: 12px; padding: 6px 12px; }

  /* Pain cards */
  .pains-grid { grid-template-columns: 1fr; }
  .pain-card  { padding: 20px 16px; }

  /* Reviews carousel */
  .carousel-track { grid-auto-columns: 90%; }

  /* FAQ */
  .faq-item summary { font-size: 15px; padding: 16px 14px; }
  .faq-body p { font-size: 14px; padding: 0 14px 16px; }

  /* Contact form */
  .cform-row  { grid-template-columns: 1fr; }
  .cform      { padding: 24px 20px; }

  /* Schedule widget */
  .schedule-widget { padding: 20px 16px; border-radius: 14px; }
  .sched-day-btn   { min-width: 70px; padding: 10px 12px; font-size: 12px; }
  .sched-slot-btn  { padding: 10px 16px; font-size: 14px; }
  .sched-field input,
  .sched-field textarea { font-size: 16px; } /* prevent iOS zoom */
  .sched-submit    { font-size: 15px; padding: 15px; }

  /* Floating chat button */
  .chat-fab { bottom: 16px; left: 16px; }
  .chat-fab-label { display: none; }

  /* Buttons */
  .btn-main--lg { padding: 15px 24px; font-size: 16px; }
}

/* ══════════════════════════════════════════════════════
   SCHEDULE SECTION
══════════════════════════════════════════════════════ */
.schedule-section { background: var(--black-2); }
.schedule-widget {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
}
.schedule-step { animation: fadeUp .3s ease; }
.sched-label {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.sched-days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sched-day-btn {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  line-height: 1.5;
  min-width: 80px;
  transition: border-color .2s, background .2s;
}
.sched-day-btn span { color: var(--gray); font-size: 12px; display: block; }
.sched-day-btn:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }
.sched-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sched-slot-btn {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  padding: 10px 20px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.sched-slot-btn:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }
.sched-back {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  font-family: inherit;
}
.sched-back:hover { color: var(--white); }
.sched-selected-info {
  display: flex;
  gap: 20px;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--white);
}
.sched-field { margin-bottom: 16px; }
.sched-field label { display: block; font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.sched-field input,
.sched-field textarea {
  width: 100%;
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.sched-field input:focus,
.sched-field textarea:focus { border-color: var(--gold); }
.sched-field textarea { resize: vertical; }
.sched-submit {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, #d4af37, #f0c850);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: transform .2s, filter .2s, opacity .2s;
}
.sched-submit:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.08); }
.sched-submit:disabled { opacity: .5; cursor: not-allowed; }
.sched-msg { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 12px; }
.sched-msg--err { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #f87171; }
.sched-msg--ok  { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #4ade80; }
.sched-success { text-align: center; padding: 24px 0 8px; }
.sched-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 18px rgba(212,175,55,.35));
  animation: successPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes successPop {
  from { transform: scale(.4); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.sched-success h3 { color: var(--white); font-size: 24px; font-weight: 700; margin: 0 0 10px; }
.sched-success p  { color: var(--gray); font-size: 15px; line-height: 1.7; margin: 0; }
.sched-success-sub { font-size: 13px !important; color: #555 !important; margin-top: 10px !important; }
.sched-loading { color: var(--gray); font-size: 14px; }

/* cursor: default browser cursor (no custom override) */

/* ══════════════════════════════════════════════════════
   HERO CYCLE TEXT
══════════════════════════════════════════════════════ */
.hero-cycle {
  color: var(--gold);
  display: inline-block;
  min-height: 1.1em;
  border-left: 3px solid var(--gold);
  padding-left: 4px;
  animation: blink-cursor .8s step-end infinite;
}
@keyframes blink-cursor {
  0%,100% { border-color: var(--gold); }
  50%      { border-color: transparent; }
}

/* ══════════════════════════════════════════════════════
   NOISE TEXTURE OVERLAY
══════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ══════════════════════════════════════════════════════
   MARQUEE TICKER
══════════════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black-2);
  padding: 14px 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.marquee-track span:nth-child(odd) { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   ABOUT — REAL PHOTO
══════════════════════════════════════════════════════ */
.about-photo-wrap {
  position: relative;
  margin-bottom: 24px;
}
.about-photo-shield {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 380px;
  border: 1px solid var(--border);
  user-select: none;
  -webkit-user-drag: none;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  filter: grayscale(15%);
  transition: filter .4s;
}
.about-photo-shield:hover .about-photo { filter: grayscale(0%); }
.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(7,7,8,.85) 100%);
  pointer-events: none;
}
/* Invisible watermark block */
.about-photo-overlay::after {
  content: 'AutomataX';
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(212,175,55,.3);
  letter-spacing: .15em;
  text-transform: uppercase;
  pointer-events: none;
}
.about-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,12,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  z-index: 2;
}

/* ══════════════════════════════════════════════════════
   BEFORE / AFTER
══════════════════════════════════════════════════════ */
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin: 48px 0 56px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.ba-col {
  padding: 32px 28px;
}
.ba-col--before { background: var(--black-3); }
.ba-col--after  { background: rgba(212,175,55,.04); }
.ba-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ba-col--before .ba-label { color: var(--gray); }
.ba-col--after  .ba-label { color: var(--gold); }
.ba-list { display: flex; flex-direction: column; gap: 12px; }
.ba-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-l);
}
.ba-col--before .ba-list li { color: var(--gray); }
.ba-col--after  .ba-list li { color: var(--white); }
.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--black-4);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.ba-arrow {
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
}
.ba-divider span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════════════════════
   ROI CALCULATOR
══════════════════════════════════════════════════════ */
.roi-section { background: var(--black-2); }
.roi-widget {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.roi-inputs {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}
.roi-input-group label {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
  font-weight: 600;
}
.roi-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roi-slider-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--black-4);
  border-radius: 99px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(212,175,55,.5);
}
.roi-rate-input {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 10px 14px;
  width: 120px;
  text-align: center;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.roi-rate-input:focus { border-color: var(--gold); }
.roi-results {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.roi-result-card {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: border-color .3s;
}
.roi-result-card--gold {
  border-color: rgba(212,175,55,.3);
  background: rgba(212,175,55,.06);
}
.roi-result-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1;
}
.roi-result-label {
  font-size: 12px;
  color: var(--gray);
}

/* Mobile adjustments for new sections */
@media (max-width: 640px) {
  .before-after { grid-template-columns: 1fr; }
  .ba-divider { flex-direction: row; padding: 12px 20px; border: none;
                border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .ba-divider span { writing-mode: initial; }
  .ba-arrow { font-size: 18px; }
  .roi-inputs { grid-template-columns: 1fr; gap: 20px; }
  .roi-results { grid-template-columns: 1fr; gap: 12px; }
  .roi-widget  { padding: 20px 16px; }
  .about-photo-shield { max-height: 280px; }
  .hero-h1 { min-height: 2.5em; }
}


/* ── Hero cycle wrapper: prevents page collapse ── */
.hero-cycle-line {
  display: block;
  min-height: 1.15em;
}

/* ── Before/After SVG icons ── */
.ba-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ba-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-icon svg { width: 15px; height: 15px; }
.ba-icon--bad  { background: rgba(255,80,80,.1);  border: 1px solid rgba(255,80,80,.2); }
.ba-icon--bad  svg { stroke: #ff5050; }
.ba-icon--good { background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.25); }
.ba-icon--good svg { stroke: var(--gold); }

/* ══════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════════════════════ */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #d4af37, #f5d87a, #d4af37);
  z-index: 99999;
  pointer-events: none;
  transition: width .1s linear;
  box-shadow: 0 0 10px rgba(212,175,55,.6);
}

/* ══════════════════════════════════════════════════════
   BUTTON GLOW
══════════════════════════════════════════════════════ */
.btn-main {
  position: relative;
  overflow: hidden;
}
.btn-main::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.35) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.btn-main:hover::after { opacity: 1; }
.btn-main:hover {
  box-shadow: 0 0 28px rgba(212,175,55,.45), 0 4px 16px rgba(212,175,55,.2);
}

/* ══════════════════════════════════════════════════════
   SECTION DIVIDERS
══════════════════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--container-pad, 24px);
  overflow: hidden;
}
.section-divider span {
  display: block;
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,175,55,.08) 15%,
    rgba(212,175,55,.35) 50%,
    rgba(212,175,55,.08) 85%,
    transparent 100%);
}

/* ══════════════════════════════════════════════════════
   SOCIAL PROOF BUBBLE
══════════════════════════════════════════════════════ */
#social-proof-bubble {
  position: fixed;
  bottom: 100px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16,14,22,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 99px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  z-index: 8000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
#social-proof-bubble.sp--visible {
  opacity: 1;
  transform: translateY(0);
}
.sp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: sp-pulse 2s ease-in-out infinite;
}
@keyframes sp-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
@media (max-width: 640px) {
  #social-proof-bubble { left: 12px; font-size: 11px; padding: 8px 14px; bottom: 80px; }
}

/* ══════════════════════════════════════════════════════
   CHAT NUDGE
══════════════════════════════════════════════════════ */
#chat-nudge {
  position: fixed;
  bottom: 88px;
  left: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(16,14,22,.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 16px;
  padding: 16px 16px 16px 14px;
  width: 260px;
  z-index: 8001;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
#chat-nudge.nudge--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.nudge-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--black-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.nudge-avatar img { width: 22px; }
.nudge-body { flex: 1; }
.nudge-msg {
  font-size: 13px;
  color: var(--white);
  line-height: 1.5;
  margin: 0 0 10px;
  font-weight: 500;
}
.nudge-btn {
  background: linear-gradient(135deg, #d4af37, #f5d87a);
  color: #0a0a0c;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: filter .2s;
  font-family: inherit;
}
.nudge-btn:hover { filter: brightness(1.08); }
.nudge-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: color .2s;
}
.nudge-close:hover { color: var(--white); }
@media (max-width: 640px) {
  #chat-nudge { left: 12px; right: 12px; width: auto; bottom: 80px; }
}

/* ══════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════ */
#roi-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, #1a1820, #0f0e18);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.1);
}
#roi-toast.toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 640px) {
  #roi-toast { font-size: 12px; padding: 12px 18px; width: 90%; text-align: center; white-space: normal; }
}
