/* ============================================================
   DataVanta Technology LTD — Brevo Design System v4
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables — Exact Brevo Palette ───────────────────── */
:root {
  /* Brevo exact brand colors */
  --green-hero:    #D7FEC8;   /* Snow Flurry mint — Brevo hero bg */
  --green-brand:   #006A43;   /* Fun Green — Brevo primary */
  --green-mid:     #18704C;   /* Jewel Green — Brevo dark accent */
  --green-light:   #EDFCE6;   /* Pale mint tint for backgrounds */
  --green-pale:    #F4FEF0;   /* Very pale green for hover states */
  --accent:        #006A43;   /* Same as brand for consistency */
  --black:         #0A0A0A;   /* Primary button background */
  --white:         #FFFFFF;
  --bg-warm:       #F9F9F7;   /* Brevo off-white page background */
  --bg-gray:       #F4F5F7;
  --bg-dark:       #0D1117;
  --bg-mint:       #D7FEC8;   /* Brevo mint hero / section bg */
  --text-dark:     #111827;
  --text-mid:      #4A5568;
  --text-light:    #6B7280;
  --border:        #E5E7EB;
  --border-light:  #F3F4F6;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-pill:   100px;
  --shadow-xs:     0 1px 4px rgba(0,0,0,0.04);
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:     0 24px 64px rgba(0,106,67,0.12);
  --shadow-xl:     0 40px 80px rgba(0,0,0,0.14);
  --transition:    0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:         72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-warm);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ── Icons (Lucide) ─────────────────────────────────────────── */
.i {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: -3px;
}
.i-lg { width: 22px; height: 22px; vertical-align: -4px; }
.i-xl { width: 28px; height: 28px; vertical-align: -6px; }

/* ── Announcement Bar ───────────────────────────────────────── */
.announce-bar {
  background: #0A0A0A;
  color: rgba(255,255,255,0.82);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 24px;
  letter-spacing: 0.3px;
}
.announce-bar a { color: var(--green-hero); font-weight: 700; margin-left: 6px; }
.announce-bar a:hover { text-decoration: underline; }

/* ── Typography ──────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-brand);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.18; letter-spacing: -0.8px; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
p  { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }
.lead { font-size: 1.15rem; line-height: 1.7; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--green-brand);
  border-color: var(--green-brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,79,58,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-brand);
  color: #fff;
  border-color: var(--green-brand);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,79,58,0.35);
}
.btn-hero {
  background: var(--green-brand);
  color: var(--white);
  border-color: var(--green-brand);
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.btn-hero:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,79,58,0.4);
}
.btn-outline-hero {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
  border: 2px solid rgba(0,0,0,0.18);
  font-size: 1rem;
  padding: 15px 34px;
}
.btn-outline-hero:hover {
  background: rgba(0,0,0,0.06);
  border-color: var(--text-dark);
  transform: translateY(-3px);
}
.btn-sm { padding: 8px 18px; font-size: 0.83rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-xl { padding: 18px 48px; font-size: 1.05rem; font-weight: 800; }
.btn-white {
  background: var(--white);
  color: var(--green-brand);
  border-color: var(--white);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ── Announcement + Nav Wrapper ─────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  transition: all var(--transition);
}

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav.nav-internal {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; border-radius: 6px; }

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  padding-left: 24px;
}
.nav-item { position: relative; }
.nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
  letter-spacing: -0.1px;
}
.nav-trigger:hover, .nav-item:hover > .nav-trigger {
  color: var(--green-brand);
  background: var(--green-pale);
}
.nav-trigger-arrow {
  font-size: 9px;
  opacity: 0.45;
  transition: transform 0.22s;
  margin-left: 1px;
}
.nav-item:hover .nav-trigger-arrow { transform: rotate(180deg); opacity: 0.9; }

/* ── Mega Dropdown ─────────────────────────────────────────── */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  padding: 24px;
  min-width: 680px;
  animation: megaIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 100;
  margin-top: 8px;
}
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}
.nav-item:hover::after { pointer-events: auto; }
.mega-dropdown.wide { min-width: 860px; left: 0; transform: none; }
.mega-dropdown.narrow { min-width: 340px; }
@keyframes megaIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mega-dropdown.wide { animation: megaInWide 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes megaInWide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-item:hover .mega-dropdown { display: block; }

.mega-cols { display: grid; gap: 0; }
.mega-cols-2 { grid-template-columns: 1fr 1fr; }
.mega-cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.mega-col { padding: 4px 8px; }
.mega-col-divider { border-left: 1px solid var(--border-light); }
.mega-col-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  padding: 0 8px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-light);
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 8px;
  border-radius: 10px;
  transition: var(--transition);
  cursor: pointer;
  border-left: 2px solid transparent;
}
.mega-item:hover {
  background: var(--green-pale);
  border-left-color: var(--green-brand);
}
.mega-item-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}
.mega-item:hover .mega-item-icon { background: var(--white); box-shadow: var(--shadow-sm); }
.mega-item-text { flex: 1; }
.mega-item-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  line-height: 1.3;
}
.mega-item-desc {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.45;
}
.mega-item:hover .mega-item-label { color: var(--green-brand); }
.mega-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mega-footer-text { font-size: 0.78rem; color: var(--text-light); }
.mega-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-brand);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.mega-footer-cta:hover { background: var(--green-mid); transform: translateY(-1px); }
.mega-highlight {
  background: linear-gradient(135deg, var(--green-hero), #D8FFB4);
  border-radius: 12px;
  padding: 16px;
  margin-top: 4px;
}
.mega-highlight-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--green-brand); margin-bottom: 4px; }
.mega-highlight-title { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); margin-bottom: 3px; }
.mega-highlight-desc { font-size: 0.75rem; color: rgba(0,0,0,0.55); }

