/* ===================================================
   CUSTOM PROPERTIES
   =================================================== */
:root {
  --bg:        #ffffff;
  --bg-alt:    #f8f9fa;
  --bg-blue:   #e8f0fe;
  --bg-green:  #e6f4ea;
  --bg-yellow: #fef7e0;
  --bg-red:    #fce8e6;

  --primary:    #4285F4;
  --primary-dk: #1a73e8;
  --secondary:  #34A853;
  --accent:     #FBBC05;
  --danger:     #EA4335;

  --text:       #202124;
  --text-sec:   #5f6368;
  --text-light: #80868b;
  --card-bd:    #e8eaed;

  --radius:     12px;
  --radius-sm:  8px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 56px rgba(0,0,0,0.11), 0 4px 16px rgba(0,0,0,0.05);

  --shadow-blue:  0 8px 32px rgba(66,133,244,0.16);
  --shadow-green: 0 8px 32px rgba(52,168,83,0.16);
}

/* ===================================================
   RESET
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1, h2, h3, h4 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text);
}
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); }
h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--text-sec); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-blue);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.eyebrow-center { display: flex; justify-content: center; }

.section-hd, .features-hd {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-hd p, .features-hd p {
  font-size: 1rem;
  color: var(--text-sec);
  max-width: 46ch;
  line-height: 1.65;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: background 180ms, transform 140ms, box-shadow 180ms;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(66,133,244,0.38);
}
.btn-primary:active { transform: scale(0.98) translateY(0); box-shadow: none; }

.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-icon { transition: transform 200ms; }
.btn-primary:hover .btn-icon { transform: translateX(4px); }

.btn-ghost-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-sec);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--card-bd);
  background: transparent;
  transition: border-color 180ms, color 180ms, background 180ms;
  white-space: nowrap;
}
.btn-ghost-line:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(66,133,244,0.04);
}

.btn-outline-p {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--card-bd);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color 180ms, color 180ms, background 180ms;
}
.btn-outline-p:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(66,133,244,0.03);
}

/* ===================================================
   NAVBAR
   =================================================== */
.nav-host {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--card-bd);
  transition: box-shadow 250ms;
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
}
.logo-star { font-size: 1.1rem; }
.nav-logo-img {
  width: 66px; height: 66px;
  object-fit: contain; display: block; flex-shrink: 0;
}
.ob-logo-img {
  width: 72px; height: 72px;
  object-fit: contain; vertical-align: middle;
}
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sec);
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  transition: color 180ms, background 180ms;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-signin {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sec);
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  transition: color 180ms;
}
.nav-signin:hover { color: var(--text); }
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 180ms;
}
.burger:hover { background: var(--bg-alt); }
.burger-line {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 300ms, opacity 300ms;
}
.burger.open .burger-line:first-child { transform: translateY(5.5px) rotate(45deg); }
.burger.open .burger-line:last-child  { transform: translateY(-5.5px) rotate(-45deg); }

/* ===================================================
   MOBILE OVERLAY
   =================================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(32,33,36,0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.overlay-inner {
  position: absolute;
  top: 60px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--card-bd);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-10px);
  transition: transform 280ms;
}
.mobile-overlay.open .overlay-inner { transform: translateY(0); }
.overlay-nav { display: flex; flex-direction: column; gap: 2px; }
.overlay-link {
  display: block;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 180ms;
}
.overlay-link:hover { background: var(--bg-alt); }
.overlay-cta { text-align: center; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 24px 80px;
}
/* ── Hero animated background ── */
.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-height: 100dvh;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #eef3ff 0%, #ffffff 45%, #edfdf3 100%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  animation: orb-fade-in 1.2s ease forwards;
}
@keyframes orb-fade-in {
  to { opacity: 1; }
}
.hero-orb--blue {
  width: min(110vw, 1400px); height: min(110vw, 1400px);
  background: radial-gradient(circle, rgba(66,133,244,0.20) 0%, transparent 65%);
  top: -30%; right: -18%;
  animation: orb-fade-in 1.4s ease forwards, orb-float-1 12s ease-in-out 1.4s infinite alternate;
  opacity: 0;
}
.hero-orb--green {
  width: min(90vw, 1100px); height: min(90vw, 1100px);
  background: radial-gradient(circle, rgba(52,168,83,0.17) 0%, transparent 65%);
  bottom: -20%; left: -14%;
  animation: orb-fade-in 1.6s ease 0.3s forwards, orb-float-2 14s ease-in-out 1.9s infinite alternate;
  opacity: 0;
}
.hero-orb--yellow {
  width: min(70vw, 880px); height: min(70vw, 880px);
  background: radial-gradient(circle, rgba(251,188,5,0.13) 0%, transparent 65%);
  top: 18%; left: 20%;
  animation: orb-fade-in 1.6s ease 0.6s forwards, orb-float-3 10s ease-in-out 2.2s infinite alternate;
  opacity: 0;
}
@keyframes orb-float-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(24px, -18px) scale(1.04); }
}
@keyframes orb-float-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-20px, 16px) scale(1.06); }
}
@keyframes orb-float-3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(16px, 20px) scale(1.03); }
}

/* Hero text — dark palette (permanent) */
.hero--no-video .hero-line            { color: var(--text); text-shadow: none; }
.hero--no-video .hero-line.grad       {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(125deg, var(--primary) 0%, #7c3aed 50%, var(--danger) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  animation: grad-shift 5s ease infinite;
}
@keyframes grad-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero--no-video .hero-sub             { color: var(--text-sec); text-shadow: none; }
.hero--no-video .hero-badge           { color: var(--primary); background: rgba(66,133,244,0.08); border-color: rgba(66,133,244,0.2); box-shadow: none; backdrop-filter: none; }
.hero--no-video .hero-trust p         { color: var(--text-light); text-shadow: none; }
.hero--no-video .hero-ctas .btn-ghost-line        { color: var(--text-sec); border-color: var(--card-bd); }
.hero--no-video .hero-ctas .btn-ghost-line:hover  { border-color: var(--primary); color: var(--primary); background: rgba(66,133,244,0.04); }
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(66,133,244,0.08);
  border: 1px solid rgba(66,133,244,0.2);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  opacity: 0;
}
.badge-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  animation: pip-blink 2.2s ease-in-out infinite;
}
@keyframes pip-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

