/* ==========================================================================
   JANINE — style.css
   ========================================================================== */

/* ─── FONTS ─────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Futura PT';
  src: url('fonts/84271cfa-205f-47c6-8e88-1e5fa4e29838.woff2') format('woff2'),
       url('/fonts/84271cfa-205f-47c6-8e88-1e5fa4e29838.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --blue:       #5369FF;   /* primary bg */
  --blue-deep:  #011BC8;   /* pricing section */
  --blue-dark:  #0D1560;   /* footer */
  --blue-card:  rgba(255, 255, 255, 0.1);
  --coral:      #FA7268;
  --coral-dark: #E8574C;
  --ink:        #1A1510;   /* dark text (on white sections) */
  --white:      #FFFFFF;
  --off-white:  #F0F2FF;   /* light sections bg */
  --saffron:    #F5A623;
  --muted-blue: rgba(255, 255, 255, 0.55);  /* secondary text on blue */
  --muted-ink:  rgba(26, 21, 16, 0.52);     /* secondary text on white */
  --border-white: rgba(255, 255, 255, 0.15);
  --border-ink:   rgba(26, 21, 16, 0.1);

  /* Typography */
  --ff-display: 'Futura PT', 'Century Gothic', 'Trebuchet MS', 'Arial Narrow', sans-serif;
  --ff-body:    'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:      72px;
  --container:  1200px;
  --pad-x:      clamp(1.25rem, 5vw, 3rem);
  --section-py: clamp(4.5rem, 9vw, 9rem);

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
strong { font-weight: 600; }

/* ─── ACCESSIBILITY ─────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -200%; left: 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--coral); color: var(--ink);
  font-weight: 700; font-size: 0.875rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 10000; transition: top 0.15s ease;
}
.skip-link:focus { top: 0; outline: none; }

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── NAVIGATION ────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
}

.site-header.scrolled {
  background: rgba(83, 105, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-white);
}

.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--pad-x); height: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}

.logo {
  display: inline-flex; align-items: baseline;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: -0.025em;
  line-height: 1; color: var(--white);
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.8; }
.logo-dot {
  color: var(--coral); font-size: 2.25rem;
  line-height: 0; position: relative; top: 5px; margin-left: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 0.375rem; }

.lang-switch {
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--muted-blue); border: 1px solid transparent;
  border-radius: var(--r-sm); transition: color var(--transition), border-color var(--transition);
}
.lang-switch:hover { color: var(--white); border-color: var(--border-white); }

.btn-connect {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  border: 1px solid var(--border-white); border-radius: var(--r-sm);
  transition: border-color var(--transition), background var(--transition);
}
.btn-connect:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }

.btn-nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem; font-weight: 700;
  font-family: var(--ff-display); letter-spacing: 0.02em;
  color: var(--blue); background: var(--white); border-radius: var(--r-sm);
  transition: opacity var(--transition), transform var(--transition);
}
.btn-nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: var(--nav-h) var(--pad-x) clamp(4rem, 6vw, 6rem);
  overflow: hidden; background: var(--blue);
}

/* Subtle dot grid */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 65% 50%, black 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 65% 50%, black 0%, transparent 68%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 4rem); align-items: center;
}
@media (min-width: 1024px) { .hero-content { grid-template-columns: 1fr 1fr; } }

.hero-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  line-height: 1.04; letter-spacing: -0.035em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-title-accent { font-style: normal; color: var(--coral); }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--muted-blue); line-height: 1.72;
  max-width: 500px; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 2rem; }

.btn-primary {
  display: inline-flex; align-items: center;
  padding: 0.9375rem 1.875rem;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.9375rem; letter-spacing: 0.015em;
  color: var(--blue); background: var(--white); border-radius: var(--r-sm);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  opacity: 0.92; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,255,255,0.25);
}

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 0.9375rem 1.875rem;
  font-weight: 500; font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  border: 1px solid var(--border-white); border-radius: var(--r-sm);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
}