/* Right-side nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-login:hover { background: var(--bg-gray); color: var(--green-brand); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  overflow-y: auto;
  padding: 16px 20px 60px;
  z-index: 1999;
  border-top: 1px solid var(--border);
}
.mobile-menu.open, .mobile-menu.active { display: block; }
.nav-overlay.active { display: block; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-section { margin-bottom: 20px; }
.mobile-section-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  padding: 12px 8px 6px;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 8px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 10px;
  transition: var(--transition);
}
.mobile-link:hover { background: var(--green-pale); color: var(--green-brand); }
.mobile-link-icon { font-size: 18px; }
.nav-overlay {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: rgba(0,0,0,0.12);
  z-index: 1999;
  backdrop-filter: blur(3px);
}

/* ── Hero — Brevo Mint Style ─────────────────────────────────── */
.hero {
  padding: 0;
  background: var(--bg-mint);
  color: var(--text-dark);
}
.hero-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 24px 72px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-box::before {
  content: '';
  position: absolute;
  inset: -220px -180px auto auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(194,242,157,0.26) 0%, rgba(194,242,157,0.08) 35%, transparent 70%);
  border-radius: 999px;
  pointer-events: none;
  filter: blur(0px);
}
.hero-box::after {
  content: '';
  position: absolute;
  inset: auto auto -260px -220px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 35%, transparent 70%);
  border-radius: 999px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -1.6px;
}
.hero-content .lead {
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-region { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.region-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.4);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.region-btn:hover, .region-btn.active {
  border-color: var(--green-brand);
  background: var(--white);
  color: var(--green-brand);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; }
.hero-stats-card {
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.22);
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
}
.hero-stats-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, rgba(194,242,157,0.9), rgba(255,255,255,0) 60%);
  z-index: -1;
}
.hero-stats-card h3 { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; font-weight: 700; }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border-light); }
.stat-row:last-child { border-bottom: none; }
.stat-label { font-size: 0.85rem; color: var(--text-mid); }
.stat-val { font-size: 1rem; font-weight: 800; color: var(--green-brand); }
.stat-badge {
  font-size: 0.73rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--green-light);
  color: var(--green-brand);
}

