/* ============================================================
   WapiGrow — main.css
   Design system: variables, reset, typography, layout, globals
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand colours */
  --clr-green:      #25D366;
  --clr-green-dk:   #128C7E;
  --clr-green-50:   #f0fdf4;
  --clr-green-100:  #dcfce7;
  --clr-green-200:  #bbf7d0;
  --clr-green-700:  #15803d;
  --clr-green-800:  #166534;
  --clr-navy:       #0f1923;
  --clr-navy-2:     #1a3a2a;

  /* Neutrals */
  --clr-white:      #ffffff;
  --clr-off-white:  #f8fafc;
  --clr-border:     #e5e7eb;
  --ink-100:        #f3f4f6;
  --ink-200:        #e5e7eb;
  --ink-300:        #d1d5db;
  --ink-500:        #6b7280;
  --ink-700:        #374151;
  --ink-800:        #1f2937;
  --ink-900:        #0f1923;

  /* Legacy aliases — backward compat for inline styles in PHP pages */
  --white:          var(--clr-white);
  --off-white:      var(--clr-off-white);
  --border:         var(--clr-border);
  --green-50:       var(--clr-green-50);
  --green-100:      var(--clr-green-100);
  --green-200:      var(--clr-green-200);
  --green-600:      #16a34a;
  --green-800:      var(--clr-green-800);
  --ink-400:        #9ca3af;
  --ink-600:        #4b5563;
  --primary:        var(--clr-green);
  --primary-dark:   var(--clr-green-dk);

  /* Typography */
  --font:           'Inter', system-ui, -apple-system, sans-serif;
  --text-body:      var(--ink-700);
  --text-muted:     var(--ink-500);

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,.14);

  /* Radii */
  --r-sm:           8px;
  --r-md:           12px;
  --r-lg:           16px;
  --r-xl:           24px;
  --r-full:         9999px;

  /* Spacing */
  --space-xs:       8px;
  --space-sm:       16px;
  --space-md:       24px;
  --space-lg:       48px;
  --space-xl:       64px;
  --space-2xl:      96px;

  /* Icon system — one standard set */
  --icon-box:       48px;  /* container size */
  --icon-svg:       22px;  /* SVG inside container */
  --icon-box-sm:    36px;
  --icon-svg-sm:    16px;
  --icon-box-lg:    60px;
  --icon-svg-lg:    28px;

  --transition:     .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(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--clr-off-white);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; background: none; }
button { cursor: pointer; }

/* ── Typography ────────────────────────────────────────────── */
h1 { font-size: clamp(2rem,5vw,3.2rem);  font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--ink-900); }
h2 { font-size: clamp(1.5rem,4vw,2.4rem); font-weight: 700; line-height: 1.2;  letter-spacing: -.01em; color: var(--ink-900); }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--ink-900); }
h4 { font-size: 1.05rem; font-weight: 600; color: var(--ink-900); }
p  { margin: 0; }

/* ── Layout ────────────────────────────────────────────────── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 760px;  margin: 0 auto; padding: 0 20px; }
.narrow       { max-width: 960px;  margin: 0 auto; }

.section    { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-lg) 0; }
.section-lg { padding: var(--space-2xl) 0; }

/* Background helpers */
.bg-white      { background: var(--clr-white); }
.bg-off-white  { background: var(--clr-off-white); }
.bg-soft       { background: var(--clr-off-white); }
.bg-light-green{ background: var(--clr-green-50); }
.bg-dark       { background: var(--clr-navy); }
.section-soft  { background: var(--clr-off-white); }