/* Hero headline */
.hero-headline { display: flex; flex-direction: column; gap: 0; }
.line-mask { overflow: hidden; padding-bottom: 4px; }
.hero-line {
  font-size: clamp(2.3rem, 4.5vw + 0.4rem, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  display: block;
}
.hero-line.grad {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(125deg, var(--primary) 0%, #7c3aed 50%, var(--danger) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: grad-shift 5s ease infinite;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-sec);
  max-width: 42ch;
  opacity: 0;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
}

/* ===================================================
   GOOGLE INTEGRATION — animated logo
   =================================================== */
.google-integration {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
}
.gi-label {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.gi-logo-outer {
  cursor: default;
  display: inline-block;
  transition: transform 300ms cubic-bezier(0.34, 1.5, 0.64, 1), filter 300ms ease;
}
.gi-logo-outer:hover {
  transform: scale(1.1);
  filter:
    drop-shadow(0 2px 8px rgba(66,133,244,0.28))
    drop-shadow(0 2px 6px rgba(251,188,5,0.22))
    drop-shadow(0 2px 5px rgba(234,67,53,0.18));
}
.gi-logo-outer:hover .gi-logo-inner {
  animation-play-state: paused;
}
.gi-logo-inner {
  display: inline-block;
  animation: googleOscillate 3s ease-in-out infinite;
  transform-origin: center 80%;
}
.gi-shimmer-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 3px;
}
.gi-shimmer-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.72) 50%,
    transparent 100%
  );
  animation: shimmerSweep 2.6s ease-in-out infinite;
  pointer-events: none;
}
.gl {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2.5px;
  display: inline-block;
}
.gl.g1 { color: #4285F4; text-shadow: 0 3px 12px rgba(66,133,244,0.22); }
.gl.o1 { color: #EA4335; text-shadow: 0 3px 12px rgba(234,67,53,0.22); }
.gl.o2 { color: #FBBC05; text-shadow: 0 3px 12px rgba(251,188,5,0.28); }
.gl.g2 { color: #4285F4; text-shadow: 0 3px 12px rgba(66,133,244,0.22); }
.gl.l1 { color: #34A853; text-shadow: 0 3px 12px rgba(52,168,83,0.22); }
.gl.e1 { color: #EA4335; text-shadow: 0 3px 12px rgba(234,67,53,0.22); }

@keyframes googleOscillate {
  0%   { transform: rotate(-2deg); }
  50%  { transform: rotate(2deg); }
  100% { transform: rotate(-2deg); }
}
@keyframes shimmerSweep {
  0%   { left: -70%; }
  100% { left: 140%; }
}

.gi-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.gi-badge {
  font-size: 0.63rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.gi-badge-blue  { background: rgba(66,133,244,0.1);  color: var(--primary);   border: 1px solid rgba(66,133,244,0.22); }
.gi-badge-green { background: rgba(52,168,83,0.1);   color: var(--secondary); border: 1px solid rgba(52,168,83,0.22);  }

/* Hero trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.hero-trust p { font-size: 0.8rem; color: rgba(255,255,255,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.3); margin: 0; }
.trust-avatars { display: flex; align-items: center; }
.tav {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; color: #fff;
  margin-left: -6px;
}
.tav:first-child { margin-left: 0; }
.tav-plus {
  background: var(--bg-alt);
  color: var(--text-sec);
  font-size: 0.55rem;
  border: 2px solid var(--card-bd);
}

/* ===================================================
   REPLY CARD  (Hero visual)
   =================================================== */
.hero-visual {
  position: relative;
  z-index: 1;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* 3D Logo */
.logo3d-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}
.logo3d-wrap::before {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.18) 0%, transparent 70%);
  filter: blur(22px);
  transform: translateY(12px) scaleX(0.85);
  z-index: 0;
  pointer-events: none;
}
.logo3d-glow {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,188,5,0.28) 0%, rgba(66,133,244,0.16) 40%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
#logoCanvas { display: none; }
.hero-logo-img {
  display: block;
  width: 300px; height: 300px;
  object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0px 20px 40px rgba(66,133,244,0.30));
  animation: heroLogoFloat 4s ease-in-out infinite;
  will-change: transform;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Reply card wrapper — keeps float-stats positioned relative to card area */
.hero-card-wrap {
  position: relative;
  width: 100%;
}
.reply-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--card-bd);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: rotate(1.8deg);
  transition: transform 350ms, box-shadow 350ms;
}
.reply-card:hover { transform: rotate(0deg); box-shadow: 0 28px 72px rgba(0,0,0,0.13); }
.rc-biz-bar {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--card-bd);
  background: var(--bg-alt);
}
.rc-biz-icon { font-size: 1.4rem; }
.rc-biz-name { font-weight: 700; font-size: 0.85rem; color: var(--text); }
.rc-biz-rating { font-size: 0.7rem; color: var(--text-sec); margin-top: 1px; }
.rc-google-g {
  margin-left: auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
}
.rc-review { padding: 13px 16px; border-bottom: 1px solid var(--card-bd); }
.rc-reviewer { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.rc-av {
  width: 27px; height: 27px; border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.72rem; flex-shrink: 0;
}
.rc-rv-name  { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.rc-rv-stars { font-size: 0.68rem; }
.rc-rv-date  { margin-left: auto; font-size: 0.68rem; color: var(--text-light); }
.rc-rv-text  { font-size: 0.78rem; color: var(--text-sec); line-height: 1.55; }
.rc-response { padding: 13px 16px; border-bottom: 1px solid var(--card-bd); }
.rc-ai-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 600; color: var(--primary);
  margin-bottom: 7px;
}
.rc-ai-dot {
  width: 6px; height: 6px;
  background: var(--secondary); border-radius: 50%;
  animation: pip-blink 1.5s ease-in-out infinite;
}
.rc-resp-text { font-size: 0.76rem; color: var(--text); line-height: 1.6; }
.rc-resp-actions { display: flex; gap: 7px; margin-top: 10px; }
.rc-btn-publish {
  background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 600;
  padding: 5px 12px; border-radius: var(--radius-pill);
  transition: background 180ms;
}
.rc-btn-publish:hover { background: var(--primary-dk); }
.rc-btn-edit {
  color: var(--text-sec); font-size: 0.7rem; font-weight: 500;
  padding: 5px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--card-bd);
  transition: border-color 180ms, color 180ms;
}
.rc-btn-edit:hover { border-color: var(--primary); color: var(--primary); }
.rc-footer-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  font-size: 0.68rem; color: var(--text-light);
  background: var(--bg-alt);
}
.rc-pending-dot {
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pip-blink 2s ease-in-out infinite;
}

/* Float stats */
.float-stat {
  position: absolute;
  background: #fff;
  border: 1px solid var(--card-bd);
  border-radius: var(--radius);
  padding: 9px 13px;
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: floatBob 4s ease-in-out infinite;
  opacity: 0;
  will-change: transform;
}
.fs1 { bottom: -18px; left: -24px; animation-delay: 0s; }
.fs2 { top: -14px;   right: -16px; animation-delay: 1.9s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ===================================================
   FEATURES — BENTO GRID
   4-col grid, 6 cards, 0 empty cells:
     Row 1: Card1 (span 3) + Card2 (span 1)
     Row 2: Card3 (span 1) + Card4 (span 3)
     Row 3: Card5 (span 2) + Card6 (span 2)
   =================================================== */
.features { padding: 120px 24px; background: var(--bg-alt); }
.features-inner { max-width: 1160px; margin: 0 auto; }
.features-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fcard:nth-child(1) { grid-column: span 3; }
.fcard:nth-child(2) { grid-column: span 1; }
.fcard:nth-child(3) { grid-column: span 1; }
.fcard:nth-child(4) { grid-column: span 3; }
.fcard:nth-child(5) { grid-column: span 2; }
.fcard:nth-child(6) { grid-column: span 2; }

.fcard {
  background: #fff;
  border: 1px solid var(--card-bd);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow 240ms, transform 240ms, border-color 240ms;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 13px;
}
.fcard:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
  border-color: rgba(66,133,244,0.22);
}
.fcard h3 { font-size: 1.02rem; }
.fcard p  { font-size: 0.86rem; line-height: 1.62; }

/* Wide cards 1+4: horizontal two-column */
.fcard.fcard-wide {
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  padding: 24px;
}
.fcard-content {
  flex: 1;
  display: flex; flex-direction: column; gap: 11px;
}
.fcard-visual {
  flex: 0 0 auto;
  width: 195px;
  display: flex; flex-direction: column; gap: 7px;
  align-self: center;
}

/* Icon + sub-label */
.fcard-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.fcard-icon-label { display: flex; align-items: center; gap: 8px; }
.fcard-sub-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-light);
}

/* Card 1 visual: review to response flow */
.fcard-visual-response {
  background: var(--bg-alt);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-sm);
  padding: 11px;
  display: flex; flex-direction: column; gap: 7px;
}
.fv-review, .fv-reply {
  background: #fff;
  border: 1px solid var(--card-bd);
  border-radius: 7px;
  padding: 7px 9px;
}
.fv-stars  { font-size: 0.6rem; }
.fv-text   { font-size: 0.68rem; color: var(--text); font-weight: 500; margin-top: 2px; line-height: 1.4; }
.fv-arrow  {
  text-align: center;
  font-size: 0.6rem; font-weight: 700; color: var(--primary);
  background: rgba(66,133,244,0.08);
  border-radius: 4px;
  padding: 3px 6px;
  align-self: center;
}
.fv-reply-label { font-size: 0.6rem; font-weight: 600; color: var(--secondary); margin-bottom: 3px; }
.fv-reply-text  { font-size: 0.64rem; color: var(--text-sec); line-height: 1.45; }

/* Card 1 tone badges */
.fcard-tone-row { display: flex; gap: 5px; flex-wrap: wrap; margin-top: auto; }
.ftone {
  font-size: 0.67rem; font-weight: 600;
  padding: 3px 9px; border-radius: var(--radius-pill);
}
.ftone-pos { background: var(--bg-green); color: var(--secondary); }
.ftone-mid { background: var(--bg-yellow); color: #b06000; }
.ftone-neg { background: var(--bg-red);   color: var(--danger); }

/* Card 4 visual: star rating bars — chart on left */
.fcard:nth-child(4) .fcard-visual { order: -1; width: 200px; }
.fcard-visual-chart {
  background: var(--bg-alt);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.fv-chart { display: flex; flex-direction: column; gap: 6px; }
.fv-bar-row { display: flex; align-items: center; gap: 5px; }
.fv-bar-label { font-size: 0.55rem; width: 55px; flex-shrink: 0; white-space: nowrap; }
.fv-bar-track { flex: 1; height: 6px; background: var(--card-bd); border-radius: 3px; overflow: hidden; }
.fv-bar-fill  { height: 100%; border-radius: 3px; }
.fv-bar-count { font-size: 0.56rem; font-weight: 600; color: var(--text-sec); min-width: 26px; text-align: right; }

/* Card 2: style tags */
.fcard-tags { display: flex; flex-direction: column; gap: 5px; margin-top: auto; }
.ftag {
  font-size: 0.72rem; font-weight: 500;
  padding: 5px 11px; border-radius: var(--radius-pill);
  background: var(--bg-alt); border: 1px solid var(--card-bd);
  color: var(--text-sec);
  display: inline-flex; align-items: center; gap: 6px;
}
.ftag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary); flex-shrink: 0;
}

