/* ============================================================
   Greeta Voice — Landing (v2 redesign)
   ============================================================ */

:root {
  --bg:    #08080c;
  --bg2:   #0f0f15;
  --bg3:   #16161f;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.14);
  --text:  #faf9ff;
  --muted: #b8b5c9;
  --dim:   #7a768f;
  --accent:  #c8a8ff;
  --accent2: #8b5cf6;
  --green:    #34d399;
  --green-bg: rgba(52,211,153,0.08);
  --red:      #f87171;
  --legal-text: #e8e5f1;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: 0.18s ease;
  --max: 1120px;
}

body.light-mode {
  --bg:        #FBF4EC;
  --bg-alt:    #FFFFFF;
  --bg2:       #FFFFFF;
  --bg3:       #F0D9CD;
  --border:    #E7DCCF;
  --border2:   #E7DCCF;
  --heading:   #3A2433;
  --text:      #3A2433;
  --muted:     #5E4A56;
  --dim:       #8A7380;
  --accent:    #C8633D;
  --accent2:   #A8522F;
  --plum:      #3A2433;
  --blush:     #F0D9CD;
  --gold:      #C9A24B;
  --green:     #C8633D;
  --green-bg:  rgba(200, 99, 61, 0.1);
  --legal-text:#4A3542;
  --serif:     Georgia, 'Times New Roman', Times, serif;
  --sans:      system-ui, Arial, Helvetica, sans-serif;
  --card-shadow: 0 24px 60px rgba(58, 36, 51, 0.1);
  --cta-text:  #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
h1 em, h2 em { font-style: italic; color: var(--accent); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.65;
}

@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.45; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* Buttons */
.btn-primary {
  font-size: 13px; font-weight: 600;
  color: var(--cta-text, #08080c); background: var(--accent);
  border: none; border-radius: var(--radius-sm);
  padding: 9px 18px; transition: transform var(--transition), filter var(--transition);
  display: inline-block; white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn-primary-lg {
  font-size: 15px; font-weight: 700;
  color: var(--cta-text, #08080c); background: var(--accent);
  border: none; border-radius: var(--radius-md);
  padding: 14px 28px; transition: transform var(--transition), filter var(--transition);
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(200,168,255,.2), 0 12px 32px rgba(139,92,246,.22);
}
.btn-primary-lg:hover { filter: brightness(1.06); transform: translateY(-1px); }

.btn-ghost-lg {
  font-size: 15px; color: var(--muted);
  background: transparent; border: 1px solid var(--border2);
  border-radius: var(--radius-md); padding: 14px 22px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost-lg:hover { border-color: var(--accent); color: var(--text); }

.btn-theme {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
}

.lang-toggle {
  display: flex; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 3px; gap: 2px;
}
.lang-btn {
  font-size: 12px; font-weight: 500; padding: 4px 10px;
  border: none; border-radius: 6px; background: transparent; color: var(--muted);
}
.lang-btn.active { background: var(--bg2); color: var(--text); border: 1px solid var(--border2); }

.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease infinite;
}

/* Announce */
.announce-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; padding: 10px 1.25rem;
  font-size: 13px; color: var(--muted);
  background: linear-gradient(90deg, rgba(139,92,246,.14), rgba(200,168,255,.05));
  border-bottom: 1px solid var(--border);
}
.announce-cta { color: var(--accent); font-weight: 600; }
.announce-cta:hover { text-decoration: underline; }

/* Nav */
.site-nav, nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 64px;
  background: rgba(8,8,12,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
body.light-mode .site-nav, body.light-mode nav { background: rgba(255,255,255,.92); }

.logo { font-family: var(--serif); font-size: 22px; }
.logo em { font-style: normal; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 13.5px; color: var(--muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  appearance: none; background: transparent; border: 0;
  font-size: 13.5px; color: var(--muted); padding: 18px 0;
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--text); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% - 4px); left: 50%;
  min-width: 210px; padding: 8px; background: var(--bg2);
  border: 1px solid var(--border2); border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translate(-50%, 8px); transition: all var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; visibility: visible; transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: block; padding: 9px 10px; border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text);
}
.nav-dropdown-menu a:hover { background: var(--bg3); color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.site-nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer { display: flex; align-items: center; }

.nav-dropdown.dropdown-open .nav-dropdown-menu,
.footer-dropdown.dropdown-open .footer-dropdown-menu {
  opacity: 1; pointer-events: auto; visibility: visible;
}
.nav-dropdown.dropdown-open .nav-dropdown-menu { transform: translate(-50%, 0); }
.footer-dropdown.dropdown-open .footer-dropdown-menu { transform: translateY(0); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero-v2 {
  max-width: var(--max); margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 3rem; align-items: center;
}
.hero-v2::before {
  content: ''; position: absolute; inset: 60px 0 auto;
  height: 420px; margin: 0 auto; max-width: 900px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(139,92,246,.12), transparent 68%);
  pointer-events: none; z-index: -1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 99px; padding: 6px 14px;
  font-size: 12px; color: var(--muted); margin-bottom: 1.25rem;
}
.hero-v2 h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 58px);
  line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 1rem;
}
.hero-sub { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 1.75rem; max-width: 480px; }
.hero-revenue-tag {
  font-family: var(--serif); font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.35; color: var(--text); margin-bottom: .85rem; max-width: 480px;
}
.hero-revenue-tag em, .hero-v2 h1 em { font-style: italic; color: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: .65rem; }
.cta-micro {
  font-size: 12.5px; color: var(--dim); margin-bottom: 1.25rem; max-width: 480px; line-height: 1.5;
}
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 16px; }
.hero-proof li {
  font-size: 12.5px; color: var(--dim);
  padding-left: 14px; position: relative;
}
.hero-proof li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
}