.hero-powered { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.hero-powered strong { color: rgba(255,255,255,0.5); font-weight: 500; }

/* ─── WIDGET IFRAME ─────────────────────────────────────────────────────── */
.hero-widget {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}

.widget-glow {
  position: absolute; inset: -15%;
  background: radial-gradient(circle at 50% 50%, rgba(250,114,104,0.18) 0%, transparent 58%);
  pointer-events: none;
}

/* Flat wrapper — no shadow, no 3D */
.widget-frame-wrapper {
  position: relative; width: 100%; max-width: 460px; height: 560px;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border-white);
}

.janine-widget-frame {
  width: 100%; height: 100%; border: none; display: block;
  background: #1A1714;
}

/* Second widget in "Comment ça marche" */
.widget-frame-wrapper--how {
  max-width: 100%; height: 520px;
  border: 1px solid var(--border-ink);
  border-radius: var(--r-xl); overflow: hidden;
}

/* ─── STATS BAND — coral ────────────────────────────────────────────────── */
.stats-band {
  background: var(--coral);
  padding: clamp(2.5rem, 4vw, 4.5rem) var(--pad-x); overflow: hidden;
}

.stats-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
}

.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.25rem; padding: 1rem 2rem; text-align: center; min-width: 140px;
}

.stat-num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.125rem, 3.8vw, 3.25rem);
  color: #fff; line-height: 1; letter-spacing: -0.025em;
}

.stat-label {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.055em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); line-height: 1.5;
}

.stat-sep {
  font-size: 2rem; color: rgba(255,255,255,0.25);
  align-self: center; padding: 0 0.25rem; font-weight: 300;
}

.stats-footer {
  width: 100%; text-align: center; margin-top: 1.75rem;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stats-footer::before { content: '↺  '; }

/* ─── SHARED SECTION LAYOUT ─────────────────────────────────────────────── */
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

.section-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 5rem); }

.section-label {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1.125rem;
}

/* Blue sections (default) */
.section-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  letter-spacing: -0.028em; line-height: 1.1;
  color: var(--white); margin-bottom: 1.25rem;
}
.section-sub { font-size: 1rem; color: var(--muted-blue); max-width: 500px; margin: 0 auto; line-height: 1.72; }

/* White / light sections — force dark text */
.section--white .section-label,
.for-whom       .section-label,
.faq            .section-label  { color: var(--coral); }

.section--white .section-title,
.section--light .section-title,
.for-whom       .section-title,
.faq            .section-title  { color: var(--ink); }

.section--white .section-sub,
.section--light .section-sub,
.for-whom       .section-sub,
.faq            .section-sub    { color: var(--muted-ink); }

/* ─── POUR QUI — white section ──────────────────────────────────────────── */
.for-whom {
  padding: var(--section-py) 0;
  background: var(--white);
}

.profiles-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border-ink);
  border: 1px solid var(--border-ink);
  border-radius: var(--r-lg); overflow: hidden;
}
@media (min-width: 640px)  { .profiles-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .profiles-grid { grid-template-columns: 1fr 1fr 1fr; } }

.profile-card {
  background: #fff; padding: 1.875rem;
  display: flex; flex-direction: column; gap: 0.875rem;
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.profile-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--coral);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.profile-card:hover { background: #F8F7FF; }
.profile-card:hover::after { transform: scaleX(1); }

.profile-icon {
  width: 44px; height: 44px;
  background: rgba(83,105,255,0.08); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}

.profile-category {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--blue);
}

.profile-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.0625rem; line-height: 1.28;
  letter-spacing: -0.01em; color: var(--ink);
}

.profile-desc { font-size: 0.875rem; color: var(--muted-ink); line-height: 1.65; }

.profile-usecases { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.25rem; }
.profile-usecases li {
  font-size: 0.6875rem; font-weight: 500;
  padding: 0.25rem 0.625rem;
  background: rgba(83,105,255,0.06);
  border: 1px solid rgba(83,105,255,0.14);
  border-radius: 100px; color: rgba(26,21,16,0.55);
}