/* Generic grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
}

/* ── Announcement bar ──────────────────────────────────────── */
.announcement-bar {
  background: var(--clr-navy);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 10px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.announcement-bar a, .announcement-cta {
  color: var(--clr-green);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.announcement-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.announcement-close:hover { color: #fff; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { height: 64px; }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
}
.navbar-logo img { height: 38px; width: auto; display: block; }
@media (max-width: 1023px) { .navbar-logo img { height: 34px; } }
.navbar-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
@media (min-width: 1024px) { .navbar-links { display: flex; } }
.navbar-links a {
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.navbar-links a:hover, .navbar-links a.active {
  background: var(--clr-green-50);
  color: var(--clr-green-dk);
}
.navbar-ctas {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
@media (min-width: 1024px) { .navbar-ctas { display: flex; } }

/* Desktop: 3-column grid so the menu is truly centered regardless of
   logo / CTA widths (logo | centered menu | CTA). */
@media (min-width: 1024px) {
  .navbar-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; }
  .navbar-logo { justify-self: start; }
  .navbar-ctas { justify-self: end; margin-left: 0; }
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 0;
  min-width: 200px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  /* Smooth open: fade + slight slide instead of an instant pop */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
/* Transparent bridge over the 8px gap so hover isn't lost moving to the menu */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
/* Animate the ▾ chevron on open */
.nav-dropdown > a { transition: color var(--transition); }
.nav-dropdown:hover > a, .nav-dropdown.open > a { color: var(--clr-green-dk); }
/* Right-align the CTA dropdown and size it to the button (not a wide panel) */
.nav-dropdown-menu.dd-right { left: auto; right: 0; min-width: 100%; width: max-content; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink-700);
  transition: background var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--clr-green-50); color: var(--clr-green-dk); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.mobile-drawer.open { pointer-events: all; }
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s;
}
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--clr-white);
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink-500);
  cursor: pointer;
  padding: 4px 8px;
  margin-bottom: 12px;
}
.drawer-panel a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-800);
  transition: background var(--transition);
}
.drawer-panel a:hover { background: var(--clr-green-50); color: var(--clr-green-dk); }
.drawer-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--clr-border); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--clr-navy) 0%, #0d3320 100%);
  padding: 72px 0 64px;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; } }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,.15);
  color: var(--clr-green);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 18px; margin-bottom: 36px; max-width: 520px; line-height: 1.6; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}
.hero-trust-item svg { color: var(--clr-green); flex-shrink: 0; }

/* Chat mockup (hero right) */
.chat-mockup {
  background: #1a2a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  max-width: 380px;
  margin: 0 auto;
}
.chat-mockup-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-green-dk);
  padding: 14px 18px;
  color: #fff;
}
.chat-mockup-bar .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.chat-mockup-bar .name   { font-size: 14px; font-weight: 700; }
.chat-mockup-bar .status { font-size: 11px; opacity: .7; }
.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 14px;
}
.chat-bubble.incoming {
  background: #2a3a2a;
  color: rgba(255,255,255,.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.outgoing {
  background: var(--clr-green-dk);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.chat-time { font-size: 10px; opacity: .5; margin-top: 4px; text-align: right; }
.chat-messages {
  display: flex;
  flex-direction: column;
  padding: 8px 0 14px;
  background: #111a11;
}

/* Floating animation */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float { animation: float 4s ease-in-out infinite; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

/* ── Counter strip ─────────────────────────────────────────── */
.counter-strip {
  background: var(--clr-navy);
  padding: 32px 0;
}
.counter-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}
.counter-item { text-align: center; }
.counter-item-num {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-green);
  line-height: 1;
  margin-bottom: 4px;
}
.counter-item-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
  white-space: nowrap;
}
.marquee-item svg { flex-shrink: 0; color: var(--clr-green); width: 14px; height: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section labels & headers ──────────────────────────────── */
.section-label {
  display: inline-block;
  background: var(--clr-green-50);
  color: var(--clr-green-800);
  border: 1px solid var(--clr-green-200);
  border-radius: var(--r-full);
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ── Pain cards ────────────────────────────────────────────── */
.pain-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
}
.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-box);
  height: var(--icon-box);
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  margin-bottom: 16px;
}
.pain-icon svg { width: var(--icon-svg); height: var(--icon-svg); }
.pain-card h4 { color: #dc2626; margin-bottom: 8px; }
.pain-card p  { font-size: 14px; color: var(--text-muted); }
.bridge {
  text-align: center;
  padding: 28px 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-green);
}