/* Call card */
.call-card-v2 {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  animation: fadeUp .5s ease both;
}
.call-card-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px; border-bottom: 1px solid var(--border); background: var(--bg3);
}
.call-dots { display: flex; gap: 5px; }
.call-dots span { width: 10px; height: 10px; border-radius: 50%; }
.call-dots span:nth-child(1) { background: #ff5f57; }
.call-dots span:nth-child(2) { background: #febc2e; }
.call-dots span:nth-child(3) { background: #28c840; }
.call-live { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); }
.call-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 260px; }
.msg { font-size: 13.5px; line-height: 1.55; padding: 10px 14px; border-radius: 14px; max-width: 90%; }
.msg.ai { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px 14px 14px 4px; }
.msg.client {
  background: rgba(200,168,255,.1); border: 1px solid rgba(200,168,255,.18);
  color: var(--accent); border-radius: 14px 14px 4px 14px; align-self: flex-end;
}
.call-footer {
  padding: 12px 16px; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; align-items: center;
}
.call-lang-pill {
  font-size: 11px; padding: 4px 10px; border-radius: 99px;
  background: rgba(200,168,255,.08); border: 1px solid rgba(200,168,255,.18); color: var(--accent);
}

/* Stats */
.stats-bar-v2 { border-block: 1px solid var(--border); background: var(--bg2); }
.stats-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 1.5rem 1.25rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 30px; letter-spacing: -1px; display: block; }
.stat-label { font-size: 12px; color: var(--dim); margin-top: 2px; }

/* Agent flow */
.agent-flow-section {
  padding: 4.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(139,92,246,.04), transparent);
}
.agent-flow-inner { max-width: var(--max); margin: 0 auto; }
.agent-flow-head { margin-bottom: 2rem; }
.agent-flow-head h2 {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.12; letter-spacing: -.5px;
}
.agent-flow-layout {
  display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: 1.25rem;
}
.agent-flow-tabs { display: flex; flex-direction: column; gap: 8px; }
.agent-flow-tab {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg2); color: var(--muted);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.agent-flow-tab:hover { border-color: var(--border2); color: var(--text); }
.agent-flow-tab.is-active {
  border-color: rgba(200,168,255,.35);
  background: linear-gradient(145deg, var(--bg2), rgba(139,92,246,.08));
  color: var(--text);
}
.agent-flow-step-num {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--accent);
  background: rgba(200,168,255,.1); border: 1px solid rgba(200,168,255,.2);
}
.agent-flow-tab-label { font-size: 14px; font-weight: 500; line-height: 1.3; }
.agent-flow-panel {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 1.75rem; min-height: 220px;
  display: none;
}
.agent-flow-panel.is-active { display: block; animation: fadeUp .35s ease both; }
.agent-flow-panel h3 { font-size: 18px; margin-bottom: .5rem; }
.agent-flow-panel p { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.65; max-width: 520px; }
.agent-flow-visual { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; }
.agent-flow-pill {
  font-size: 11px; padding: 6px 12px; border-radius: 99px;
  background: var(--bg3); border: 1px solid var(--border); color: var(--muted);
}
.agent-flow-pill-live { color: var(--green); border-color: rgba(52,211,153,.25); background: var(--green-bg); }