.profile-roi {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--coral-dark); margin-top: auto; padding-top: 0.75rem;
}

/* ─── COMMENT ÇA MARCHE — off-white section ─────────────────────────────── */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
}

.how-layout {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5.5rem); align-items: center;
}
@media (min-width: 900px) { .how-layout { grid-template-columns: 1fr 1fr; } }

.how-steps { display: flex; flex-direction: column; gap: 2.75rem; }

.how-step {
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.25rem; align-items: start;
}

.step-num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.6875rem; letter-spacing: 0.08em;
  color: var(--blue); background: rgba(83,105,255,0.1);
  border: 1px solid rgba(83,105,255,0.22);
  border-radius: var(--r-sm); padding: 0.3rem 0.55rem;
  white-space: nowrap; margin-top: 4px; flex-shrink: 0;
}

.step-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.25rem; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 0.5rem;
}

.step-desc { font-size: 0.9375rem; color: var(--muted-ink); line-height: 1.72; }

.how-widget { position: relative; }

/* ─── PRICING ───────────────────────────────────────────────────────────── */
.pricing {
  padding: var(--section-py) 0;
  background: var(--blue-deep); position: relative; overflow: hidden;
}
.pricing::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.pricing::after {
  content: ''; position: absolute; bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(250,114,104,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.section-label--blue  { color: rgba(255,255,255,0.45); }
.section-title--white { color: #fff; }
.section-sub--white   { color: rgba(255,255,255,0.5); }

.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start;
}
@media (min-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr 1.15fr 1fr; align-items: stretch; }
}

.pricing-card {
  border-radius: var(--r-xl); padding: 2rem 1.875rem;
  display: flex; flex-direction: column; gap: 1.125rem; position: relative;
}

.pricing-card--blue {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
}

.pricing-card--coral {
  background: var(--coral); border: 1px solid transparent;
  box-shadow: 0 40px 80px rgba(250,114,104,0.32), 0 0 0 1px rgba(250,114,104,0.3);
  transform: scale(1.025) translateY(-4px);
}
@media (max-width: 859px) { .pricing-card--coral { transform: none; } }

.plan-badge {
  align-self: flex-start; padding: 0.25rem 0.75rem;
  background: var(--saffron); color: var(--ink);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 100px; margin-bottom: -0.25rem;
}

.plan-label {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.pricing-card--coral .plan-label { color: rgba(255,255,255,0.75); }

.plan-price { display: flex; align-items: baseline; gap: 0.25rem; flex-wrap: wrap; }

.price-amount {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.375rem, 4vw, 3.5rem);
  letter-spacing: -0.035em; line-height: 1; color: #fff;
}

.price-period { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.pricing-card--coral .price-period { color: rgba(255,255,255,0.7); }

.price-note { font-size: 0.8125rem; color: rgba(255,255,255,0.45); line-height: 1.5; min-height: 2.5rem; }
.pricing-card--coral .price-note { color: rgba(255,255,255,0.75); }

.plan-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.pricing-card--coral .plan-desc { color: rgba(255,255,255,0.85); }

.plan-preorder-note {
  font-size: 0.8125rem; color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15); border-radius: var(--r-sm);
  padding: 0.75rem 1rem; line-height: 1.55;
}

.plan-features { display: flex; flex-direction: column; gap: 0.625rem; flex: 1; }
.plan-features li {
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  padding-left: 1.375rem; position: relative; line-height: 1.45;
}
.plan-features li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  color: var(--coral); font-size: 0.75rem; font-weight: 700;
}
.pricing-card--coral .plan-features li         { color: rgba(255,255,255,0.92); }
.pricing-card--coral .plan-features li::before { color: rgba(255,255,255,0.7); }