/* Hero - Brevo-style pills/buttons on mint */
.hero .tag {
  background: rgba(0,0,0,0.07);
  color: var(--green-brand);
  border: 1px solid rgba(0,106,67,0.18);
}
.hero .btn-hero {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.hero .btn-hero:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}
.hero .btn-outline-hero {
  background: rgba(255,255,255,0.65);
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.18);
}
.hero .btn-outline-hero:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* ── Client Marquee ──────────────────────────────────────────── */
.client-marquee-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
  overflow: hidden;
}
.marquee-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}
.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-container::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content { display: flex; gap: 80px; padding-right: 80px; align-items: center; }
.marquee-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 0 20px; }
.marquee-logo {
  height: 30px; width: auto;
  filter: grayscale(100%) opacity(45%);
  transition: all 0.3s ease;
  transform: translateZ(0);
  will-change: transform;
}
.marquee-logo:hover { filter: grayscale(0%) opacity(100%); }
@keyframes scrollMarquee { to { transform: translateX(-50%); } }

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 90px 24px; }
.section-sm { padding: 60px 24px; }
.section-alt { background: var(--bg-warm); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-green { background: var(--green-brand); color: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── Feature Split ───────────────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-visual {
  background: linear-gradient(145deg, var(--green-light), var(--green-hero));
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.feature-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}
.feature-text { padding: 16px 0; }
.feature-text h2 { margin-bottom: 16px; }
.feature-text > p { margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.feature-list-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  background: var(--green-brand);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  margin-top: 1px;
}

/* ── Cards ───────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(0,79,58,0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-brand), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover::after { opacity: 1; }
.card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.875rem; }

/* ── Service Cards ────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--green-brand);
  box-shadow: 0 20px 60px rgba(0,79,58,0.12);
  transform: translateY(-6px);
}
.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-light), var(--green-hero));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.service-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-brand);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ── Pricing Cards ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: visible;
}
.pricing-card.featured {
  border-color: var(--green-brand);
  background: linear-gradient(160deg, var(--green-brand), var(--green-mid));
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0,79,58,0.28);
  transform: scale(1.03);
}
.pricing-card.featured p,
.pricing-card.featured .pricing-sub { color: rgba(255,255,255,0.72); }
.pricing-card:not(.featured):hover {
  border-color: rgba(0,79,58,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-hero);
  color: var(--green-brand);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(0,0,0,0.1);
}
.pricing-icon { font-size: 2.2rem; margin-bottom: 14px; margin-top: 10px; }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.pricing-sub { font-size: 0.85rem; margin-bottom: 20px; color: var(--text-light); }
.pricing-amount {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--green-brand);
  letter-spacing: -2px;
}
.pricing-card.featured .pricing-amount { color: var(--green-hero); }
.pricing-leads { font-size: 0.85rem; color: var(--text-light); margin-bottom: 28px; }
.pricing-card.featured .pricing-leads { color: rgba(255,255,255,0.6); }
.pricing-features { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-mid);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-feature::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  min-width: 18px;
  background: var(--green-light);
  color: var(--green-brand);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}
.pricing-card.featured .pricing-feature::before {
  background: rgba(194,242,157,0.25);
  color: var(--green-hero);
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.testimonial-card:hover {
  border-color: var(--green-hero);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-stars { font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ── Client Portfolio ────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}
.client-card:hover {
  border-color: var(--green-brand);
  box-shadow: 0 16px 48px rgba(0,79,58,0.16);
  transform: translateY(-6px);
}
.client-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.client-card:hover .client-card-img { transform: scale(1.03); }
.client-card-body {
  padding: 20px 24px;
}
.client-card-body h3 { font-size: 1rem; margin-bottom: 6px; }
.client-card-body p { font-size: 0.82rem; color: var(--text-light); }
.client-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green-brand);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ── Stats Row ───────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green-brand);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.stat-item-label { font-size: 0.86rem; color: var(--text-light); font-weight: 500; }

/* ── CTA Banner — Brevo mint style ──────────────────────────── */
.cta-banner {
  background: var(--bg-mint);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,106,67,0.12);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: rgba(0,106,67,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--text-dark); margin-bottom: 16px; }
.cta-banner p { color: var(--text-mid); max-width: 540px; margin: 0 auto 36px; }

/* ── Footer ──────────────────────────────────────────────────── */
/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--green-pale);
  color: var(--text-mid);
  padding: 130px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.globe-anim {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-hero);
  position: relative;
  overflow: hidden;
  box-shadow: inset -10px -10px 16px rgba(0,106,67,0.15), 0 10px 24px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.globe-sphere {
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0px, transparent 12px, rgba(0,106,67,0.2) 12px, rgba(0,106,67,0.2) 13px),
                    repeating-linear-gradient(0deg, transparent 0px, transparent 12px, rgba(0,106,67,0.2) 12px, rgba(0,106,67,0.2) 13px);
  animation: mapSpin 3s linear infinite;
  border-radius: 50%;
}
@keyframes mapSpin {
  0% { transform: translateX(0); }
  100% { transform: translateX(-13px); }
}