/* Replace stack */
.replace-section {
  padding: 4.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.replace-inner { max-width: var(--max); margin: 0 auto; }
.replace-inner h2 {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.12; letter-spacing: -.5px; margin-bottom: .75rem;
}
.replace-list {
  list-style: none; display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
  margin-top: 1.75rem;
}
.replace-list li {
  position: relative; padding: .9rem 1rem .9rem 2.5rem;
  border-radius: var(--radius-md);
  background: var(--bg2); border: 1px solid var(--border);
  font-size: 14px; color: var(--muted); text-decoration: line-through;
  text-decoration-color: rgba(248,113,113,.55);
}
.replace-list li::before {
  content: '✕'; position: absolute; left: .85rem; top: .9rem;
  color: var(--red); font-size: 12px; font-weight: 700;
}
.replace-foot {
  margin-top: 1.25rem; font-size: 14px; color: var(--text); font-weight: 500;
}

/* Dashboard & App */
.apps-section {
  padding: 4.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(99,102,241,.04));
}
.apps-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.apps-inner h2 {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.12; letter-spacing: -.5px; margin-bottom: .75rem;
}
.apps-inner .section-sub { margin: 0 auto 2rem; max-width: 640px; }
.apps-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
  text-align: left;
}
.apps-card {
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .65rem;
}
.apps-icon { font-size: 28px; line-height: 1; }
.apps-card h3 { font-size: 18px; margin: 0; }
.apps-card p { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.65; margin: 0; }
.apps-card .btn-primary { margin-top: auto; align-self: flex-start; }
.apps-platforms {
  margin-top: auto; font-size: 13px; font-weight: 500; color: var(--green);
  padding: .55rem .85rem; border-radius: var(--radius-md);
  background: var(--green-bg); border: 1px solid rgba(52,211,153,.2);
  align-self: flex-start;
}

/* Problem */
.problem-section { padding: 5rem 1.5rem; }
.problem-inner { max-width: var(--max); margin: 0 auto; }
.problem-inner h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1; letter-spacing: -.5px; margin-bottom: .75rem;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 2rem;
}
.problem-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.35rem;
}
.problem-icon { font-size: 24px; display: block; margin-bottom: .75rem; }
.problem-card h3 { font-size: 15px; margin-bottom: .35rem; }
.problem-card p { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.55; }

/* Features bento */
.features-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,.04), transparent);
}
.features-inner { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: end; margin-bottom: 2rem;
}
.section-head h2 {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.12; letter-spacing: -.5px;
}
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.bento-grid-9 .bento-card { min-height: 148px; }
.bento-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.bento-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.bento-wide { grid-column: span 2; }
.bento-accent {
  background: linear-gradient(145deg, var(--bg2), rgba(139,92,246,.08));
  border-color: rgba(200,168,255,.2);
}
.bento-icon { font-size: 22px; display: block; margin-bottom: .65rem; }
.bento-card h3 { font-size: 15px; margin-bottom: .35rem; }
.bento-card p { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.55; }

/* Pillars — BookingBee-style highlight grid */
.pillars-section {
  padding: 3.5rem 1.5rem 4rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.pillars-inner { max-width: var(--max); margin: 0 auto; }
.pillars-lead {
  text-align: center; font-size: 17px; color: var(--muted);
  font-weight: 300; max-width: 620px; margin: 0 auto 2rem; line-height: 1.6;
}
.pillar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.pillar-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.35rem 1.15rem;
  text-align: center; transition: transform var(--transition), border-color var(--transition);
}
.pillar-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.pillar-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto .85rem;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  border: 1px solid var(--border2);
}
.pillar-icon-beauty { background: linear-gradient(145deg, rgba(200,168,255,.15), rgba(139,92,246,.08)); }
.pillar-icon-clock { background: linear-gradient(145deg, rgba(52,211,153,.12), rgba(52,211,153,.04)); }
.pillar-icon-lang  { background: linear-gradient(145deg, rgba(96,165,250,.12), rgba(59,130,246,.06)); }
.pillar-icon-sync  { background: linear-gradient(145deg, rgba(251,191,36,.12), rgba(245,158,11,.06)); }
.pillar-card h3 { font-size: 14.5px; margin-bottom: .4rem; }
.pillar-card p { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.55; }

/* Industry verticals */
.verticals-block { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.verticals-head { margin-bottom: 1.25rem; }
.verticals-head h3 {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: -.3px; margin-bottom: .35rem;
}
.verticals-notify {
  font-size: 14px; color: var(--muted); font-weight: 300; margin-top: .5rem;
}
.verticals-notify a {
  color: var(--accent); font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px;
}
.vertical-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.vertical-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg2);
  min-height: 148px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  padding: 1.25rem .75rem 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vertical-card.vertical-live:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow, 0 16px 40px rgba(0,0,0,.2));
}
.vertical-card.vertical-soon { opacity: .78; }
.vertical-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text);
}
.vertical-soon .vertical-icon-wrap { color: var(--muted); }
.vertical-icon { width: 44px; height: 44px; }
.vertical-name {
  position: relative; z-index: 1;
  font-size: 12.5px; font-weight: 600; text-align: center; line-height: 1.35;
}
.coming-soon-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 99px;
  background: rgba(255,255,255,.92); color: var(--plum, var(--text));
  border: 1px solid var(--border);
}
body:not(.light-mode) .coming-soon-badge {
  background: rgba(22,22,31,.9); color: var(--accent); border-color: var(--border2);
}