.plan-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 0.9375rem 1.5rem;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.9375rem; letter-spacing: 0.01em;
  border-radius: var(--r-sm); text-align: center;
  transition: opacity var(--transition), transform var(--transition);
  margin-top: auto;
}
.plan-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.plan-cta--outline { border: 1px solid rgba(255,255,255,0.32); color: #fff; }
.plan-cta--outline:hover { background: rgba(255,255,255,0.06); }

.plan-cta--dark { background: var(--ink); color: #fff; }

.pricing-note {
  text-align: center; margin-top: 2.25rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.38);
  position: relative; z-index: 1;
}
.pricing-note a { color: rgba(255,255,255,0.65); text-decoration: underline; text-underline-offset: 3px; }

/* ─── FAQ — white section ───────────────────────────────────────────────── */
.faq { padding: var(--section-py) 0; background: var(--white); }

.faq-list {
  max-width: 720px; margin: 0 auto;
  background: var(--border-ink); border: 1px solid var(--border-ink);
  border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column; gap: 1px;
}

.faq-item { background: #fff; }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: 1.25rem 1.5rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--ink);
  text-align: left; transition: background var(--transition);
}
.faq-question:hover, .faq-question[aria-expanded="true"] { background: #F8F7FF; }

.faq-icon {
  font-size: 1.25rem; color: var(--blue); font-weight: 300;
  line-height: 1; flex-shrink: 0; transition: transform 0.28s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.38s ease, padding 0.38s ease;
  padding: 0 1.5rem; background: #F8F7FF;
}
.faq-answer.open { max-height: 400px; padding: 0 1.5rem 1.375rem; }

.faq-answer p { font-size: 0.9375rem; color: var(--muted-ink); line-height: 1.75; }
.faq-answer a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ─── FOOTER — dark navy ────────────────────────────────────────────────── */
.site-footer { background: var(--blue-dark); padding: clamp(3rem, 6vw, 5.5rem) 0 2rem; }

.footer-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; } }

.logo--footer { font-size: 1.3125rem; margin-bottom: 0.875rem; color: #fff; }
.logo--footer .logo-text { color: #fff; }
.footer-tagline  { font-size: 0.875rem; color: rgba(255,255,255,0.38); margin-bottom: 0.5rem; }
.footer-powered  { font-size: 0.8125rem; color: rgba(255,255,255,0.28); }
.footer-powered a { color: rgba(255,255,255,0.45); text-decoration: underline; text-underline-offset: 3px; }

.footer-links ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a  { font-size: 0.875rem; color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

.footer-meta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.footer-meta .lang-switch { color: rgba(255,255,255,0.4); }
.footer-meta .lang-switch:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.footer-hosting { font-size: 0.75rem; color: rgba(255,255,255,0.22); }
.footer-hosting a { color: rgba(255,255,255,0.38); text-decoration: underline; text-underline-offset: 3px; }

/* ─── MOBILE STICKY CTA ─────────────────────────────────────────────────── */
.cta-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(83,105,255,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-white);
  z-index: 50; display: none; transition: opacity 0.2s ease;
}
@media (max-width: 767px) { .cta-sticky { display: block; } }

.cta-sticky-btn {
  display: block; width: 100%; padding: 0.9375rem; text-align: center;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.9375rem; letter-spacing: 0.01em;
  color: var(--blue); background: var(--white); border-radius: var(--r-sm);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .btn-nav-cta { display: none; }
  .hero-widget { display: none; }
  .stat-sep    { display: none; }
  .stat-item   { width: 50%; padding: 1rem; }
}
@media (min-width: 500px) and (max-width: 767px) { .hero-widget { display: flex; } }

/* ─── TYPEFORM MODAL ─────────────────────────────────────────────────────── */
.tf-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.tf-modal[hidden] { display: none; }

.tf-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.tf-modal-panel {
  position: relative;
  width: 550px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  z-index: 1;
  animation: tfSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tfSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.tf-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  color: #1A1510;
  padding: 0.5rem;
  border-radius: 50%;
  line-height: 0;
  transition: background 0.2s;
}
.tf-modal-close:hover  { background: rgba(0, 0, 0, 0.08); }
.tf-modal-close:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

#tf-modal-content,
#tf-modal-content > div { height: 100%; }

/* ─── REDUCED MOTION ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html    { scroll-behavior: auto; }
}