.footer-brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  transition: var(--transition);
  background: transparent !important;
}
.social-link:hover {
  border-color: var(--green-brand) !important;
  color: var(--green-brand) !important;
  background: rgba(0,255,100,0.05) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color var(--transition);
  line-height: 1.45;
  font-weight: 500;
}
.footer-link:hover { color: var(--green-brand); }
.footer-text-block {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
  display: block;
}

/* ── Footer Awards ────────────────────────────────────────────── */
.footer-awards {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.footer-awards-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.footer-awards-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.footer-awards-logos img {
  height: 65px !important;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: all 0.3s ease;
}
.footer-awards-logos img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.04);
}
.footer-awards { margin-top: 40px; padding: 36px 24px; border-top: 1px solid var(--border-light); text-align: center; }
.footer-awards-title { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 18px; }
.footer-awards-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-awards-logos img { height: 44px; object-fit: contain; filter: grayscale(100%) opacity(0.45); transition: all var(--transition); }
.footer-awards-logos img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--text-dark); }
.footer-copyright { font-size: 0.8rem; color: var(--text-light); }
.compliance-footer {
  background: var(--bg-gray);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 18px 24px;
  line-height: 1.65;
}
.compliance-footer a { color: var(--text-mid); }

/* Globe SVG animation */
.globe-animation-wrapper { width: 60px; height: 60px; }
.globe-svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--green-hero);
  stroke-width: 1.5;
  animation: globeSpin 12s linear infinite;
  opacity: 0.6;
}
@keyframes globeSpin { to { transform: rotateY(360deg); } }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green-brand);
  box-shadow: 0 0 0 3px rgba(0,79,58,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.78rem; color: var(--text-light); margin-top: 5px; }

/* ── Dashboard ───────────────────────────────────────────────── */
.dash-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
}
.dash-sidebar {
  background: var(--bg-dark);
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.dash-nav-item:hover, .dash-nav-item.active {
  background: rgba(194,242,157,0.1);
  color: var(--green-hero);
}
.dash-nav-icon { font-size: 18px; }
.dash-main { background: var(--bg-gray); padding: 40px; overflow-y: auto; }
.dash-panel { display: none; }
.dash-panel.active { display: block; }
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.dash-greeting {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-dark);
}

/* ── Service Selector Cards ──────────────────────────────────── */
.service-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.service-option {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-option:hover {
  border-color: var(--green-brand);
  box-shadow: 0 16px 48px rgba(0,79,58,0.14);
  transform: translateY(-4px);
}
.service-option.selected {
  border-color: var(--green-brand);
  background: var(--green-pale);
}
.service-option-icon { font-size: 3.2rem; margin-bottom: 16px; display: block; }
.service-option h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-option p { font-size: 0.86rem; color: var(--text-light); }

/* ── Progress Bar & Animations ───────────────────────────────── */
.progress-wrap { margin: 24px 0; }
.progress-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-brand);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blink { animation: blink 1s step-start infinite; }
@keyframes blink { 50% { opacity: 0; } }
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--green-light);
  border-radius: 50px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-brand), var(--accent));
  border-radius: 50px;
  width: 0%;
  transition: width 0.5s ease;
  animation: progressAnim 10s linear forwards;
}
@keyframes progressAnim { to { width: 100%; } }