.beauty-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.beauty-chip {
  font-size: 12.5px; padding: 7px 14px; border-radius: 99px;
  background: var(--bg3); border: 1px solid var(--border2); color: var(--muted);
}

/* How */
.how-section-v2 { padding: 5rem 1.5rem; border-top: 1px solid var(--border); }
.how-inner { max-width: var(--max); margin: 0 auto; }
.how-inner h2 {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 40px);
  letter-spacing: -.5px; margin-bottom: .5rem;
}
.steps-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 2rem;
}
.step-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.35rem;
}
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: rgba(200,168,255,.1); border: 1px solid rgba(200,168,255,.2);
  margin-bottom: .85rem;
}
.step-card h3 { font-size: 15px; margin-bottom: .35rem; }
.step-card p { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.55; }
.mid-cta {
  margin-top: 2.5rem; padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg2); border: 1px solid var(--border2);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.mid-cta p { font-size: 15px; color: var(--muted); max-width: 420px; font-weight: 300; }
.mid-cta .cta-micro { margin: .5rem 0 0; }

/* Final CTA */
.final-cta-section {
  padding: 4.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(139,92,246,.06));
}
.final-cta-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.final-cta-inner h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -.5px; margin-bottom: .75rem;
}
.final-cta-inner .section-sub { margin: 0 auto 1.5rem; text-align: center; }
.final-cta-inner .cta-micro { margin-top: .85rem; }