/* Card 3: location list */
.fcard-locations { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.floc { display: flex; align-items: center; gap: 7px; font-size: 0.73rem; color: var(--text-sec); }
.floc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* Card 5: flag row */
.fcard-langs { display: flex; gap: 5px; margin-top: auto; }
.flang { font-size: 1.25rem; }

/* Card 6: notification feed */
.fcard-notif { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.fnotif {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; color: var(--text-sec);
  background: var(--bg-alt); border: 1px solid var(--card-bd);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
}
.fnotif-icon { font-size: 0.82rem; flex-shrink: 0; }

/* ===================================================
   STATS SECTION
   =================================================== */
.stats-section { padding: 120px 24px; background: var(--bg); }
.stats-inner { max-width: 1100px; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--card-bd);
  border-left: 4px solid var(--sc, var(--primary));
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow 240ms, transform 240ms;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-num {
  font-size: 2.8rem; font-weight: 800;
  color: var(--sc, var(--primary));
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 10px;
}
.stat-text   { font-size: 0.86rem; line-height: 1.58; color: var(--text-sec); margin-bottom: 10px; }
.stat-source { font-size: 0.66rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.03em; }

/* ===================================================
   BEFORE / AFTER
   =================================================== */
.before-after { padding: 120px 24px; background: var(--bg-alt); }
.ba-container {
  max-width: 960px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}
.ba-card {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.ba-card--after { border-color: rgba(52,168,83,0.3); box-shadow: var(--shadow-green); }
.ba-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 11px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.ba-label--before { background: var(--bg-red);   color: var(--danger);    }
.ba-label--after  { background: var(--bg-green);  color: var(--secondary); }
.biz-listing { display: flex; flex-direction: column; gap: 12px; }
.biz-listing-top { display: flex; align-items: center; gap: 10px; }
.biz-emoji { font-size: 1.4rem; }
.biz-listing-name { font-weight: 700; font-size: 0.88rem; }
.biz-listing-cat  { font-size: 0.72rem; color: var(--text-sec); }
.biz-listing-rating { display: flex; align-items: center; gap: 7px; }
.biz-score { font-size: 1.55rem; font-weight: 800; color: var(--text); line-height: 1; }
.biz-score--up { color: var(--secondary); }
.biz-stars-row { font-size: 0.78rem; }
.biz-count { font-size: 0.73rem; color: var(--text-sec); }
.biz-rr { display: flex; flex-direction: column; gap: 5px; }
.biz-rr-track { height: 7px; background: var(--bg-alt); border-radius: 4px; overflow: hidden; }
.biz-rr-fill { height: 100%; background: var(--secondary); border-radius: 4px; }
.biz-rr-fill--full { }
.biz-rr-label { font-size: 0.7rem; font-weight: 500; }
.biz-rr-bad  { color: var(--danger); }
.biz-rr-good { color: var(--secondary); }
.biz-sample-review {
  background: var(--bg-alt); border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.76rem; color: var(--text-sec);
  display: flex; flex-direction: column; gap: 4px;
}
.bsr-stars    { font-size: 0.72rem; }
.bsr-bad      { }
.bsr-good     { }
.bsr-no-reply { color: var(--danger);    font-size: 0.68rem; }
.bsr-has-reply{ color: var(--secondary); font-size: 0.68rem; font-weight: 500; }
.ba-arrow-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ba-arrow { transition: transform 280ms; }
.ba-arrow:hover { transform: scale(1.1); }
.ba-duration { font-size: 0.7rem; font-weight: 600; color: var(--primary); }

/* ===================================================
   DEMO SECTION — Interactive form
   =================================================== */
.demo-section { padding: 120px 24px; background: var(--bg); }
.demo-container { max-width: 680px; margin: 0 auto; }

.demo-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form card */
.demo-form-card {
  background: #fff;
  border: 1px solid var(--card-bd);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.demo-form-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.demo-form-icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  background: var(--bg-blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.demo-form-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.demo-form-sub   { font-size: 0.78rem; color: var(--text-sec); margin-top: 3px; }

.demo-form-fields { display: flex; flex-direction: column; gap: 16px; }
.demo-field       { display: flex; flex-direction: column; gap: 6px; }
.demo-label       { font-size: 0.82rem; font-weight: 600; color: var(--text); }

.demo-input, .demo-textarea {
  border: 1.5px solid var(--card-bd);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  width: 100%;
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
  resize: none;
}
.demo-input:focus, .demo-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(66,133,244,0.12);
}
.demo-textarea::placeholder, .demo-input::placeholder {
  color: var(--text-light);
}

.demo-stars { display: flex; gap: 6px; }
.demo-star {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 180ms, opacity 180ms, filter 180ms;
  background: none; border: none; padding: 2px; line-height: 1;
}
.demo-star:hover { transform: scale(1.25); }
.demo-star.active { opacity: 1; filter: none; }

.demo-gen-btn { width: 100%; justify-content: center; }

/* Response card */
.demo-response-card {
  background: #fff;
  border: 1px solid var(--card-bd);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 16px;
  display: none;
}
.drc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drc-ai-badge {
  font-size: 0.72rem; font-weight: 600;
  color: var(--primary); background: var(--bg-blue);
  padding: 4px 11px; border-radius: var(--radius-pill);
}
.drc-google-g {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.drc-text {
  font-size: 0.93rem; color: var(--text); line-height: 1.72;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
}
.drc-foxyrep-tag {
  font-size: 0.8rem; color: var(--text-sec);
  font-style: italic; text-align: center;
}
.drc-cta { margin-top: 4px; }

.demo-hint {
  font-size: 0.76rem; color: var(--text-light);
  text-align: center; margin-top: 16px;
}

.loader-spin {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.75s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================================================
   PRICING
   =================================================== */
.pricing { padding: 120px 24px; background: var(--bg-alt); }
.pricing-container { max-width: 820px; margin: 0 auto; }
.urgency-banner {
  text-align: center; font-size: 0.84rem; color: var(--text-sec);
  background: #fff; border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 10px 20px; margin-bottom: 28px;
}

/* Mensuel / Annuel toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.ptog-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 200ms;
  cursor: default;
}
.ptog-label.active { color: var(--text); font-weight: 600; }
.ptog-switch {
  width: 46px; height: 26px;
  background: var(--card-bd);
  border-radius: 13px;
  position: relative;
  flex-shrink: 0;
  transition: background 250ms;
  cursor: pointer;
}
.ptog-switch.active { background: var(--primary); }
.ptog-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.22);
  transition: transform 260ms cubic-bezier(0.34, 1.5, 0.64, 1);
}
.ptog-switch.active .ptog-thumb { transform: translateX(20px); }
.ptog-save-badge {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 5px;
  vertical-align: middle;
}

/* Single plan */
.pricing-single {
  max-width: 500px;
  margin: 0 auto;
}
.p-annual-note {
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 500;
  margin-top: -10px;
  margin-bottom: 6px;
}
.p-card {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: 16px; overflow: hidden;
  transition: box-shadow 240ms, transform 240ms;
}
.p-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.p-card--pro { border-color: var(--primary); box-shadow: var(--shadow-blue); }
.p-card--pro:hover { box-shadow: 0 12px 44px rgba(66,133,244,0.24); }
.p-popular-badge {
  background: var(--primary); color: #fff; text-align: center;
  font-size: 0.7rem; font-weight: 700; padding: 6px; letter-spacing: 0.02em;
}
.p-card-inner { padding: 26px 22px; }
.p-card-inner--pro { padding: 22px; }
.p-plan { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-sec); margin-bottom: 10px; }
.p-price-wrap { display: flex; align-items: baseline; gap: 3px; }
.p-amount   { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.p-currency { font-size: 1.2rem; font-weight: 600; color: var(--text); }
.p-period   { font-size: 0.76rem; color: var(--text-sec); margin-top: 4px; margin-bottom: 18px; line-height: 1.5; }
.p-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.p-feat { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--text-sec); }
.p-feat--pro { color: var(--text); font-weight: 500; }
.p-check { color: var(--secondary); font-weight: 700; }
.p-x { color: var(--danger); }
.btn-pro { background: var(--primary); }
.p-guarantees { margin-top: 12px; }
.p-guarantees p { font-size: 0.76rem; color: var(--secondary); text-align: center; }
.p-fine { font-size: 0.68rem !important; color: var(--text-light) !important; }

/* ===================================================
   PRICING 6 — minimal centered card (vanilla port)
   =================================================== */
.p6-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

/* "Popular" pill above card */
.p6-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(66,133,244,0.10), rgba(52,168,83,0.10));
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(66,133,244,0.22);
  letter-spacing: 0.02em;
}

/* Card */
.p6-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border: 1px solid var(--card-bd);
  border-top: 3px solid var(--primary);   /* accent top bar */
  border-radius: 16px;
  padding: 28px 28px 20px;
  box-shadow:
    0 0 0 1px rgba(66,133,244,0.06),
    0 4px 12px rgba(0,0,0,0.05),
    0 20px 48px rgba(0,0,0,0.07);
}

/* Plan label */
.p6-plan-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Price row  €  30  /mois */
.p6-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}
.p6-currency {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  padding-top: 10px;
  line-height: 1;
}
.p6-amount {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.p6-suffix {
  align-self: flex-end;
  font-size: 0.85rem;
  color: var(--text-sec);
  padding-bottom: 8px;
}

/* Sub-price texts */
.p6-period {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-sec);
  line-height: 1.5;
  margin-bottom: 4px;
}
.p6-annual-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 4px;
}

/* Feature lists */
.p6-feat-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.p6-feat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

/* Check icon (Lucide Check — stroke only) */
.p6-check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--secondary);
  stroke: currentColor;
}

/* Separator between groups */
.p6-sep {
  border: none;
  border-top: 1px solid var(--card-bd);
  margin: 0;
}

/* CTA wrapper */
.p6-cta {
  margin-top: 24px;
  margin-bottom: 0;
}

/* Guarantee + fine print */
.p6-guarantee {
  text-align: center;
  font-size: 0.76rem;
  color: var(--secondary);
  margin-top: 14px;
}
.p6-fine {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 4px;
  min-height: 1.2em;
}

/* Hover lift */
.p6-card:hover {
  box-shadow:
    0 0 0 1px rgba(66,133,244,0.12),
    0 6px 20px rgba(0,0,0,0.07),
    0 24px 52px rgba(0,0,0,0.09);
  transform: translateY(-2px);
  transition: box-shadow 240ms, transform 240ms;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials { padding: 120px 24px; background: var(--bg); overflow: hidden; }
.testimonials .section-hd { margin-bottom: 52px; }
.testimonials .section-hd p {
  color: var(--text-sec);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 8px auto 0;
  line-height: 1.65;
}

/* ── Columns outer — fade top/bottom like the React demo ── */
.tc-outer {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-height: 700px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
}

/* Each column clips its track */
.tc-col {
  flex: 0 0 300px;
  overflow: hidden;
}
.tc-col--md { display: none; }
.tc-col--lg { display: none; }

@media (min-width: 640px)  { .tc-col--md { display: block; } }
@media (min-width: 1024px) { .tc-col--lg { display: block; } }

/* Scrolling track — translateY 0 → -50% loops the 2× duplication */
.tc-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: tc-scroll linear infinite;
  will-change: transform;
}
.tc-outer:hover .tc-track { animation-play-state: paused; }

@keyframes tc-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* Individual card */
.tc-card {
  background: #fff;
  border: 1px solid var(--card-bd);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(66,133,244,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 300px;
  flex-shrink: 0;
}
.tc-stars { font-size: 0.78rem; letter-spacing: 1px; }
.tc-text  {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.tc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--card-bd);
}
.tc-name { font-size: 0.82rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.tc-role { font-size: 0.7rem;  color: var(--text-sec); line-height: 1.3; }

@media (prefers-reduced-motion: reduce) {
  .tc-track { animation: none; }
}

/* ===================================================
   COMPARISON TABLE
   =================================================== */
.comparison { padding: 120px 24px; background: var(--bg-alt); }
.comp-wrap { max-width: 840px; margin: 0 auto; }
.comp-table {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
}
.comp-row:not(:last-child) { border-bottom: 1px solid var(--card-bd); }
.comp-cell { padding: 13px 18px; font-size: 0.86rem; display: flex; align-items: center; }
.comp-head .comp-cell { font-weight: 700; font-size: 0.8rem; background: var(--bg-alt); }
.comp-label   { color: var(--text); font-weight: 500; }
.comp-before  { color: var(--danger); }
.comp-before-h{ color: var(--danger); }
.comp-after   { color: var(--secondary); font-weight: 500; }
.comp-after-h { color: var(--secondary); }

/* ===================================================
   FAQ
   =================================================== */
.faq-section { padding: 120px 24px; background: var(--bg); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--card-bd); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 20px 0;
  font-size: 0.93rem; font-weight: 600; color: var(--text); text-align: left;
  transition: color 180ms;
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  font-size: 1.2rem; font-weight: 300; color: var(--text-sec);
  flex-shrink: 0; line-height: 1;
  transition: transform 250ms;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding-bottom: 16px; }