/* ── Product cards ─────────────────────────────────────────── */
.product-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card.featured { border-color: var(--clr-green); box-shadow: 0 0 0 1px var(--clr-green); }
.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-box-lg);
  height: var(--icon-box-lg);
  border-radius: var(--r-lg);
  background: var(--clr-green-50);
  color: var(--clr-green);
  margin-bottom: 20px;
}
.product-icon svg { width: var(--icon-svg-lg); height: var(--icon-svg-lg); }
.product-card h3 { margin-bottom: 12px; }
.product-card p  { color: var(--text-body); margin-bottom: 24px; flex: 1; }
.product-card ul { margin-bottom: 28px; }
.product-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 10px; }
.product-card ul li::before { content: '✓'; color: var(--clr-green); font-weight: 800; flex-shrink: 0; margin-top: 2px; }

/* ── Bento grid ────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px)  { .bento-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(3,1fr); } }
.bento-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.bento-card:hover { box-shadow: var(--shadow-md); transform: scale(1.015); border-color: var(--clr-green); }
.bento-card.span-2 { grid-column: span 1; }
@media (min-width: 768px) { .bento-card.span-2 { grid-column: span 2; } }
.bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-box);
  height: var(--icon-box);
  border-radius: var(--r-md);
  background: var(--clr-green-50);
  color: var(--clr-green);
  margin-bottom: 16px;
}
.bento-icon svg { width: var(--icon-svg); height: var(--icon-svg); }
.bento-card h4 { margin-bottom: 8px; }
.bento-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.bento-stat { margin-top: 16px; font-size: 22px; font-weight: 800; color: var(--clr-green); }
.bento-stat small { font-size: 13px; color: var(--text-muted); font-weight: 400; display: block; }

/* ── Steps / How it works ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3,1fr); } }
.step-card {
  text-align: center;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-green);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}
.step-card h4 { margin-bottom: 10px; }
.step-card p  { font-size: 14px; color: var(--text-muted); }

/* ── Industry filter & cards ───────────────────────────────── */
.industry-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-pill {
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--clr-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-500);
  background: var(--clr-white);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--clr-green);
  color: #fff;
  border-color: var(--clr-green);
}
.industry-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .industry-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .industry-cards-grid { grid-template-columns: repeat(3,1fr); } }
.industry-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: none;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.industry-card.visible { display: flex; flex-direction: column; }
.industry-card:hover { box-shadow: var(--shadow-md); border-color: var(--clr-green); }
.industry-card svg { color: var(--clr-green); margin-bottom: 12px; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-featured {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.t-stars-large {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-featured blockquote {
  font-size: clamp(1rem,2.5vw,1.2rem);
  line-height: 1.65;
  color: var(--ink-800);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { font-weight: 700; color: var(--ink-900); }
.testimonial-sub    { font-size: 14px; color: var(--text-muted); }

.testimonials-scroll { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding-bottom: 4px;
}
.t-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 24px;
  width: 300px;
  flex-shrink: 0;
}
.t-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 12px;
}
.t-quote { font-size: 14px; color: var(--ink-700); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.t-avatar { display: flex; align-items: center; gap: 12px; }
.t-initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-green-50);
  color: var(--clr-green-800);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.t-meta { font-size: 12px; color: var(--text-muted); }

/* ── Pricing / Plan cards ──────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}
.toggle-switch {
  width: 52px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--ink-200);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-switch.active { background: var(--clr-green); }
.toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-white);
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.toggle-switch.active .toggle-knob { transform: translateX(24px); }
.price-monthly { display: inline; }
.price-annual  { display: none; }

.plan-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.plan-card.featured { border-color: var(--clr-green); }
.plan-name  { font-size: 1rem; font-weight: 700; color: var(--ink-900); margin-bottom: 8px; }
.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 12px;
}
.plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 600; }
.plan-price sub { font-size: .9rem; color: var(--text-muted); font-weight: 400; }
.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.plan-card ul { margin-bottom: 24px; }
.plan-card ul li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--clr-green-50); display: flex; align-items: flex-start; gap: 8px; }
.plan-card ul li::before { content: '✓'; color: var(--clr-green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-card ul li:last-child { border-bottom: none; }

/* Price grid (pricing.php) */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px)  { .price-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(3,1fr); } }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.faq-question, .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 12px;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-chevron::before, .faq-chevron::after {
  content: '';
  position: absolute;
  background: var(--ink-500);
  border-radius: 2px;
  transition: transform var(--transition);
}
.faq-chevron::before { width: 2px; height: 10px; top: 5px; left: 9px; }
.faq-chevron::after  { width: 10px; height: 2px; top: 9px; left: 5px; }
.faq-item.open .faq-chevron::before { transform: rotate(90deg); }
.faq-answer, .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer, .faq-item.open .faq-a { max-height: 500px; }
.faq-answer-inner, .faq-a-inner { padding-bottom: 20px; font-size: .93rem; color: var(--text-body); line-height: 1.75; }