/* Dashboard preview */
.dashboard-preview-section {
  padding: 5rem 1.5rem 2.5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(139,92,246,.03));
}
.dashboard-preview-section + .apps-section {
  padding-top: 0;
  border-top: none;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(139,92,246,.03), rgba(99,102,241,.04));
}
.dashboard-preview-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 2.5rem; align-items: center;
}
.dashboard-preview-copy h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.12; letter-spacing: -.4px; margin-bottom: .65rem;
}
.dashboard-preview-points {
  list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: .55rem;
}
.dashboard-preview-points li {
  font-size: 14px; color: var(--muted); font-weight: 300;
  padding-left: 1.1rem; position: relative;
}
.dashboard-preview-points li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.browser-frame {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border2);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.04);
}
.browser-chrome {
  display: flex; align-items: center;
  padding: 10px 14px; background: #2a2438; border-bottom: 1px solid rgba(255,255,255,.08);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.dashboard-mock {
  display: grid; grid-template-columns: 162px 1fr;
  min-height: 460px; background: #120f18; color: #eceaf3;
  font-size: 11px;
}
.dm-sidebar {
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 10px 8px; background: #0e0c14;
  display: flex; flex-direction: column; gap: 8px; min-height: 100%;
}
.dm-brand strong { display: block; font-size: 11px; line-height: 1.3; }
.dm-brand span { font-size: 9px; color: rgba(255,255,255,.45); line-height: 1.35; }
.dm-clock {
  font-size: 9px; color: rgba(255,255,255,.5);
  padding: 6px 8px; border-radius: 8px; background: rgba(255,255,255,.04);
}
.dm-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; min-height: 0; }
.dm-nav-item {
  font-size: 9px; padding: 5px 7px; border-radius: 7px; color: rgba(255,255,255,.55);
  line-height: 1.25; white-space: nowrap;
}
.dm-nav-item.active {
  background: rgba(139,92,246,.22); color: #d8c4ff; border: 1px solid rgba(167,139,250,.25);
}
.dm-nav-signout {
  margin-top: auto; font-size: 9px; padding: 6px 7px; border-radius: 7px;
  color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 10px;
}
.dm-main { padding: 14px 16px 16px; overflow: hidden; }
.dm-title { font-size: 18px; font-weight: 600; margin-bottom: 2px; }
.dm-subtitle { font-size: 10px; color: rgba(255,255,255,.45); }
.dm-banner {
  margin: 10px 0 12px; padding: 7px 10px; border-radius: 8px;
  background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.28);
  color: #fcd34d; font-size: 10px; line-height: 1.4;
}
.dm-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px;
}
.dm-kpi {
  padding: 8px 10px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
}
.dm-kpi-accent { border-color: rgba(167,139,250,.25); background: rgba(139,92,246,.1); }
.dm-kpi-label { display: block; font-size: 8.5px; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.dm-kpi strong { font-size: 16px; font-weight: 600; color: #fff; }
.dm-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dm-panel {
  border-radius: 10px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07); padding: 10px; min-height: 160px;
}
.dm-panel-head {
  font-size: 10px; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,.75);
}
.dm-call-row { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.06); }
.dm-call-row:first-of-type { border-top: none; padding-top: 0; }
.dm-call-meta { display: flex; gap: 8px; margin-bottom: 4px; color: rgba(255,255,255,.45); font-size: 9px; }
.dm-tag {
  display: inline-block; font-size: 8px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; padding: 2px 6px; border-radius: 99px; margin-bottom: 4px;
}
.dm-tag-muted { background: rgba(255,255,255,.08); color: rgba(255,255,255,.55); }
.dm-tag-booked { background: rgba(52,211,153,.15); color: #6ee7b7; }
.dm-summary { font-size: 9.5px; line-height: 1.45; color: rgba(255,255,255,.65); }
.dm-staff-tabs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.dm-staff-tabs span {
  font-size: 8px; padding: 3px 7px; border-radius: 99px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
}
.dm-staff-tabs span.active { background: rgba(139,92,246,.25); color: #ddd6fe; }
.dm-appt-row {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 6px; align-items: start;
  padding: 7px 0; border-top: 1px solid rgba(255,255,255,.06); font-size: 9.5px;
}
.dm-appt-row:first-of-type { border-top: none; }
.dm-appt-time { color: rgba(255,255,255,.45); }
.dm-appt-staff { color: #c4b5fd; margin-left: 4px; }
.dm-appt-price { color: rgba(255,255,255,.7); font-weight: 600; }
.dashboard-preview-caption {
  text-align: center; font-size: 11px; color: var(--dim);
  padding: 10px 12px; background: var(--bg2); border-top: 1px solid var(--border);
}

/* Integrations */
.integrations-v2 {
  padding: 4rem 1.5rem; background: var(--bg2);
  border-block: 1px solid var(--border);
}
.integrations-inner { max-width: var(--max); margin: 0 auto; }
.integrations-inner h2 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 1.5rem;
}
.integration-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.integration-grid-4 { grid-template-columns: repeat(2, 1fr); margin-top: 1.25rem; }
.integration-sub { margin-bottom: 0; max-width: 560px; }
.integration-footnote {
  margin-top: 1.25rem; font-size: 13px; color: var(--dim); font-weight: 300;
}
.integration-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.15rem;
  position: relative;
}
.integration-card-soon { opacity: .85; }
.integration-brand {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 6px; margin-bottom: 8px;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--dim);
}
.integration-brand-square { color: #006aff; border-color: rgba(0,106,255,.25); background: rgba(0,106,255,.06); }
.integration-brand-google { color: #4285f4; border-color: rgba(66,133,244,.25); background: rgba(66,133,244,.06); }
.integration-brand-greeta { color: var(--accent); border-color: rgba(200,168,255,.25); }
.integration-brand-more { font-size: 14px; padding: 2px 10px; }
.integration-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.integration-card-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(200, 99, 61, 0.08) 100%);
}
body.light-mode .integration-card-featured {
  border-color: #C8633D;
  background: linear-gradient(135deg, #FFFBF7 0%, rgba(200, 99, 61, 0.06) 100%);
}

/* Reviews */
.reviews-v2 { padding: 5rem 1.5rem; }
.reviews-inner { max-width: var(--max); margin: 0 auto; }
.reviews-inner h2 {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.12; margin-bottom: 2rem;
}
.testimonials-v2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.tcard {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.35rem;
  display: flex; flex-direction: column;
}
.trating span { color: #facc15; font-size: 13px; }
.tquote {
  font-family: Georgia, serif; font-style: italic;
  font-size: 14px; line-height: 1.65; margin: .75rem 0 1rem; flex: 1;
}
.tauthor { display: flex; align-items: center; gap: 10px; }
.tavatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,168,255,.1); border: 1px solid rgba(200,168,255,.2);
  color: var(--accent); font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.tname { font-size: 13px; font-weight: 500; }
.tbiz { font-size: 11.5px; color: var(--dim); }

/* FAQ */
.faq-section { padding: 5rem 1.5rem; border-top: 1px solid var(--border); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-inner h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 1.5rem;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0 1rem;
}
.faq-item summary {
  cursor: pointer; padding: 1rem 0; font-size: 15px; font-weight: 500;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 18px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding-bottom: 1rem; font-size: 14px; color: var(--muted);
  font-weight: 300; line-height: 1.6;
}

/* Newsletter */
.newsletter-section {
  padding: 4rem 1.5rem; text-align: center;
  background: var(--bg2); border-top: 1px solid var(--border);
}
.newsletter-inner h2 {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 32px); margin-bottom: .35rem;
}
.newsletter-inner > p { color: var(--muted); font-weight: 300; margin-bottom: 1.25rem; }
.newsletter-form {
  display: flex; gap: 8px; max-width: 420px; margin: 0 auto; justify-content: center;
}
.field-input, .phone-input {
  flex: 1; font-size: 15px; background: var(--bg3);
  border: 1px solid var(--border2); border-radius: var(--radius-md);
  padding: 12px 14px; color: var(--text); outline: none;
}
.field-input:focus, .phone-input:focus { border-color: rgba(200,168,255,.45); }
.btn-call {
  font-size: 14px; font-weight: 700; color: var(--cta-text, #08080c);
  background: var(--accent); border: none;
  border-radius: var(--radius-md); padding: 12px 20px; white-space: nowrap;
}
.newsletter-note { font-size: 12px; color: var(--dim); margin-top: .75rem; }
.newsletter-note a { color: var(--accent); }
.newsletter-state { margin-top: .75rem; font-size: 14px; }

.contact-section {
  scroll-margin-top: 5.5rem;
  padding: 4rem 1.5rem 5rem;
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 560px;
  margin: 0 auto;
}
.contact-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  margin: .5rem 0 1rem;
}
.contact-inner > p { color: var(--muted); font-weight: 300; margin-bottom: 1.25rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.field-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.field-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.contact-state { margin-top: .75rem; font-size: 14px; }
#contact-email-display { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer, footer {
  max-width: var(--max); margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--border);
}
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.footer-link,
.footer-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.footer-link:hover,
.footer-dropdown-trigger:hover,
.footer-dropdown:focus-within .footer-dropdown-trigger { color: var(--text); }
.footer-dropdown { position: relative; }
.footer-dropdown-menu {
  position: absolute; bottom: calc(100% + 8px); left: 0;
  min-width: 240px; padding: 8px; background: var(--bg2);
  border: 1px solid var(--border2); border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(6px); transition: all var(--transition); z-index: 50;
}
.footer-dropdown:hover .footer-dropdown-menu,
.footer-dropdown:focus-within .footer-dropdown-menu {
  opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0);
}
.footer-dropdown-menu a {
  display: block; padding: 9px 10px; border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text);
}
.footer-dropdown-menu a:hover { background: var(--bg3); color: var(--accent); }
.footer-doc-version {
  display: block; padding: 0 10px 6px; font-size: 11px; color: var(--dim);
  border-top: 1px solid var(--border); margin-top: 4px; padding-top: 8px;
}
.footer-copy { font-size: 13px; color: var(--dim); }