.faq-a p { font-size: 0.87rem; line-height: 1.72; color: var(--text-sec); }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 120px 24px;
  background: linear-gradient(140deg, #1a73e8 0%, #4285F4 45%, #6fa8f8 100%);
  text-align: center;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-section .eyebrow {
  background: rgba(255,255,255,0.2);
  color: #fff; border: 1px solid rgba(255,255,255,0.28);
}
.cta-section h2 { color: #fff; margin: 14px 0 16px; }
.cta-sub { color: rgba(255,255,255,0.87); font-size: 1rem; line-height: 1.65; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-section .btn-primary {
  background: #fff; color: var(--primary); font-weight: 700;
}
.cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.93);
  box-shadow: 0 6px 22px rgba(0,0,0,0.18); transform: translateY(-1px);
}
.cta-section .btn-ghost-line {
  color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.38);
}
.cta-section .btn-ghost-line:hover {
  color: #fff; border-color: #fff; background: rgba(255,255,255,0.1);
}
.cta-fine { font-size: 0.76rem; color: rgba(255,255,255,0.68); margin-top: 16px; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--bg-alt); border-top: 1px solid var(--card-bd); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 44px 24px 28px;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px;
}
.footer-brand p { font-size: 0.8rem; color: var(--text-sec); margin-top: 7px; }
.footer-logo { color: var(--text); }
.footer-links-row { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-links-row a { font-size: 0.8rem; color: var(--text-sec); transition: color 180ms; }
.footer-links-row a:hover { color: var(--primary); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 24px;
  border-top: 1px solid var(--card-bd);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 0.73rem; color: var(--text-light); flex-wrap: wrap;
}

/* ===================================================
   STICKY CTA — mobile
   =================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: 12px 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--card-bd);
  display: none;
  transform: translateY(100%);
  transition: transform 300ms;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn { width: 100%; justify-content: center; }

/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.reveal-d1 { transition-delay: 80ms; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .features-bento { grid-template-columns: repeat(2, 1fr); }
  .fcard:nth-child(1),
  .fcard:nth-child(4) { grid-column: span 2; }
  .fcard:nth-child(2),
  .fcard:nth-child(3),
  .fcard:nth-child(5),
  .fcard:nth-child(6) { grid-column: span 1; }
  .fcard.fcard-wide { flex-direction: column; }
  .fcard-visual { width: 100%; order: 0 !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-container { grid-template-columns: 1fr; gap: 16px; }
  .ba-arrow-wrap { flex-direction: row; }
  .demo-reviews-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 20px 60px;
    gap: 28px; min-height: auto;
  }
  .hero-visual { display: none; }
  .hero-line { font-size: clamp(1.95rem, 7vw, 2.6rem); }
  .nav-links, .nav-right { display: none; }
  .burger { display: flex; margin-left: auto; }
  .features-bento { grid-template-columns: 1fr; }
  .fcard:nth-child(n) { grid-column: span 1; }
  .fcard.fcard-wide { flex-direction: column; }
  .fcard-visual { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .comp-row { grid-template-columns: 1fr 1fr; }
  .comp-label, .comp-label-h { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .sticky-cta { display: block; }
  .demo-form-card { padding: 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-ghost-line { justify-content: center; }
}

/* ========================================================
   ONBOARDING MODAL
   ======================================================== */
.ob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32,33,36,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ob-overlay.open {
  opacity: 1;
}

.ob-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 480px;
  padding: 36px 36px 32px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.ob-overlay.open .ob-modal {
  transform: translateY(0) scale(1);
}

.ob-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f3f4;
  border-radius: 50%;
  font-size: 14px;
  color: #5f6368;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.ob-close:hover { background: #e8eaed; }

.ob-logo {
  font-size: 18px;
  font-weight: 700;
  color: #4285F4;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  display: flex; align-items: center; gap: 8px;
}

.ob-progress-track {
  height: 4px;
  background: #e8eaed;
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.ob-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4285F4, #34A853);
  border-radius: 2px;
  width: 50%;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.ob-panel { animation: obFadeUp 0.22s ease both; }

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

.ob-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #4285F4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ob-title {
  font-size: 22px;
  font-weight: 700;
  color: #202124;
  margin: 0 0 6px;
  letter-spacing: -0.4px;
}

.ob-desc {
  font-size: 14px;
  color: #5f6368;
  margin: 0 0 22px;
  line-height: 1.55;
}

.ob-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.ob-field { display: flex; flex-direction: column; gap: 6px; }

.ob-label {
  font-size: 13px;
  font-weight: 600;
  color: #202124;
}

.ob-req { color: #EA4335; margin-left: 2px; }

.ob-optional {
  font-weight: 400;
  color: #80868b;
  font-size: 12px;
}

.ob-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e8eaed;
  border-radius: 10px;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  color: #202124;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  outline: none;
}
.ob-input::placeholder { color: #adb5bd; }
.ob-input:focus {
  border-color: #4285F4;
  box-shadow: 0 0 0 3px rgba(66,133,244,0.12);
}
.ob-input.ob-error {
  border-color: #EA4335;
  box-shadow: 0 0 0 3px rgba(234,67,53,0.1);
}

.ob-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ob-option {
  flex: 1;
  min-width: 90px;
  padding: 9px 12px;
  border: 1.5px solid #e8eaed;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  color: #5f6368;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  text-align: center;
  font-weight: 500;
}
.ob-option:hover {
  border-color: #4285F4;
  color: #4285F4;
  background: #f0f4ff;
}
.ob-option.active {
  border-color: #4285F4;
  background: #e8f0fe;
  color: #1a73e8;
  font-weight: 600;
}

.ob-signature-preview {
  padding: 10px 14px;
  background: #f8f9fa;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  font-size: 14px;
  color: #202124;
  font-style: italic;
}
.ob-signature-preview em { font-style: normal; font-weight: 600; color: #1a73e8; }

.ob-signature-hint {
  font-size: 12px;
  color: #80868b;
  margin: 4px 0 0;
}

.ob-btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
}

.ob-btn-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ob-btn-row .btn-ghost-line {
  flex-shrink: 0;
  padding: 13px 18px;
  font-size: 14px;
}
.ob-btn-row .ob-btn {
  flex: 1;
}

/* Success screen */
.ob-success-panel {
  text-align: center;
}

.ob-success-icon {
  font-size: 52px;
  margin-bottom: 12px;
  display: block;
  animation: obBounce 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes obBounce {
  from { transform: scale(0.4) rotate(-10deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

.ob-summary {
  background: #f8f9fa;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0 24px;
  text-align: left;
}

.ob-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  gap: 12px;
}
.ob-sum-row:not(:last-child) { border-bottom: 1px solid #e8eaed; }

.ob-sum-key {
  font-size: 13px;
  color: #5f6368;
  font-weight: 500;
  flex-shrink: 0;
}

.ob-sum-val {
  font-size: 13px;
  color: #202124;
  font-weight: 600;
  text-align: right;
}

.ob-fine-note {
  margin-top: 12px;
  font-size: 12px;
  color: #80868b;
  text-align: center;
}

@media (max-width: 520px) {
  .ob-modal { padding: 28px 20px 24px; }
  .ob-options { flex-direction: column; }
  .ob-option { min-width: unset; }
  .ob-btn-row { flex-direction: column-reverse; }
  .ob-btn-row .btn-ghost-line { width: 100%; justify-content: center; }
}

/* ===================================================
   PAYMENT FORM
   =================================================== */
.pay-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f8ff 100%);
  border: 1px solid rgba(66,133,244,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  gap: 12px;
}
.pay-badge-name { font-size: 15px; font-weight: 700; color: #202124; }
.pay-badge-desc { font-size: 12px; color: #5f6368; margin-top: 3px; }
.pay-badge-price {
  font-size: 22px; font-weight: 800; color: #4285F4;
  white-space: nowrap; flex-shrink: 0;
}
.pay-badge-price span { font-size: 13px; font-weight: 500; color: #5f6368; }

.pay-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.pay-field { display: flex; flex-direction: column; gap: 6px; }

.pay-card-wrap { position: relative; }
.pay-card-input { padding-right: 60px !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif; letter-spacing: 0.06em; }
.pay-card-brand {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 10px; font-weight: 800; color: #5f6368;
  background: #f1f3f4; border-radius: 4px;
  padding: 3px 7px; letter-spacing: 0.04em;
  pointer-events: none;
}

.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.pay-secure {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #80868b;
  margin-bottom: 16px;
  background: #f8f9fa; border-radius: 8px;
  padding: 10px 13px;
}

/* Processing */
.pay-processing {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 18px;
  min-height: 220px; text-align: center;
}
.pay-spin-circle {
  width: 54px; height: 54px;
  border: 3px solid #e8eaed;
  border-top-color: #4285F4;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
.pay-proc-title { font-size: 17px; font-weight: 700; color: #202124; }
.pay-proc-sub   { font-size: 13px; color: #5f6368; }

/* Success */
.pay-confirmed {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 12px 0; text-align: center;
}
.pay-check-wrap {
  width: 76px; height: 76px;
  animation: obBounce 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.pay-check-svg { width: 76px; height: 76px; }
.pcs-ring {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: drawCircle 0.55s ease forwards 0.1s;
}
.pcs-tick {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: drawTick 0.4s ease forwards 0.55s;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawTick   { to { stroke-dashoffset: 0; } }
.pay-conf-title { font-size: 20px; font-weight: 700; color: #202124; }
.pay-conf-sub   { font-size: 14px; color: #5f6368; line-height: 1.55; max-width: 32ch; }

/* ===================================================
   WIZARD HEADER — step dots
   =================================================== */
.wiz-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8eaed;
  margin-bottom: 4px;
}
.wiz-steps {
  display: flex;
  align-items: flex-start;
}
.wiz-step-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.wiz-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #e8eaed;
  background: #fff; color: #80868b;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 250ms ease;
}
.wiz-dot.wdot-active {
  border-color: #4285F4; background: #4285F4; color: #fff;
}
.wiz-dot.wdot-done {
  border-color: #34A853; background: #34A853; color: #fff;
  font-size: 0;
}
.wiz-dot.wdot-done::after { content: '✓'; font-size: 14px; }
.wiz-step-label { font-size: 11px; color: #80868b; font-weight: 500; }
.wiz-connector {
  flex: 1; height: 2px;
  background: #e8eaed;
  margin-top: 15px;
  min-width: 24px; max-width: 80px;
  position: relative; overflow: hidden;
}
.wiz-connector-fill {
  position: absolute; inset: 0;
  background: #34A853;
  width: 0%;
  transition: width 400ms ease;
}

/* ===================================================
   SELECT STYLED
   =================================================== */
.ob-select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2380868b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ob-select.ob-error { border-color: #EA4335; box-shadow: 0 0 0 3px rgba(234,67,53,0.1); }

/* ===================================================
   RANGE SLIDER
   =================================================== */
.wiz-slider-wrap { display: flex; flex-direction: column; gap: 8px; }
.wiz-slider {
  -webkit-appearance: none;
  width: 100%; height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #4285F4 50%, #e8eaed 50%);
  outline: none; cursor: pointer;
  transition: background 200ms;
}
.wiz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: #4285F4; border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  cursor: pointer; transition: transform 150ms;
}
.wiz-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.wiz-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #4285F4; border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25); cursor: pointer;
}
.wiz-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #80868b; font-weight: 500;
}
.wiz-length-preview {
  font-size: 12px; font-weight: 500; color: #1a73e8;
  background: #e8f0fe; border-radius: 6px;
  padding: 7px 11px; text-align: center;
  margin-top: 2px;
}

/* ===================================================
   TOGGLE SWITCH
   =================================================== */
.wiz-toggle-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  background: #f8f9fa; border: 1px solid #e8eaed;
  border-radius: 10px; padding: 13px 14px;
}
.wiz-toggle-info { flex: 1; }
.wiz-toggle-title { font-size: 13px; font-weight: 600; color: #202124; }
.wiz-toggle-sub   { font-size: 11px; color: #80868b; margin-top: 3px; }
.wiz-toggle {
  width: 46px; height: 26px;
  background: #e8eaed; border-radius: 13px;
  position: relative; cursor: pointer;
  transition: background 250ms; flex-shrink: 0;
}
.wiz-toggle.active { background: #4285F4; }
.wiz-toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.22);
  transition: transform 260ms cubic-bezier(0.34,1.5,0.64,1);
}
.wiz-toggle.active .wiz-toggle-thumb { transform: translateX(20px); }

/* ===================================================
   CONFIRMATION SUMMARY
   =================================================== */
.done-summary {
  background: #f8f9fa; border: 1px solid #e8eaed;
  border-radius: 12px; padding: 6px 16px;
  margin: 16px 0 20px;
}
.done-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 9px 0;
}
.done-row:not(:last-child) { border-bottom: 1px solid #e8eaed; }
.done-row-left { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.done-icon  { font-size: 14px; }
.done-label { font-size: 13px; color: #5f6368; font-weight: 500; }
.done-val   { font-size: 13px; color: #202124; font-weight: 600; text-align: right; }

@media (max-width: 520px) {
  .pay-row { grid-template-columns: 1fr; }
  .wiz-connector { min-width: 16px; max-width: 36px; }
  .done-val { max-width: 52%; }
}

/* ===================================================
   ONBOARDING — field hint
   =================================================== */
.ob-field-hint {
  font-size: 11px; color: #80868b; margin-top: 4px; font-style: italic;
}

/* ===================================================
   DASHBOARD PRO
   =================================================== */
.dash-root {
  position: fixed; inset: 0; z-index: 9500;
  display: flex; flex-direction: column;
  background: #f8f9fa;
  overflow: hidden;
}

/* Topbar */
.dash-topbar {
  height: 76px; background: #fff;
  border-bottom: 1px solid var(--card-bd);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px; gap: 16px;
  flex-shrink: 0;
}
.dash-topbar-logo {
  font-weight: 800; font-size: 1rem; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.dash-pro-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  background: var(--primary); color: #fff;
  padding: 2px 8px; border-radius: 20px;
  text-transform: uppercase;
}
.dash-topbar-right { display: flex; align-items: center; gap: 14px; }
.dash-topbar-user  { font-size: 13px; font-weight: 600; color: var(--text-sec); }
.dash-back-btn {
  font-size: 13px; font-weight: 500; color: var(--text-sec);
  padding: 6px 13px; border-radius: var(--radius-pill);
  border: 1px solid var(--card-bd); background: #fff;
  cursor: pointer; transition: color 160ms, border-color 160ms;
}
.dash-back-btn:hover { color: var(--primary); border-color: var(--primary); }

/* Layout */
.dash-layout {
  flex: 1; display: flex; min-height: 0;
}

/* Sidebar */
.dash-sidebar {
  width: 220px; flex-shrink: 0;
  background: #fff; border-right: 1px solid var(--card-bd);
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow-y: auto; padding: 16px 12px;
}
.dash-nav-list { display: flex; flex-direction: column; gap: 3px; }
.dash-nav-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem; font-weight: 500; color: var(--text-sec);
  text-align: left; cursor: pointer;
  transition: background 160ms, color 160ms;
}
.dash-nav-btn:hover { background: var(--bg-alt); color: var(--text); }
.dash-nav-btn.active { background: var(--bg-blue); color: var(--primary); font-weight: 600; }
.dnb-icon { font-size: 1rem; flex-shrink: 0; }
.dash-sidebar-footer { padding: 12px 4px 4px; }
.dash-plan-pill {
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: var(--bg-blue); border-radius: var(--radius-pill);
  padding: 6px 11px; text-align: center;
}

/* Main content */
.dash-main {
  flex: 1; overflow-y: auto;
  padding: 32px 36px;
}

/* Pages */
.dash-page-hd {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.dash-page-title {
  font-size: 1.5rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
}
.dash-page-sub { font-size: 0.875rem; color: var(--text-sec); margin-top: 4px; }

/* Stats row */
.dash-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 24px;
}
.dstat-card {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 18px 16px;
  display: flex; align-items: center; gap: 14px;
  transition: box-shadow 220ms;
}
.dstat-card:hover { box-shadow: var(--shadow-sm); }
.dsc-ico {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.dsc-val { font-size: 1.5rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.dsc-lbl { font-size: 0.75rem; color: var(--text-sec); margin-top: 3px; }

/* Chart */
.dash-chart-card {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 22px 24px;
  margin-bottom: 20px;
}
.dcc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dcc-header h3 { font-size: 0.95rem; }
.dcc-period { font-size: 0.72rem; color: var(--text-light); }
.dcc-body { height: 200px; }

/* Tips */
.dash-tips { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dash-tip {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; gap: 12px;
}
.dtip-ico { font-size: 1.3rem; flex-shrink: 0; }
.dash-tip strong { font-size: 0.87rem; color: var(--text); display: block; margin-bottom: 4px; }
.dash-tip p { font-size: 0.8rem; color: var(--text-sec); margin: 0; line-height: 1.55; }

/* Form card (shared) */
.dash-form-card {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 20px;
  max-width: 680px;
}
.dfc-title  { font-size: 1rem; font-weight: 700; color: var(--text); }
.dfc-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.dash-form-fields { display: flex; flex-direction: column; gap: 14px; }
.dash-ff { display: flex; flex-direction: column; gap: 5px; }
.dash-lbl { font-size: 13px; font-weight: 600; color: var(--text); }
.dash-hint { font-size: 11px; color: var(--text-light); font-style: italic; }
.dash-inp {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--card-bd);
  border-radius: 9px; font: inherit; font-size: 14px;
  color: var(--text); background: #fff;
  outline: none; transition: border-color 150ms, box-shadow 150ms;
}
.dash-inp:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(66,133,244,0.1); }
.dash-ta { resize: vertical; min-height: 72px; }
.dash-sel {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2380868b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 34px;
}

/* Etablissements */
.dash-etab-form-wrap { margin-bottom: 20px; }
.dash-etab-card {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px; max-width: 680px;
  transition: box-shadow 200ms;
}
.dash-etab-card:hover { box-shadow: var(--shadow-sm); }
.dec-ico { font-size: 1.4rem; flex-shrink: 0; }
.dec-body { flex: 1; }
.dec-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.dec-desc { font-size: 0.78rem; color: var(--text-sec); margin-top: 2px; }
.dec-addr { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }
.dec-del  { font-size: 13px; color: var(--text-light); padding: 5px 9px; border-radius: 6px; cursor: pointer; transition: background 150ms, color 150ms; border: 1px solid transparent; }
.dec-del:hover { background: var(--bg-red); color: var(--danger); border-color: rgba(234,67,53,0.2); }
.dash-empty { text-align: center; padding: 56px 24px; }
.de-ico   { font-size: 2.5rem; margin-bottom: 12px; }
.de-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.de-sub   { font-size: 0.85rem; color: var(--text-sec); max-width: 36ch; margin: 0 auto; }

/* Avis / response */
.dash-response-card {
  background: #fff; border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 20px 22px;
  margin-top: 18px; display: none; flex-direction: column; gap: 14px;
  max-width: 680px;
}
.dash-stars-wrap { display: flex; gap: 4px; }
.dash-copy-btn { align-self: flex-start; }

/* Settings */
.dash-settings-section { display: flex; flex-direction: column; gap: 10px; }
.dss-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); }
.dash-save-ok { font-size: 13px; color: var(--secondary); font-weight: 500; }

/* Billing */
.dash-billing-plan {
  background: linear-gradient(135deg, #e8f0fe, #f0f8ff);
  border: 1px solid rgba(66,133,244,0.22);
  border-radius: 12px; padding: 20px 22px; margin-bottom: 4px;
}
.dbp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dbp-name   { font-size: 1rem; font-weight: 700; color: var(--text); }
.dbp-status { font-size: 13px; color: var(--secondary); font-weight: 600; }
.dbp-price  { font-size: 2.4rem; font-weight: 800; color: var(--primary); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.dbp-per    { font-size: 0.9rem; font-weight: 500; color: var(--text-sec); }
.dbp-renewal{ font-size: 13px; color: var(--text-sec); margin-bottom: 14px; }
.dbp-feats  { display: flex; flex-wrap: wrap; gap: 6px 20px; font-size: 13px; color: var(--text-sec); }
.dash-card-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-alt); border-radius: 10px;
  padding: 12px 14px;
}
.dcr-icon { font-size: 1.4rem; flex-shrink: 0; }
.dcr-num  { font-size: 14px; font-weight: 600; color: var(--text); font-family: monospace; letter-spacing: 0.06em; }
.dcr-exp  { font-size: 12px; color: var(--text-sec); margin-top: 2px; }
.dcr-badge{ margin-left: auto; font-size: 11px; font-weight: 600; color: var(--secondary); background: var(--bg-green); padding: 3px 9px; border-radius: 20px; }
.dash-inv-row {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--card-bd);
  font-size: 13px; color: var(--text-sec); flex-wrap: wrap;
}
.dash-inv-row:last-child { border-bottom: none; }
.inv-ok { color: var(--secondary); font-weight: 600; margin-left: auto; }
.dash-cancel-btn {
  align-self: flex-start; margin-top: 8px;
  font-size: 13px; color: var(--danger); font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid rgba(234,67,53,0.3); background: var(--bg-red);
  cursor: pointer; transition: background 160ms;
}
.dash-cancel-btn:hover { background: rgba(234,67,53,0.14); }

/* Responsive */
@media (max-width: 900px) {
  .dash-sidebar { width: 56px; padding: 14px 6px; }
  .dash-nav-btn span:last-child { display: none; }
  .dash-plan-pill { display: none; }
  .dash-topbar-user { display: none; }
  .dash-stats-row { grid-template-columns: 1fr 1fr; }
  .dash-tips { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dash-main { padding: 20px 16px; }
  .dash-stats-row { grid-template-columns: 1fr 1fr; }
  .dash-sidebar { display: none; }
}

/* ===================================================
   AUTH MODAL
   =================================================== */
.auth-google-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 16px; border-radius: 9px;
  border: 1.5px solid var(--card-bd); background: #fff;
  font: inherit; font-size: 14px; font-weight: 500; color: var(--text);
  cursor: pointer; transition: background 150ms, border-color 150ms, box-shadow 150ms;
}
.auth-google-btn:hover {
  background: var(--bg-alt); border-color: #bbb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.auth-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0; color: var(--text-light); font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--card-bd);
}
.auth-error {
  font-size: 13px; color: var(--danger);
  background: var(--bg-red); border-radius: 8px;
  padding: 9px 12px; margin-bottom: 4px;
}
.auth-switch {
  text-align: center; font-size: 13px; color: var(--text-sec);
  margin-top: 14px; margin-bottom: 0;
}
.auth-switch-btn {
  background: none; border: none; padding: 0;
  font: inherit; font-size: 13px; font-weight: 600;
  color: var(--primary); cursor: pointer;
}
.auth-switch-btn:hover { text-decoration: underline; }
.auth-verify-panel { text-align: center; padding: 8px 0; }
.auth-verify-icon  { font-size: 3rem; margin-bottom: 16px; }

/* ===================================================
   SUBSCRIPTION MODAL
   =================================================== */
.sub-modal { max-width: 420px; }
.sub-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 4px;
}
.sub-title { margin-bottom: 20px; }
.sub-toggle-wrap {
  display: inline-flex; background: #f1f3f4; border-radius: var(--radius-pill);
  padding: 3px; gap: 2px; margin-bottom: 24px;
}
.sub-toggle-btn {
  font: inherit; font-size: 0.82rem; font-weight: 600;
  padding: 6px 18px; border: none; background: transparent;
  border-radius: var(--radius-pill); cursor: pointer; color: var(--text-sec);
  transition: background 150ms, color 150ms, box-shadow 150ms;
  display: flex; align-items: center; gap: 6px;
}
.sub-toggle-active {
  background: #fff; color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.sub-save-badge {
  font-size: 0.68rem; font-weight: 700; background: #e6f4ea;
  color: #137333; padding: 2px 6px; border-radius: 20px;
}
.sub-price-block {
  display: flex; align-items: flex-start; gap: 2px;
  justify-content: center; line-height: 1; margin-bottom: 6px;
}
.sub-currency { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-top: 8px; }
.sub-amount   { font-size: 3.6rem; font-weight: 800; color: var(--text); letter-spacing: -0.04em; }
.sub-period   { font-size: 1rem; font-weight: 500; color: var(--text-sec); align-self: flex-end; margin-bottom: 10px; }
.sub-price-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin: 0 0 22px; }
.sub-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 9px;
}
.sub-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-sec);
}
.sub-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: #e6f4ea; color: #137333;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.sub-later-btn {
  display: block; width: 100%; margin-top: 12px;
  background: transparent; border: none; font: inherit;
  font-size: 0.82rem; color: var(--text-light); cursor: pointer;
  padding: 8px; text-align: center;
  transition: color 150ms;
}
.sub-later-btn:hover { color: var(--text-sec); }
.nav-user-email {
  font-size: 13px; font-weight: 500; color: var(--text-sec);
  max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nav-signout {
  font-size: 13px; font-weight: 500; color: var(--text-light);
  padding: 6px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--card-bd); text-decoration: none;
  transition: color 150ms, border-color 150ms;
}
.nav-signout:hover { color: var(--danger); border-color: rgba(234,67,53,0.3); }

/* ===================================================
   SIGNATURE FONT — "Google" in hero
   =================================================== */
.word-google {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0.01em;
  /* inherits gradient fill from .hero-line.grad */
}

/* ===================================================
   SECTION SLIDE-IN TRANSITIONS
   =================================================== */
.section-anim {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}
.section-anim.section-in {
  opacity: 1;
  transform: none;
}

/* ===================================================
   DYNAMIC ENHANCEMENTS — Repple
   =================================================== */

/* Feature cards — 3D hover tilt */
.fcard {
  transition: transform 280ms cubic-bezier(0.23,1,0.32,1), box-shadow 280ms;
  transform-style: preserve-3d;
  will-change: transform;
}
.fcard:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 20px 48px rgba(66,133,244,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

/* Stat cards — lift & color accent on hover */
.stat-card {
  transition: transform 260ms cubic-bezier(0.23,1,0.32,1), box-shadow 260ms;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.stat-card:hover .stat-num {
  color: var(--sc);
}

/* Testimonial cards — subtle lift */
.testi-card {
  transition: transform 260ms cubic-bezier(0.23,1,0.32,1), box-shadow 260ms;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

/* Hero visual — floating card animation */
.hero-card-wrap {
  animation: card-float 5s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Float stats — subtle entrance pulse */
.float-stat {
  animation: stat-pulse 3s ease-in-out infinite;
}
.fs2 { animation-delay: 1.5s; }
@keyframes stat-pulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50%       { box-shadow: 0 12px 32px rgba(66,133,244,0.2); }
}

/* Stagger delays for bento cards */
.features-bento .fcard:nth-child(1) { transition-delay: 0ms; }
.features-bento .fcard:nth-child(2) { transition-delay: 80ms; }
.features-bento .fcard:nth-child(3) { transition-delay: 140ms; }
.features-bento .fcard:nth-child(4) { transition-delay: 60ms; }
.features-bento .fcard:nth-child(5) { transition-delay: 120ms; }
.features-bento .fcard:nth-child(6) { transition-delay: 180ms; }

/* Stats grid stagger */
.stats-grid .stat-card:nth-child(1) { transition-delay: 0ms; }
.stats-grid .stat-card:nth-child(2) { transition-delay: 60ms; }
.stats-grid .stat-card:nth-child(3) { transition-delay: 120ms; }
.stats-grid .stat-card:nth-child(4) { transition-delay: 180ms; }
.stats-grid .stat-card:nth-child(5) { transition-delay: 240ms; }
.stats-grid .stat-card:nth-child(6) { transition-delay: 300ms; }

/* Testimonials stagger */
.testi-grid .testi-card:nth-child(1) { transition-delay: 0ms; }
.testi-grid .testi-card:nth-child(2) { transition-delay: 100ms; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 200ms; }

/* Pricing card — subtle glow pulse */
.p-card--pro {
  animation: pro-glow 4s ease-in-out infinite;
}
@keyframes pro-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(66,133,244,0.0), var(--shadow-xl); }
  50%       { box-shadow: 0 0 0 6px rgba(66,133,244,0.07), var(--shadow-xl); }
}

/* FAQ items — slide-down answer */
.faq-a {
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.23,1,0.32,1);
}

/* Comparison table rows — hover highlight */
.comp-row:not(.comp-head):hover .comp-after {
  background: rgba(52,168,83,0.08);
  transition: background 200ms;
}

/* Reply card AI dot — pulse animation */
.rc-ai-dot {
  animation: ai-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes ai-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(52,168,83,0.4); }
  50%       { opacity: 0.7; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(52,168,83,0); }
}

/* BA cards — scale up on hover */
.ba-card {
  transition: transform 280ms cubic-bezier(0.23,1,0.32,1), box-shadow 280ms;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

/* Navbar logo — subtle brand animation */
.nav-logo span {
  background: linear-gradient(125deg, var(--primary) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Urgency banner — flash on load */
.urgency-banner {
  animation: urgency-in 0.6s ease 0.5s both;
}
@keyframes urgency-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===================================================
   EASING TOKENS
   =================================================== */
:root {
  --spring:          cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-strong: cubic-bezier(0.23, 1,    0.32, 1);
  --ease-inout:      cubic-bezier(0.77, 0,    0.175, 1);
}

/* ===================================================
   DYNAMIC ISLAND
   =================================================== */
.dyn-island {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  background: #111;
  border-radius: 100px;
  overflow: hidden;
  cursor: default;
  user-select: none;
  pointer-events: none;
  transition:
    width  0.6s  cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  width: 10px;
  height: 10px;
  opacity: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 32px rgba(0,0,0,0.3),
    0 2px 8px rgba(0,0,0,0.2);
}
.dyn-island.di-show { opacity: 1; }
.dyn-island.di-dot  { width: 10px;  height: 10px; }
.dyn-island.di-pill { width: 138px; height: 34px; }
.dyn-island.di-wide { width: 256px; height: 40px; }

.di-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  height: 100%;
  opacity: 1;
  transition: opacity 0.18s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}
.dyn-island.di-dot .di-inner { opacity: 0; }

.di-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34A853;
  flex-shrink: 0;
  animation: di-pulse 2s ease-in-out infinite;
}
@keyframes di-pulse {
  0%, 100% { opacity: 1;    transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.72); }
}
.di-icon  { font-size: 0.88rem; flex-shrink: 0; line-height: 1; }
.di-label { font-size: 0.76rem; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.di-meta  { font-size: 0.71rem; font-weight: 400; color: rgba(255,255,255,0.48); }

/* ===================================================
   TRUST TICKER
   =================================================== */
.trust-ticker {
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-bd);
  border-bottom: 1px solid var(--card-bd);
  padding: 11px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 9%, black 91%, transparent);
  mask-image: linear-gradient(to right, transparent, black 9%, black 91%, transparent);
}
.trust-ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-go 36s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 26px;
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--text-sec);
  white-space: nowrap;
  border-right: 1px solid var(--card-bd);
}
.ticker-item:last-child { border-right: none; }
.ti-star { font-size: 0.78rem; line-height: 1; }
.ti-score {
  font-size: 0.69rem;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(52,168,83,0.1);
  padding: 2px 7px;
  border-radius: 100px;
}
@keyframes ticker-go {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ===================================================
   SPOTLIGHT CARDS  (cursor-following inner glow)
   =================================================== */
.fcard {
  background:
    radial-gradient(320px circle at var(--sx, -9999px) var(--sy, -9999px),
      rgba(66, 133, 244, 0.055), transparent 65%),
    #fff;
  /* Remove CSS hover transform — JS drives 3D tilt */
  transition: box-shadow 280ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: auto;
}
.fcard:hover {
  transform: none;
  box-shadow: 0 20px 48px rgba(66,133,244,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.stat-card {
  background:
    radial-gradient(260px circle at var(--sx, -9999px) var(--sy, -9999px),
      rgba(66, 133, 244, 0.05), transparent 65%),
    #fff;
}
.testi-card {
  background:
    radial-gradient(280px circle at var(--sx, -9999px) var(--sy, -9999px),
      rgba(66, 133, 244, 0.045), transparent 65%),
    #fff;
}

/* ===================================================
   HERO GRADIENT FADE — glow/lueur transition to features
   Fills the white space between hero and features with
   colored orbs that match the hero's animated background.
   =================================================== */
.hero-gradient-fade {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 320px;
  pointer-events: none;
  z-index: 0; /* Below hero-content (z:1) but above hero-bg (z:0, DOM order) */
  background:
    /* Blue orb — bottom-left */
    radial-gradient(ellipse 65% 110% at 12% 55%,
      rgba(66, 133, 244, 0.22) 0%, transparent 58%),
    /* Green orb — bottom-right */
    radial-gradient(ellipse 55% 90% at 88% 45%,
      rgba(52, 168, 83, 0.17) 0%, transparent 58%),
    /* Yellow center pulse */
    radial-gradient(ellipse 40% 60% at 52% 85%,
      rgba(251, 188, 5, 0.10) 0%, transparent 55%),
    /* Fade to features bg */
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(248, 249, 250, 0.45) 45%,
      rgba(248, 249, 250, 0.80) 72%,
      #f8f9fa 100%
    );
}

/* ===================================================
   FEATURES — top glow continues hero lueur
   =================================================== */
.features { position: relative; }

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 100% at 18% 0%,
      rgba(66, 133, 244, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 42% 80% at 82% 0%,
      rgba(52, 168, 83, 0.08) 0%, transparent 65%);
}
.features-inner { position: relative; z-index: 1; }

/* ===================================================
   FOCUS STATES — visible keyboard navigation rings
   =================================================== */
:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn-primary:focus-visible,
.btn-ghost-line:focus-visible {
  outline-offset: 4px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 4px rgba(66,133,244,0.22);
}
.faq-q:focus-visible {
  outline: none;
  color: var(--primary);
}

/* ===================================================
   PREFERS-REDUCED-MOTION
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-logo-img,
  .hero-card-wrap,
  .float-stat,
  .badge-pip,
  .rc-ai-dot,
  .rc-pending-dot {
    animation: none !important;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .fcard,
  .stat-card,
  .testi-card,
  .ba-card {
    transition: none;
  }
}

/* ===================================================
   TYPOGRAPHY — improved line-heights & weights
   =================================================== */
.section-hd h2,
.features-hd h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
}
.features-hd p,
.section-hd p {
  line-height: 1.7;
  font-size: 1.05rem;
}
.hero-sub {
  line-height: 1.72;
  letter-spacing: 0.005em;
}

/* ===================================================
   STAT CARDS — accent glow under number
   =================================================== */
.stat-card {
  position: relative;
}
.stat-num {
  position: relative;
}
.stat-num::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--sc, var(--primary));
  opacity: 0.55;
  margin-top: 8px;
}