/* ── Video modal ───────────────────────────────────────────── */
.video-thumb { position: relative; cursor: pointer; border-radius: var(--r-lg); overflow: hidden; }
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.4);
  transition: background var(--transition), transform var(--transition);
}
.video-play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%,-50%);
  border: 10px solid transparent;
  border-left: 18px solid #fff;
}
.video-thumb:hover .video-play-btn { background: rgba(37,211,102,.3); transform: translate(-50%,-50%) scale(1.1); }
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--r-lg);
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  opacity: .7;
}
.video-modal-close:hover { opacity: 1; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-2) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner > .container > p { color: rgba(255,255,255,.7); margin-bottom: 32px; font-size: 17px; }
.cta-banner-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 28px; }
.trust-cities {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Page head (interior pages) ────────────────────────────── */
.page-head {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-2) 100%);
  padding: 56px 0 48px;
  text-align: center;
}
.page-head h1 { color: #fff; font-size: clamp(1.75rem,4vw,2.75rem); margin-bottom: 12px; }
.page-head p  { color: rgba(255,255,255,.7); font-size: 17px; max-width: 560px; margin: 0 auto; }
.crumbs { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 20px; justify-content: center; color: rgba(255,255,255,.45); }
.crumbs a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .4; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-green);
  margin-bottom: 12px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-green);
  animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulseGreen { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.5); } }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { }
.footer-tagline { font-size: 14px; line-height: 1.65; margin: 16px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 16px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--clr-green); color: var(--clr-green); }
.footer-made { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--clr-green); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: flex-start; }
.footer-copy  { font-size: 13px; color: rgba(255,255,255,.4); }
.city-seo { font-size: 12px; color: rgba(255,255,255,.2); line-height: 1.8; max-width: 640px; }
.city-seo a { color: rgba(255,255,255,.25); }
.city-seo a:hover { color: rgba(255,255,255,.55); }

/* WhatsApp bubble */
.wa-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 200;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-bubble:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
.wa-bubble svg { width: 28px; height: 28px; }

/* ── Popup (exit intent) ───────────────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: popIn .3s ease;
}
@keyframes popIn { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--ink-400, var(--ink-500));
  cursor: pointer;
}
.popup-tag  { display: inline-block; background: var(--clr-green-50); color: var(--clr-green-800); border-radius: var(--r-full); padding: 4px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.popup-title{ font-size: 1.4rem; font-weight: 800; color: var(--ink-900); margin-bottom: 10px; }
.popup-sub  { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.popup-cta  { display: flex; flex-direction: column; gap: 10px; }
.popup-no-thanks { font-size: 13px; color: var(--text-muted); cursor: pointer; text-align: center; background: none; border: none; padding: 4px; }
.popup-no-thanks:hover { color: var(--ink-700); }

/* ── Reveal animation ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* ── Error pages ───────────────────────────────────────────── */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--space-xl) 20px; }
.error-page h1 { font-size: clamp(5rem,15vw,10rem); color: var(--clr-green); font-weight: 900; line-height: 1; margin-bottom: 8px; }

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.gap-sm { gap: var(--space-sm); }