/* Legal pages (unchanged essentials) */
.legal-page { max-width: 1220px; margin: 0 auto; padding: 5rem 2.5rem; }
.legal-page h1 {
  font-family: var(--serif); font-size: clamp(38px,5vw,58px);
  line-height: 1.05; letter-spacing: -1px; margin-bottom: .75rem;
}
.legal-content .legal-doc-title {
  font-family: var(--serif); font-size: clamp(38px,5vw,58px);
  line-height: 1.05; letter-spacing: -1px; margin-bottom: .75rem;
  font-weight: inherit; color: var(--text);
}
body.light-mode .legal-content .legal-doc-title { color: var(--heading); }
.legal-meta { font-size: 14px; color: var(--muted); margin-bottom: 2.5rem; }
.legal-content { color: var(--legal-text); font-weight: 300; }
.legal-content h2 {
  font-family: var(--serif); font-size: 28px; color: var(--text);
  margin: 2.25rem 0 .75rem;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: .25rem 0 1.25rem 1.2rem; }
.legal-content h3 {
  font-size: 1.05rem; font-weight: 500; margin: 1.25rem 0 .5rem; color: var(--text);
}
.legal-content hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.legal-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.legal-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--border); padding: .55rem .65rem; text-align: left; vertical-align: top;
}
.legal-table th { background: var(--bg3); font-weight: 500; }
.legal-content a { color: var(--accent); }
.legal-sms-note {
  max-width: 1220px; margin: 1rem auto 0; padding: 0 2.5rem;
  font-size: 12px; color: var(--dim); line-height: 1.5;
}

/* ============================================================
   Light mode — warm beauty palette (cream / terracotta / plum)
   ============================================================ */