/* ── Popup Modal ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92) translateY(20px);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.visible .modal-box {
  transform: scale(1) translateY(0);
}

/* ── Reveal Animation ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Steps ────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-brand), var(--accent));
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-brand);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,79,58,0.3);
  border: 4px solid var(--white);
}
.step-item h3 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.83rem; color: var(--text-light); }

/* ── Leads Quantity Selector ─────────────────────────────────── */
.qty-tier {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.qty-tier:hover, .qty-tier.selected {
  border-color: var(--green-brand);
  background: var(--green-pale);
}
.qty-tier-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.qty-tier-info p { font-size: 0.82rem; color: var(--text-light); }
.qty-tier-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-brand);
}

/* ── Secondary Pages Components ──────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 24px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--green-brand);
  box-shadow: 0 16px 48px rgba(0,79,58,0.12);
  transform: scale(1.02);
}
.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-brand);
  margin: 16px 0 8px;
}
.pricing-sub {
  font-size: 0.85rem;
  color: var(--text-light);
}
.pricing-leads {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.pricing-feature {
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-mid);
}
.pricing-feature:last-child {
  border-bottom: none;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--green-brand); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}
.faq-arrow {
  font-size: 1.2rem;
  color: var(--green-brand);
  transition: transform 0.3s ease;
}
.faq-answer {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  display: none;
}
.faq-item.active { border-color: var(--green-brand); box-shadow: var(--shadow-sm); }
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--text-dark); }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.4s ease; }

/* ── GDPR Banner ────────────────────────────────────────────────── */
.gdpr-banner {
  position: fixed;
  bottom: -20px;
  left: 24px;
  z-index: 9999;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 4px 14px rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}
.gdpr-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-44px);
}
@media(max-width:768px) {
  .gdpr-banner { left: 16px; right: 16px; bottom: 0; max-width: none; }
  .gdpr-banner.show { transform: translateY(-16px); }
  .gdpr-actions { flex-direction: column; width: 100%; }
  .gdpr-actions .btn { width: 100%; justify-content: center; }
}
.gdpr-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.gdpr-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gdpr-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.gdpr-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}
.gdpr-text a {
  color: var(--green-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gdpr-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ── Tabbed Industries Showcase ─────────────────────────────────── */
.tabs-wrapper {
  display: flex;
  gap: 32px;
  background: var(--bg-mint);
  border: 1px solid rgba(0,106,67,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 280px;
  flex-shrink: 0;
}
.tab-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-brand);
  opacity: 0.6;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}
.tab-btn:hover {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.tab-btn.active {
  background: var(--white);
  color: var(--green-brand);
  opacity: 1;
  box-shadow: 0 10px 30px rgba(0,106,67,0.08);
}
.tabs-content {
  flex-grow: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.tab-pane {
  display: none;
  animation: fadeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.tab-pane.active {
  display: block;
}
.tab-pane-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 480px;
}
.tab-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tab-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 12px;
}
.tab-text h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1.1;
}
.tab-text p {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.tab-highlights {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tab-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.tab-image {
  background: var(--bg-warm);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.tab-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
}
.tab-img-placeholder span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.9;
}
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .tabs-wrapper { flex-direction: column; padding: 24px; }
  .tabs-sidebar { display: grid; grid-template-columns: 1fr 1fr; min-width: 0; }
  .tab-pane-inner { grid-template-columns: 1fr; }
  .tab-image { min-height: 280px; }
  .tab-text { padding: 36px 24px; }

  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
}
@media (max-width: 900px) {
  .hero-box { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 44px) 16px 56px; gap: 34px; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .feature-split.reverse { direction: ltr; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  /* On small screens, prioritize hamburger over auth buttons */
  .nav-actions .nav-login,
  .nav-actions .btn { display: none; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-main { padding: 24px 16px; }
  .service-selector { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-bar { padding: 0 16px; }
  .hero-box { padding: calc(var(--nav-h) + 40px) 16px 52px; }
  .section { padding: 60px 16px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