/* ============================================================
   WAPIGROW DESIGN SYSTEM v3 — APPENDED TOKENS & UTILITIES
   Premium · Mobile-first · SEO-ready
   ============================================================ */

/* ── WG DESIGN TOKENS (new --wg-* namespace) ── */
:root {
  --wg-green:           #25D366;
  --wg-green-dark:      #128C7E;
  --wg-green-light:     #E9FBF0;
  --wg-green-glow:      rgba(37, 211, 102, 0.15);
  --wg-navy:            #1A1A2E;
  --wg-navy-mid:        #16213E;
  --wg-white:           #FFFFFF;
  --wg-off-white:       #F8FAF9;
  --wg-gray-50:         #F7F8F7;
  --wg-gray-100:        #EAEEEA;
  --wg-gray-200:        #D4DAD4;
  --wg-gray-400:        #8FA48F;
  --wg-gray-600:        #4A5E4A;
  --wg-gray-800:        #1E2E1E;
  --wg-text-primary:    #1A1A2E;
  --wg-text-secondary:  #4A5568;
  --wg-text-muted:      #718096;
  --wg-text-inverse:    #FFFFFF;
  --wg-border:          #E2E8F0;
  --wg-font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wg-text-xs:   0.75rem;   --wg-text-sm:  0.875rem; --wg-text-base: 1rem;
  --wg-text-lg:   1.125rem;  --wg-text-xl:  1.25rem;  --wg-text-2xl: 1.5rem;
  --wg-text-3xl:  1.875rem;  --wg-text-4xl: 2.25rem;  --wg-text-5xl: 3rem;
  --wg-text-6xl:  3.75rem;
  --wg-sp-1: 0.25rem;  --wg-sp-2: 0.5rem;   --wg-sp-3: 0.75rem;
  --wg-sp-4: 1rem;     --wg-sp-5: 1.25rem;  --wg-sp-6: 1.5rem;
  --wg-sp-8: 2rem;     --wg-sp-10: 2.5rem;  --wg-sp-12: 3rem;
  --wg-sp-16: 4rem;    --wg-sp-20: 5rem;    --wg-sp-24: 6rem;
  --wg-r-sm: 4px; --wg-r-md: 8px; --wg-r-lg: 12px;
  --wg-r-xl: 16px; --wg-r-2xl: 24px; --wg-r-full: 9999px;
  --wg-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --wg-shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --wg-shadow-md: 0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --wg-shadow-lg: 0 16px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --wg-shadow-xl: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --wg-shadow-green:    0 8px 32px rgba(37,211,102,0.25);
  --wg-shadow-green-lg: 0 16px 48px rgba(37,211,102,0.30);
  --wg-ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --wg-ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --wg-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --wg-t-fast:   150ms; --wg-t-base: 250ms;
  --wg-t-slow:   400ms; --wg-t-slower: 600ms;
}

/* ── LAYOUT UTILITIES ── */
.wg-container {
  width: 100%; max-width: 1280px;
  margin-inline: auto; padding-inline: var(--wg-sp-4);
}
@media (min-width: 640px)  { .wg-container { padding-inline: var(--wg-sp-6); } }
@media (min-width: 1024px) { .wg-container { padding-inline: var(--wg-sp-8); } }
@media (min-width: 1280px) { .wg-container { padding-inline: var(--wg-sp-12); } }

.wg-section { padding-block: var(--wg-sp-16); }
@media (min-width: 768px)  { .wg-section { padding-block: var(--wg-sp-20); } }
@media (min-width: 1024px) { .wg-section { padding-block: var(--wg-sp-24); } }