body.light-mode {
  font-family: var(--sans);
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode .hero-v2 h1,
body.light-mode .problem-inner h2,
body.light-mode .section-head h2,
body.light-mode .how-inner h2,
body.light-mode .agent-flow-head h2,
body.light-mode .replace-inner h2,
body.light-mode .apps-inner h2,
body.light-mode .final-cta-inner h2,
body.light-mode .integrations-inner h2,
body.light-mode .reviews-inner h2,
body.light-mode .faq-inner h2,
body.light-mode .newsletter-inner h2,
body.light-mode .legal-page h1,
body.light-mode .legal-content h2 {
  color: var(--heading);
  font-family: var(--serif);
}

body.light-mode h1 em,
body.light-mode h2 em {
  color: var(--accent);
  font-style: italic;
}

body.light-mode .logo em {
  color: var(--accent);
}

/* CTA pills */
body.light-mode .btn-primary,
body.light-mode .btn-primary-lg,
body.light-mode .btn-call {
  border-radius: 999px;
  color: var(--cta-text);
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(200, 99, 61, 0.22);
}

body.light-mode .btn-primary-lg:hover,
body.light-mode .btn-primary:hover,
body.light-mode .btn-call:hover {
  filter: brightness(1.05);
  background: var(--accent2);
}

body.light-mode .btn-ghost-lg {
  border-radius: 999px;
  border-color: var(--border);
  color: var(--heading);
}

body.light-mode .btn-ghost-lg:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Nav & announce */
body.light-mode .site-nav,
body.light-mode nav {
  background: rgba(251, 244, 236, 0.92);
  border-bottom-color: var(--border);
}

body.light-mode .announce-bar {
  background: linear-gradient(90deg, rgba(240, 217, 205, 0.9), rgba(251, 244, 236, 0.95));
  border-bottom-color: var(--border);
}

body.light-mode .announce-cta,
body.light-mode .nav-dropdown-menu a:hover,
body.light-mode .newsletter-note a,
body.light-mode .footer-links a:hover {
  color: var(--accent);
}

body.light-mode .nav-dropdown-menu {
  background: var(--bg-alt);
  box-shadow: var(--card-shadow);
}

body.light-mode .lang-toggle {
  background: var(--blush);
  border-color: var(--border);
}

body.light-mode .lang-btn.active {
  background: var(--bg-alt);
  color: var(--heading);
  border-color: var(--border);
}

/* Hero */
body.light-mode .hero-v2::before {
  background: radial-gradient(ellipse at center, rgba(240, 217, 205, 0.55), transparent 68%);
}

body.light-mode .hero-badge {
  background: var(--blush);
  border-color: var(--border);
  color: var(--muted);
}

body.light-mode .hero-sub,
body.light-mode .hero-revenue-tag,
body.light-mode .section-sub,
body.light-mode .problem-card p,
body.light-mode .bento-card p,
body.light-mode .pillar-card p,
body.light-mode .pillars-lead,
body.light-mode .step-card p,
body.light-mode .integration-sub,
body.light-mode .faq-item p,
body.light-mode .mid-cta p {
  color: var(--muted);
}

body.light-mode .hero-proof li {
  color: var(--dim);
}

body.light-mode .pillar-icon-beauty { background: linear-gradient(145deg, rgba(240,217,205,.8), rgba(200,99,61,.12)); }
body.light-mode .pillar-icon-clock { background: linear-gradient(145deg, rgba(240,217,205,.6), rgba(200,99,61,.08)); }
body.light-mode .pillar-icon-lang  { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(240,217,205,.5)); }
body.light-mode .pillar-icon-sync  { background: linear-gradient(145deg, rgba(201,162,75,.15), rgba(240,217,205,.4)); }
body.light-mode .pillar-card { background: var(--bg-alt); box-shadow: var(--card-shadow); }
body.light-mode .pillars-section { background: var(--blush); }
body.light-mode .vertical-card { border-color: var(--border); background: var(--bg-alt); box-shadow: var(--card-shadow); }
body.light-mode .vertical-icon-wrap { background: var(--blush); border-color: var(--border); color: var(--plum); }
body.light-mode .dashboard-preview-section {
  background: linear-gradient(180deg, var(--bg), var(--blush));
}
body.light-mode .browser-frame {
  box-shadow: var(--card-shadow), 0 0 0 1px var(--border);
}
body.light-mode .dashboard-preview-caption { background: var(--bg-alt); }

body.light-mode .badge-dot {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(200, 99, 61, 0.45);
}

/* Phone / call card */
body.light-mode .call-card-v2 {
  background: var(--bg-alt);
  border-color: var(--border);
  box-shadow: var(--card-shadow);
}

body.light-mode .call-card-header {
  background: var(--blush);
  border-bottom-color: var(--border);
}

body.light-mode .call-body {
  background: var(--bg-alt);
}

body.light-mode .msg.ai {
  background: var(--plum);
  border-color: var(--plum);
  color: #FFFFFF;
}

body.light-mode .msg.client {
  background: var(--blush);
  border-color: var(--border);
  color: var(--heading);
}

body.light-mode .call-lang-pill {
  background: var(--blush);
  border-color: var(--border);
  color: var(--heading);
}

body.light-mode .call-live {
  color: var(--accent);
}

/* Stats — terracotta numbers */
body.light-mode .stat-num {
  color: var(--accent);
  font-family: var(--serif);
}

/* Alternating section backgrounds: cream ↔ white */
body.light-mode .hero-v2,
body.light-mode .problem-section,
body.light-mode .how-section-v2,
body.light-mode .reviews-v2,
body.light-mode .newsletter-section {
  background: var(--bg);
}