/* ===================================================
   TRUST TICKER — elevated visual treatment
   =================================================== */
.trust-ticker {
  background: linear-gradient(90deg, var(--bg-alt) 0%, #fff 50%, var(--bg-alt) 100%);
  box-shadow: inset 0 1px 0 var(--card-bd), inset 0 -1px 0 var(--card-bd);
  border: none;
}
.ticker-item {
  border-right: none;
  padding: 0 22px;
}
.ticker-item::after {
  content: '·';
  color: var(--card-bd);
  font-size: 1.2rem;
  margin-left: 22px;
}

/* ===================================================
   CTA SECTION — floating orbs
   =================================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0d47a1 0%, #1a73e8 38%, #4285F4 68%, #3c8f66 100%);
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orb-float-1 10s ease-in-out infinite alternate;
}
.cta-section::before {
  width: 500px; height: 500px;
  top: -180px; right: -100px;
  background: radial-gradient(circle,
    rgba(255,255,255,0.10) 0%, transparent 65%);
  filter: blur(40px);
}
.cta-section::after {
  width: 380px; height: 380px;
  bottom: -140px; left: -80px;
  background: radial-gradient(circle,
    rgba(52,168,83,0.25) 0%, transparent 65%);
  filter: blur(50px);
  animation-name: orb-float-2;
  animation-duration: 13s;
}
.cta-inner { position: relative; z-index: 1; }

/* ===================================================
   TESTIMONIALS — quote marks + elevated design
   =================================================== */
.testi-card {
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -14px;
  left: 16px;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testi-text {
  position: relative;
  z-index: 1;
}
.testi-card:hover {
  border-color: rgba(66,133,244,0.22);
}

/* ===================================================
   COMPARISON TABLE — improved row hover
   =================================================== */
.comp-row:not(.comp-head) {
  transition: background 200ms;
}
.comp-row:not(.comp-head):hover {
  background: rgba(66,133,244,0.025);
}
.comp-row:not(.comp-head):hover .comp-after {
  background: rgba(52,168,83,0.10);
  border-radius: 4px;
}

/* ===================================================
   HERO BADGE — improved entrance + prominence
   =================================================== */
.hero-badge {
  box-shadow: 0 2px 12px rgba(66,133,244,0.18);
  transition: box-shadow 200ms, transform 200ms;
}
.hero-badge:hover {
  box-shadow: 0 4px 18px rgba(66,133,244,0.28);
  transform: translateY(-1px);
}

/* ===================================================
   STATS SECTION — subtle top glow bleed
   =================================================== */
.stats-section {
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: radial-gradient(ellipse 50% 100% at 50% 0%,
    rgba(66,133,244,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stats-inner { position: relative; z-index: 1; }

/* ===================================================
   PRICING — glow accent improved
   =================================================== */
.p-card--pro {
  border-width: 1.5px;
}
.p-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(52,168,83,0.12);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===================================================
   BEFORE/AFTER — subtle section glow
   =================================================== */
.before-after {
  position: relative;
}
.before-after::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%,
    rgba(52,168,83,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ===================================================
   FAQ — better hover interaction
   =================================================== */
.faq-item {
  transition: background 200ms;
  border-radius: var(--radius-sm);
  margin: 0 -12px;
  padding: 0 12px;
}
.faq-item:hover {
  background: rgba(66,133,244,0.025);
}
.faq-item.open {
  background: rgba(66,133,244,0.035);
}

/* ===================================================
   FOOTER — subtle top gradient
   =================================================== */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--primary) 0%,
    var(--secondary) 33%,
    var(--accent) 66%,
    var(--danger) 100%
  );
}

/* ===================================================
   PRODUCT SCROLL REVEAL — ContainerScroll port
   =================================================== */
.pss-section {
  background: var(--bg-alt);
  position: relative;
  /* NO overflow:hidden — it clips 3-D projected card edges */
}

/* Desktop: tall container so sticky scroll-driven animation has room */
@media (min-width: 769px) {
  .pss-section { min-height: 200vh; }
  .pss-wrap {
    position: sticky;
    top: 76px;                        /* sit below the 76px sticky navbar */
    height: calc(100vh - 76px);       /* fill remaining viewport below navbar */
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px 24px;
    overflow: visible;
    box-sizing: border-box;
  }
  /* Cap the content column inside the sticky wrap */
  .pss-header,
  .pss-perspective,
  .pss-strip {
    max-width: 1060px;
    width: 100%;
  }
}

/* Short viewports — hide strip so card fits in 100vh */
@media (min-width: 769px) and (max-height: 800px) {
  .pss-header { margin-bottom: 24px; }
  .pss-body   { height: 340px; }
  .pss-strip  { display: none; }
}

/* Mobile: normal flow, no sticky */
@media (max-width: 768px) {
  .pss-section { padding: 60px 24px 40px; }
  .pss-wrap { max-width: 1100px; margin: 0 auto; }
}

/* Header — translateY on scroll (mirrors Framer <Header>) */
.pss-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  will-change: transform;
}
.pss-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin: 8px 0 14px;
  line-height: 1.2;
}
.pss-header p {
  color: var(--text-sec);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* Perspective wrapper */
.pss-perspective {
  perspective: 1000px;
  perspective-origin: 50% 50%;
}

/* 3-D card — rotateX 20→0, scale 1.05→1 */
.pss-card-3d {
  transform-origin: center top;
  transform: rotateX(20deg) scale(1.05);
  will-change: transform;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.06),
    0 8px 16px rgba(0,0,0,0.08),
    0 24px 48px rgba(0,0,0,0.10),
    0 64px 80px rgba(0,0,0,0.08);
  border: 1px solid var(--card-bd);
  background: #fff;
}

/* Browser chrome bar */
.pss-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #f1f3f4;
  border-bottom: 1px solid var(--card-bd);
}
.pss-dots { display: flex; gap: 5px; }
.pss-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.pss-dot-r { background: #ff5f57; }
.pss-dot-y { background: #ffbd2e; }
.pss-dot-g { background: #28c840; }
.pss-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-sec);
  background: #e8eaed;
  padding: 3px 12px;
  border-radius: 20px;
  max-width: 260px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}
.pss-chrome-right { display: flex; align-items: center; gap: 8px; }
.pss-av-mini {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Dashboard body */
.pss-body {
  display: flex;
  height: 400px;
}

/* Sidebar */
.pss-sidebar {
  width: 160px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--card-bd);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pss-sb-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding: 0 4px;
}
.pss-sb-img {
  width: 18px; height: 18px;
  object-fit: contain;
}
.pss-pro-tag {
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}
.pss-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.pss-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  color: var(--text-sec);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.pss-nav-item:hover { background: #f1f3f4; color: var(--text); }
.pss-nav-active {
  background: #e8f0fe;
  color: #4285F4;
  font-weight: 600;
}
.pss-nav-ico { font-size: 0.85rem; }
.pss-sb-plan {
  font-size: 0.65rem;
  color: var(--text-light);
  padding: 8px;
  border-top: 1px solid var(--card-bd);
  margin-top: auto;
}

/* Main area */
.pss-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pss-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--card-bd);
  background: #fff;
}
.pss-main-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.pss-auto-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #34A853;
  background: rgba(52,168,83,0.1);
  padding: 3px 8px;
  border-radius: 20px;
}
.pss-auto-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34A853;
  animation: pss-blink 1.5s ease-in-out infinite;
}
@keyframes pss-blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Stats mini row */
.pss-stats-mini {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--card-bd);
  background: #fafafa;
}
.pss-sm-card {
  flex: 1;
  padding: 8px 12px;
  border-right: 1px solid var(--card-bd);
  text-align: center;
}
.pss-sm-card:last-child { border-right: none; }
.pss-sm-v {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}
.pss-sm-l {
  font-size: 0.58rem;
  color: var(--text-light);
  margin-top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Review feed */
.pss-feed {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.pss-review-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #f1f3f4;
  transition: background 0.15s;
}
.pss-review-row:hover { background: #fafafe; }
.pss-row-active { background: #f8faff; }
.pss-row-muted { opacity: 0.65; }
.pss-rr-av {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pss-rr-body { flex: 1; min-width: 0; }
.pss-rr-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.pss-rr-name { font-size: 0.72rem; font-weight: 700; color: var(--text); }
.pss-rr-stars { font-size: 0.6rem; }
.pss-rr-time { font-size: 0.6rem; color: var(--text-light); margin-left: auto; }
.pss-rr-text { font-size: 0.68rem; color: var(--text-sec); line-height: 1.4; }
.pss-rr-reply {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 5px;
  padding: 5px 8px;
  background: #e8f5e9;
  border-radius: 6px;
  border-left: 2px solid #34A853;
}
.pss-ai-dot {
  width: 12px; height: 12px; min-width: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #34A853);
  margin-top: 1px;
}
.pss-rr-reply-text { font-size: 0.64rem; color: #1e7e34; line-height: 1.4; }
.pss-rr-typing {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 5px;
  padding: 5px 8px;
  background: #e8f0fe;
  border-radius: 6px;
  border-left: 2px solid #4285F4;
}
.pss-typing-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4285F4;
  animation: pss-typing 1.2s ease-in-out infinite;
}
.pss-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.pss-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pss-typing {
  0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}
.pss-rr-status {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.pss-status-done { background: #e6f4ea; color: #1e7e34; }
.pss-status-ai { background: #e8f0fe; color: #4285F4; }
.pss-status-pending { background: #fef7e0; color: #b06000; }

/* Bottom proof strip */
.pss-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 40px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--card-bd);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pss-strip-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--text-sec);
  padding: 0 20px;
}
.pss-strip-item strong { color: var(--text); }
.pss-strip-ico {
  width: 28px; height: 28px;
  background: #f1f3f4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.pss-strip-sep {
  width: 1px;
  height: 28px;
  background: var(--card-bd);
}

/* Mobile — hide sidebar, resize card */
@media (max-width: 768px) {
  .pss-body { height: 360px; }
  .pss-sidebar { display: none; }
  .pss-stats-mini .pss-sm-card:nth-child(3),
  .pss-stats-mini .pss-sm-card:nth-child(4) { display: none; }
  .pss-strip-sep:nth-child(4),
  .pss-strip-sep:nth-child(6) { display: none; }
  .pss-strip-item:nth-child(5),
  .pss-strip-item:nth-child(7) { display: none; }
}
@media (max-width: 540px) {
  .pss-section { padding: 60px 16px 32px; }
  .pss-body { height: 300px; }
  .pss-sm-v { font-size: 0.78rem; }
  .pss-rr-reply-text { font-size: 0.6rem; }
  .pss-strip { flex-direction: column; gap: 12px; }
  .pss-strip-sep { display: none; }
}

/* ===================================================
   METAL BUTTON — vanilla port of MetalButton (React)
   Layers: gradient-border wrapper → inner glow → face
   =================================================== */
.btn-metal-wrap {
  position: relative;
  display: inline-flex;
  border-radius: var(--radius-pill);
  padding: 1.5px;
  cursor: pointer;
  will-change: transform;
  transition:
    transform 250ms cubic-bezier(0.1,0.4,0.2,1),
    box-shadow 250ms cubic-bezier(0.1,0.4,0.2,1);
}
.btn-metal-full {
  width: 100%;
}

/* Shared inner glow layer */
.btn-metal-inner-glow {
  position: absolute;
  inset: 1px;
  border-radius: var(--radius-pill);
  pointer-events: none;
  z-index: 0;
  transition: filter 250ms cubic-bezier(0.1,0.4,0.2,1);
}

/* Shared button face */
.btn-metal-face {
  position: relative;
  z-index: 1;
  margin: 1px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition:
    transform 250ms cubic-bezier(0.1,0.4,0.2,1),
    filter 250ms cubic-bezier(0.1,0.4,0.2,1);
  will-change: transform, filter;
  overflow: hidden;
}
.btn-metal-face.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-metal-face.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-metal-face-full {
  width: calc(100% - 2px);
  justify-content: center;
}

/* Shine flash (visible while pressed) */
.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.28), transparent);
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 300ms;
}

/* ── PRIMARY variant (Google Blue) ── */
.btn-metal-primary {
  background: linear-gradient(to bottom, #0d2a68, #6baef8);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
.btn-metal-primary .btn-metal-inner-glow {
  background: linear-gradient(to bottom, #d8e8ff, #1952c9, #c2d8fd);
}
.btn-metal-primary .btn-metal-face {
  background: linear-gradient(to bottom, #5b9cf6, #1a5fc8);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(12,38,110,0.8);
}

/* Hover */
.btn-metal-primary:hover {
  box-shadow: 0 4px 16px rgba(66,133,244,0.32);
}
.btn-metal-primary:hover .btn-metal-inner-glow {
  filter: brightness(1.08);
}
.btn-metal-primary:hover .btn-metal-face {
  filter: brightness(1.06);
}

/* Pressed state (toggled by JS) */
.btn-metal-wrap.is-pressed {
  transform: translateY(2.5px) scale(0.99) !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15) !important;
}
.btn-metal-wrap.is-pressed .btn-metal-face {
  transform: scale(0.97);
  filter: brightness(0.90) !important;
}
.btn-metal-wrap.is-pressed .btn-shine { opacity: 1; }

/* CTA section override → white face on dark bg */
.cta-section .btn-metal-primary {
  background: linear-gradient(to bottom, #b8d4ff, #e8f1ff);
  box-shadow: 0 3px 14px rgba(0,0,0,0.18);
}
.cta-section .btn-metal-primary .btn-metal-inner-glow {
  background: linear-gradient(to bottom, #fff, #d6e9ff, #fff);
}
.cta-section .btn-metal-primary .btn-metal-face {
  background: linear-gradient(to bottom, #ffffff, #eef5ff);
  color: var(--primary);
  text-shadow: none;
  font-weight: 700;
}
.cta-section .btn-metal-primary:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,0.22);
}
.cta-section .btn-metal-primary .btn-metal-face:hover {
  filter: brightness(0.97);
}

/* ===================================================
   LIQUID GLASS BUTTON — vanilla port of LiquidButton
   SVG filter referenced via backdrop-filter id="glass-distort"
   =================================================== */
.btn-liquid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1);
  will-change: transform;
}
.btn-liquid.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-liquid:hover { transform: scale(1.05); }
.btn-liquid:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Backdrop distortion — uses the SVG #glass-distort filter */
.btn-liquid-distort {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  backdrop-filter: url("#glass-distort") blur(0px);
  -webkit-backdrop-filter: url("#glass-distort") blur(0px);
  z-index: 0;
  pointer-events: none;
}

/* Inset glass shadow — the "lens" outline */
.btn-liquid-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  pointer-events: none;
  z-index: 0;
  box-shadow:
    0 0 6px rgba(0,0,0,0.03),
    0 2px 8px rgba(0,0,0,0.09),
    inset 2px 2px 1px -2.5px rgba(0,0,0,0.75),
    inset -2px -2px 1px -2.5px rgba(0,0,0,0.70),
    inset 1px 1px 1px -0.5px rgba(0,0,0,0.35),
    inset -1px -1px 1px -0.5px rgba(0,0,0,0.35),
    inset 0 0 5px 4px rgba(0,0,0,0.055),
    0 0 10px rgba(255,255,255,0.12);
}

/* Content above the glass layers */
.btn-liquid-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

/* On dark CTA section background */
.cta-section .btn-liquid {
  color: rgba(255,255,255,0.92);
}
.cta-section .btn-liquid-glow {
  box-shadow:
    0 0 6px rgba(255,255,255,0.06),
    0 2px 8px rgba(0,0,0,0.14),
    inset 2px 2px 1px -2.5px rgba(255,255,255,0.25),
    inset -2px -2px 1px -2.5px rgba(255,255,255,0.20),
    inset 0 0 5px 4px rgba(255,255,255,0.06),
    0 0 10px rgba(255,255,255,0.08);
}

/* Fallback for browsers without SVG backdrop-filter (hides distort, keeps glow) */
@supports not (backdrop-filter: url("#glass-distort")) {
  .btn-liquid-distort { display: none; }
}

/* ===================================================
   SCROLLBAR — custom thin Google-blue
   =================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(66,133,244,0.35);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(66,133,244,0.60);
}

/* ===================================================
   SELECTION — Google blue highlight
   =================================================== */
::selection {
  background: rgba(66,133,244,0.20);
  color: var(--primary);
}