/* ── TYPOGRAPHY ── */
.wg-h1 { font-size: clamp(2rem, 5vw, var(--wg-text-5xl)); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
.wg-h2 { font-size: clamp(1.5rem, 3.5vw, var(--wg-text-4xl)); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
.wg-h3 { font-size: clamp(1.125rem, 2.5vw, var(--wg-text-2xl)); font-weight: 600; line-height: 1.35; }
.wg-h4 { font-size: var(--wg-text-lg); font-weight: 600; line-height: 1.45; }
.wg-body-lg { font-size: var(--wg-text-lg); line-height: 1.7; color: var(--wg-text-secondary); }
.wg-body    { font-size: var(--wg-text-base); line-height: 1.7; color: var(--wg-text-secondary); }
.wg-label { font-size: var(--wg-text-sm); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wg-green-dark); }

/* ── EMOJI SIZING SYSTEM ── */
.wg-emoji {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; font-size: 24px; line-height: 1;
  flex-shrink: 0; border-radius: var(--wg-r-lg);
  background: var(--wg-green-light); user-select: none;
}
.wg-emoji-sm   { width: 32px;  height: 32px;  font-size: 16px; border-radius: var(--wg-r-md); }
.wg-emoji-md   { width: 40px;  height: 40px;  font-size: 20px; border-radius: var(--wg-r-md); }
.wg-emoji-lg   { width: 56px;  height: 56px;  font-size: 28px; border-radius: var(--wg-r-xl); }
.wg-emoji-xl   { width: 72px;  height: 72px;  font-size: 36px; border-radius: var(--wg-r-xl); }
.wg-emoji-flat   { display: inline-block; font-size: 1em; line-height: 1; width: 1.25em; text-align: center; }
.wg-emoji-nav    { display: inline-block; font-size: 16px; width: 20px; text-align: center; line-height: 1; flex-shrink: 0; }
.wg-emoji-bubble { display: inline; font-size: 1em; line-height: inherit; }
.wg-stars        { display: inline-block; font-size: 16px; letter-spacing: 2px; color: #F59E0B; line-height: 1; }
.wg-emoji-pill   { display: inline-block; font-size: 14px; width: 18px; text-align: center; line-height: 1; }
.wg-emoji-ann    { display: inline-block; font-size: 16px; width: 20px; text-align: center; line-height: 1; flex-shrink: 0; }

/* ── BUTTONS (wg-btn system) ── */
.wg-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--wg-sp-2); padding: 0.8125rem 1.75rem;
  font-size: var(--wg-text-base); font-weight: 600;
  border-radius: var(--wg-r-full); border: 2px solid transparent;
  transition: all var(--wg-t-base) var(--wg-ease);
  white-space: nowrap; min-height: 52px; min-width: 48px;
  cursor: pointer; text-decoration: none; position: relative; overflow: hidden;
}
.wg-btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0); transition: background var(--wg-t-fast); }
.wg-btn:hover::after { background: rgba(255,255,255,0.08); }
.wg-btn:active { transform: scale(0.98); }
.wg-btn-primary { background: var(--wg-green); color: #fff; border-color: var(--wg-green); box-shadow: 0 4px 16px rgba(37,211,102,0.25); }
.wg-btn-primary:hover { background: var(--wg-green-dark); border-color: var(--wg-green-dark); box-shadow: var(--wg-shadow-green-lg); transform: translateY(-2px); }
.wg-btn-outline { background: transparent; color: var(--wg-green-dark); border-color: var(--wg-green-dark); }
.wg-btn-outline:hover { background: var(--wg-green); color: #fff; border-color: var(--wg-green); transform: translateY(-2px); }
.wg-btn-ghost-white { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.wg-btn-ghost-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.wg-btn-sm { padding: 0.625rem 1.25rem; font-size: var(--wg-text-sm); min-height: 40px; }
.wg-btn-lg { padding: 1rem 2.25rem; font-size: var(--wg-text-lg); min-height: 60px; }

/* ── CARDS (wg-card system) ── */
.wg-card {
  background: var(--wg-white); border: 1px solid var(--wg-border);
  border-radius: var(--wg-r-xl); padding: var(--wg-sp-6);
  transition: box-shadow var(--wg-t-base) var(--wg-ease), transform var(--wg-t-base) var(--wg-ease), border-color var(--wg-t-base);
}
.wg-card:hover { box-shadow: var(--wg-shadow-lg); transform: translateY(-3px); border-color: rgba(37,211,102,0.3); }
.wg-card-navy { background: var(--wg-navy); border-color: rgba(255,255,255,0.08); color: #fff; }
.wg-card-featured { border: 2px solid var(--wg-green); box-shadow: var(--wg-shadow-green); }

/* ── STEP NUMBERS ── */
.wg-step-number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--wg-green); color: #fff; font-size: var(--wg-text-base); font-weight: 700; flex-shrink: 0; }

/* ── BADGES ── */
.wg-badge { display: inline-flex; align-items: center; gap: var(--wg-sp-1); padding: var(--wg-sp-1) var(--wg-sp-3); font-size: var(--wg-text-xs); font-weight: 600; border-radius: var(--wg-r-full); letter-spacing: 0.03em; }
.wg-badge-green { background: var(--wg-green-light); color: var(--wg-green-dark); }
.wg-badge-navy  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.wg-badge-new   { background: #FEF3C7; color: #92400E; }

/* ── GRIDS ── */
.wg-grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--wg-sp-6); }
.wg-grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--wg-sp-6); }
.wg-grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--wg-sp-4); }
@media (min-width: 640px)  { .wg-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .wg-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .wg-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.wg-bento { display: grid; grid-template-columns: 1fr; gap: var(--wg-sp-4); }
@media (min-width: 640px)  { .wg-bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wg-bento { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .wg-bento-wide { grid-column: span 2; } }
.wg-section-label { text-align: center; margin-bottom: var(--wg-sp-4); }

/* ============================================================
   ANIMATION SYSTEM v3
   Scroll-triggered via IntersectionObserver
   Respects prefers-reduced-motion
   ============================================================ */

.wg-fade-up   { opacity: 0; transform: translateY(28px); transition: opacity var(--wg-t-slower) var(--wg-ease), transform var(--wg-t-slower) var(--wg-ease); }
.wg-fade-in   { opacity: 0; transition: opacity var(--wg-t-slower) var(--wg-ease); }
.wg-fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity var(--wg-t-slower) var(--wg-ease), transform var(--wg-t-slower) var(--wg-ease); }
.wg-fade-right { opacity: 0; transform: translateX(28px);  transition: opacity var(--wg-t-slower) var(--wg-ease), transform var(--wg-t-slower) var(--wg-ease); }
.wg-scale-in  { opacity: 0; transform: scale(0.94); transition: opacity var(--wg-t-slower) var(--wg-ease), transform var(--wg-t-slower) var(--wg-ease); }

.wg-fade-up.wg-visible,
.wg-fade-in.wg-visible,
.wg-fade-left.wg-visible,
.wg-fade-right.wg-visible,
.wg-scale-in.wg-visible { opacity: 1; transform: none; }

.wg-delay-1 { transition-delay: 80ms; }
.wg-delay-2 { transition-delay: 160ms; }
.wg-delay-3 { transition-delay: 240ms; }
.wg-delay-4 { transition-delay: 320ms; }
.wg-delay-5 { transition-delay: 400ms; }

/* CSS-only marquee (new keyframe — does not conflict with old 'marquee') */
@keyframes wg-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wg-marquee-track { display: flex; gap: var(--wg-sp-8); width: max-content; animation: wg-marquee 32s linear infinite; }
.wg-marquee-track:hover { animation-play-state: paused; }

@keyframes wg-carousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wg-carousel-track { display: flex; gap: var(--wg-sp-5); width: max-content; animation: wg-carousel 44s linear infinite; }
.wg-carousel-track:hover { animation-play-state: paused; }

@keyframes wg-word-cycle {
  0%, 20%  { opacity: 1; transform: translateY(0); }
  25%, 95% { opacity: 0; transform: translateY(-12px); }
  100%     { opacity: 1; transform: translateY(0); }
}
.wg-word-cycle { position: relative; display: inline-block; color: var(--wg-green); }
.wg-word-cycle span { position: absolute; left: 0; opacity: 0; animation: wg-word-cycle 9s infinite; }
.wg-word-cycle span:nth-child(1) { animation-delay: 0s; }
.wg-word-cycle span:nth-child(2) { animation-delay: 3s; }
.wg-word-cycle span:nth-child(3) { animation-delay: 6s; }

@keyframes wg-bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.wg-bubble-animate { animation: wg-bubble-in 0.4s var(--wg-ease) both; }
.wg-bubble-animate:nth-child(1) { animation-delay: 0.3s; }
.wg-bubble-animate:nth-child(2) { animation-delay: 0.8s; }
.wg-bubble-animate:nth-child(3) { animation-delay: 1.4s; }
.wg-bubble-animate:nth-child(4) { animation-delay: 2.0s; }

@keyframes wg-pulse {
  0%   { transform: scale(1);    opacity: 1; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wg-fade-up, .wg-fade-in, .wg-fade-left, .wg-fade-right, .wg-scale-in { opacity: 1; transform: none; transition: none; }
  .wg-marquee-track, .wg-carousel-track { animation: none; }
  .wg-word-cycle span { animation: none; opacity: 1; position: static; }
  .wg-bubble-animate { animation: none; }
}

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES — privacy, terms, refund, cookies
   (relocated from per-page inline <style>; single source of truth)
   ══════════════════════════════════════════════════════════ */
.legal-page { display: block; }
.legal-page .legal-hero { background: linear-gradient(135deg,#0f2027 0%,#1a3a2a 100%); padding: 4rem 0 3rem; text-align: center; }
.legal-page .legal-hero .eyebrow { display: inline-block; background: rgba(37,211,102,.15); color: #25D366; border: 1px solid rgba(37,211,102,.3); padding: .3rem .85rem; border-radius: 20px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem; }
.legal-page .legal-hero h1 { color: #fff; font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 800; margin-bottom: .5rem; }
.legal-page .legal-hero .updated { color: rgba(255,255,255,.45); font-size: .82rem; }
.legal-page .legal-body { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.legal-page .legal-body h2 { font-size: 1.15rem; font-weight: 700; color: #0f1923; margin: 2.5rem 0 .75rem; padding-bottom: .4rem; border-bottom: 2px solid #f3f4f6; }
.legal-page .legal-body h2:first-child { margin-top: 0; }
.legal-page .legal-body h3 { font-size: .95rem; font-weight: 700; color: #0f1923; margin: 1.5rem 0 .4rem; }
.legal-page .legal-body p { font-size: .9rem; color: #4b5563; line-height: 1.8; margin-bottom: .9rem; }
.legal-page .legal-body ul, .legal-page .legal-body ol { padding-left: 1.4rem; margin-bottom: .9rem; }
.legal-page .legal-body li { font-size: .9rem; color: #4b5563; line-height: 1.8; margin-bottom: .25rem; }
.legal-page .legal-body a { color: #25D366; text-decoration: none; }
.legal-page .legal-body a:hover { text-decoration: underline; }
.legal-page .legal-highlight { background: #f0fdf4; border-left: 3px solid #25D366; border-radius: 0 8px 8px 0; padding: .85rem 1.1rem; margin: 1rem 0 1.25rem; font-size: .875rem; color: #065f46; line-height: 1.7; }
.legal-page .legal-table { width: 100%; border-collapse: collapse; font-size: .85rem; margin-bottom: 1.25rem; }
.legal-page .legal-table th { background: #f9fafb; padding: .65rem .9rem; text-align: left; font-weight: 700; color: #374151; border-bottom: 2px solid #e5e7eb; }
.legal-page .legal-table td { padding: .65rem .9rem; border-bottom: 1px solid #f3f4f6; color: #4b5563; vertical-align: top; }
.legal-page .legal-toc { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.legal-page .legal-toc p { font-weight: 700; color: #0f1923; margin-bottom: .5rem; font-size: .875rem; }
.legal-page .legal-toc ol { margin: 0; padding-left: 1.2rem; }
.legal-page .legal-toc li { font-size: .82rem; color: #6b7280; margin-bottom: .2rem; }
.legal-page .legal-toc a { color: #25D366; }

/* ── UTILITY GRID (4-col responsive) ── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ── GENERIC CARD ── */
.card {
  background: #fff;
  border: 1px solid var(--clr-border, #E5E7EB);
  border-radius: var(--r-lg, 12px);
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