body.light-mode .stats-bar-v2,
body.light-mode .features-section,
body.light-mode .integrations-v2,
body.light-mode .faq-section,
body.light-mode .site-footer,
body.light-mode footer {
  background: var(--bg-alt);
}

body.light-mode .features-section {
  background-image: none;
}

body.light-mode .stats-bar-v2,
body.light-mode .how-section-v2,
body.light-mode .integrations-v2,
body.light-mode .faq-section {
  border-color: var(--border);
}

/* Cards */
body.light-mode .problem-card,
body.light-mode .bento-card,
body.light-mode .step-card,
body.light-mode .integration-card,
body.light-mode .tcard,
body.light-mode .faq-item,
body.light-mode .mid-cta {
  background: var(--bg-alt);
  border-color: var(--border);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius-lg);
}

body.light-mode .bento-accent {
  background: linear-gradient(145deg, var(--bg-alt), var(--blush));
  border-color: var(--border);
}

body.light-mode .bento-card:hover {
  border-color: rgba(200, 99, 61, 0.35);
}

/* Chips */
body.light-mode .beauty-chip {
  background: var(--blush);
  border-color: var(--border);
  color: var(--heading);
  border-radius: 999px;
}

/* Step numbers */
body.light-mode .step-num {
  color: var(--accent);
  background: rgba(200, 99, 61, 0.12);
  border-color: rgba(200, 99, 61, 0.25);
}

/* Mid CTA — dark plum band + gold accent */
body.light-mode .mid-cta {
  background: var(--plum);
  border-color: var(--plum);
  box-shadow: var(--card-shadow);
}

body.light-mode .mid-cta p {
  color: rgba(255, 255, 255, 0.82);
}

body.light-mode .mid-cta .btn-primary-lg {
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 162, 75, 0.45), 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Reviews — gold stars */
body.light-mode .trating span {
  color: var(--gold);
}

body.light-mode .tavatar {
  background: var(--blush);
  border-color: var(--border);
  color: var(--accent);
}

body.light-mode .tquote {
  color: var(--heading);
}

/* FAQ */
body.light-mode .faq-item summary {
  color: var(--heading);
}

body.light-mode .faq-item summary::after {
  color: var(--accent);
}

/* Form fields */
body.light-mode .field-input,
body.light-mode .phone-input {
  background: var(--bg-alt);
  border-color: var(--border);
  color: var(--heading);
  border-radius: 999px;
}

body.light-mode .field-input:focus,
body.light-mode .phone-input:focus {
  border-color: rgba(200, 99, 61, 0.55);
}

body.light-mode .field-textarea,
body.light-mode .contact-form .field-input {
  border-radius: var(--radius-md);
  background: var(--bg3);
}

body.light-mode .field-textarea {
  min-height: 120px;
  resize: vertical;
}

body.light-mode .eyebrow {
  color: var(--accent);
}

body.light-mode .stat-label,
body.light-mode .tbiz,
body.light-mode .footer-copy {
  color: var(--dim);
}

body.light-mode .footer-dropdown-menu {
  background: var(--bg-alt); box-shadow: var(--card-shadow);
}

body.light-mode .footer-links a {
  color: var(--muted);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-v2 { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .section-head { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid, .steps-row, .integration-grid, .integration-grid-4, .testimonials-v2 { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .vertical-grid { grid-template-columns: repeat(3, 1fr); }
  .dashboard-preview-inner { grid-template-columns: 1fr; }
  .dashboard-mock { grid-template-columns: 1fr; }
  .dm-sidebar { display: none; }
  .dm-kpis { grid-template-columns: repeat(2, 1fr); }
  .dm-panels { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .agent-flow-layout { grid-template-columns: 1fr; }
  .agent-flow-tabs { flex-direction: row; flex-wrap: wrap; }
  .agent-flow-tab { flex: 1 1 calc(50% - 4px); min-width: 140px; }
  .replace-list { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav { flex-wrap: wrap; }
  .nav-drawer {
    order: 4;
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 1rem;
    border-top: 1px solid var(--border);
    margin-top: .5rem;
  }
  .site-nav.nav-open .nav-drawer { display: flex; }
  .nav-drawer .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: .5rem;
  }
  .nav-drawer .nav-links a,
  .nav-drawer .nav-dropdown-trigger {
    display: block;
    padding: 12px 0;
    font-size: 15px;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    transition: max-height var(--transition);
  }
  .nav-dropdown.dropdown-open .nav-dropdown-menu {
    visibility: visible;
    pointer-events: auto;
    max-height: 240px;
    padding: 0 0 8px 12px;
  }
  .call-card-v2 { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .vertical-grid { grid-template-columns: 1fr 1fr; }
  .mid-cta { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .site-footer, footer { flex-direction: column; text-align: center; }
  .announce-bar { font-size: 12px; }
}
