/* ═══════════════════════════════════════════════════════════
   THE OFFER SOURCE — Complete Unified Stylesheet
   Theme: Light green (#eafaf0 → white) + Navy (#101b2f) accents
   Fonts: Montserrat (headings) + Hind (body)
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────
   DESIGN TOKENS
───────────────────────────── */
:root {
  /* Brand Colors */
  --green:          #5dc311;
  --green-dark:     #4a9e0e;
  --green-light:    #eafaf0;
  --green-mid:      #d4f4e0;
  --green-glow:     rgba(93,195,17,0.18);
  --blue:           #1ea7e8;
  --navy:           #101b2f;
  --navy-mid:       #18273f;
  --navy-light:     #1e3050;

  /* Neutrals */
  --white:          #ffffff;
  --off-white:      #f6fbf8;
  --bg-light:       #f0f9f4;
  --text-dark:      #0a1628;
  --text-body:      #3d5068;
  --text-muted:     #6b7e92;
  --border-light:   rgba(93,195,17,0.15);
  --border-subtle:  rgba(10,22,40,0.08);

  /* Spacing */
  --section-pad:    100px;
  --wrap-width:     1200px;
  --radius:         16px;
  --radius-sm:      10px;
  --radius-xs:      8px;

  /* Shadows */
  --shadow-sm:      0 4px 16px rgba(10,22,40,0.06);
  --shadow-md:      0 8px 32px rgba(10,22,40,0.09);
  --shadow-lg:      0 20px 50px rgba(10,22,40,0.13);
  --shadow-green:   0 8px 28px rgba(93,195,17,0.28);

  /* Typography */
  --font-head:      'Montserrat', sans-serif;
  --font-body:      'Hind', sans-serif;

  /* Transitions */
  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─────────────────────────────
   RESET & BASE
───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, button { font-family: var(--font-body); outline: none; }
::selection { background: var(--green); color: #fff; }

/* ─────────────────────────────
   LAYOUT UTILITIES
───────────────────────────── */
.wrap {
  width: 90%;
  max-width: var(--wrap-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────
   SCROLL REVEAL
───────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ─────────────────────────────
   SHARED COMPONENTS
───────────────────────────── */

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255,255,255,0.5); }
.eyebrow__line { display: block; width: 28px; height: 1.5px; background: currentColor; border-radius: 2px; }

/* Section Head */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.section-head__title em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.section-head__title em::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 2px;
}
.section-head__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-xs);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.24s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 14px 28px; font-size: 14px; }
.btn--md { padding: 11px 22px; font-size: 13px; }
.btn--sm { padding: 8px 16px; font-size: 12px; }
.btn--full { width: 100%; justify-content: center; }

.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn--green:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 36px rgba(93,195,17,0.38);
  transform: translateY(-2px);
  color: #fff;
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(10,22,40,0.20);
}
.btn--outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--ghost-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.50);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
  transform: translateY(-2px);
}

/* CTA Row */
.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────────────────────────────
   HEADER
───────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(16,27,47,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(16,27,47,0.97);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hdr-inner {
  width: 90%;
  max-width: var(--wrap-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hdr-logo__text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.hdr-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.hdr-nav__link {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.hdr-nav__link:hover, .hdr-nav__link.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.hdr-actions { display: flex; gap: 10px; align-items: center; }
.hdr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 7px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
  cursor: pointer;
}
.hdr-btn--outline {
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
}
.hdr-btn--outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
}
.hdr-btn--fill {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 14px rgba(93,195,17,0.30);
}
.hdr-btn--fill:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ─────────────────────────────
   HERO
───────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,20,45,0.82) 0%,
    rgba(16,27,47,0.75) 50%,
    rgba(10,35,25,0.70) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--wrap-width);
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(93,195,17,0.15);
  border: 1px solid rgba(93,195,17,0.35);
  border-radius: 30px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(93,195,17,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(93,195,17,0); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.hero__title span { color: var(--green); }

.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 580px;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__ticker {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  padding: 12px 0;
  z-index: 3;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 36s linear infinite;
}
.ticker-track span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.8px;
  opacity: 0.85;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────
   AFFILIATE SECTION
───────────────────────────── */
.section-affiliate {
  position: relative;
  background: var(--off-white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.section-affiliate__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sa-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(93,195,17,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
}
.sa-blob {
  position: absolute;
  border-radius: 50%;
}
.sa-blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(93,195,17,0.07) 0%, transparent 70%);
  top: -150px; right: -120px;
}
.sa-blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(30,167,232,0.06) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  align-items: center;
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 40px;
  margin-bottom: 52px;
  box-shadow: 0 12px 40px rgba(16,27,47,0.18);
}
.stat { text-align: center; flex: 1; padding: 0 16px; }
.stat__n {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat__n sup { font-size: 15px; vertical-align: super; color: var(--green); }
.stat__l { font-family: var(--font-body); font-size: 12.5px; color: rgba(255,255,255,0.5); letter-spacing: 0.2px; }
.stat__sep { width: 1px; height: 36px; background: rgba(255,255,255,0.09); flex-shrink: 0; }

/* Feature Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
.feature-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(93,195,17,0.30);
}
.feature-card--featured {
  border-color: var(--green);
  background: linear-gradient(145deg, #fff 60%, rgba(93,195,17,0.03) 100%);
}
.feature-card--featured:hover {
  border-color: var(--green);
  box-shadow: 0 20px 50px rgba(93,195,17,0.14);
}
.feature-card__num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  color: rgba(10,22,40,0.09); letter-spacing: 1px;
}
.feature-card--featured .feature-card__num { color: rgba(93,195,17,0.20); }
.feature-card__badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px; margin-bottom: 14px;
}
.feature-card__icon {
  width: 62px; height: 62px;
  background: var(--green-light);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background 0.24s ease;
}
.feature-card:hover .feature-card__icon { background: rgba(93,195,17,0.15); }
.feature-card__icon img { width: 34px; height: 34px; object-fit: contain; }
.feature-card__title {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin: 0 0 8px;
}
.feature-card__text {
  font-family: var(--font-body); font-size: 14.5px;
  color: var(--text-muted); line-height: 1.65; margin: 0;
}
.feature-card__bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: 0; transition: opacity 0.28s ease;
}
.feature-card:hover .feature-card__bar { opacity: 1; }
.feature-card--featured .feature-card__bar { opacity: 1; background: var(--green); }

/* ─────────────────────────────
   SPLIT CTA BANNER  (light)
───────────────────────────── */
.split-cta {
  background: var(--white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.split-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, rgba(93,195,17,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 50%, rgba(30,167,232,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.split-cta__inner {
  width: 90%;
  max-width: var(--wrap-width);
  margin: 0 auto;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split-cta__card {
  position: relative;
  border-radius: 20px;
  padding: 52px 44px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.split-cta__card:hover { transform: translateY(-6px); }

.split-cta__card--affiliate {
  background: linear-gradient(140deg, #f0fbf0 0%, #e2f8e4 55%, #d8f5dc 100%);
  border: 1.5px solid rgba(93,195,17,0.22);
  box-shadow: 0 8px 36px rgba(93,195,17,0.10);
}
.split-cta__card--affiliate:hover {
  box-shadow: 0 20px 56px rgba(93,195,17,0.18);
  border-color: rgba(93,195,17,0.40);
}

.split-cta__card--advertiser {
  background: linear-gradient(140deg, #f0f6ff 0%, #e4effc 55%, #d8e9fa 100%);
  border: 1.5px solid rgba(30,107,232,0.18);
  box-shadow: 0 8px 36px rgba(30,107,232,0.08);
}
.split-cta__card--advertiser:hover {
  box-shadow: 0 20px 56px rgba(30,107,232,0.14);
  border-color: rgba(30,107,232,0.30);
}

/* Decorative circle blob behind each card */
.split-cta__card--affiliate::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,195,17,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.split-cta__card--advertiser::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,107,232,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.split-cta__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.split-cta__card--affiliate .split-cta__tag {
  background: rgba(93,195,17,0.14);
  border: 1px solid rgba(93,195,17,0.30);
  color: #3a8a08;
}
.split-cta__card--advertiser .split-cta__tag {
  background: rgba(30,107,232,0.10);
  border: 1px solid rgba(30,107,232,0.25);
  color: #1660c4;
}

.split-cta__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0 0 12px;
  position: relative; z-index: 1;
}
.split-cta__title strong { display: block; }
.split-cta__card--affiliate .split-cta__title strong { color: var(--green-dark); }
.split-cta__card--advertiser .split-cta__title strong { color: #1660c4; }

.split-cta__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.70;
  margin: 0 0 28px;
  max-width: 320px;
  position: relative; z-index: 1;
}

.split-cta__card .btn { position: relative; z-index: 1; }
.split-cta__card--advertiser .btn--green {
  background: #1a6fd4;
  box-shadow: 0 8px 24px rgba(26,111,212,0.28);
}
.split-cta__card--advertiser .btn--green:hover {
  background: #155bb5;
  box-shadow: 0 12px 32px rgba(26,111,212,0.38);
}

/* Blue button variant for advertiser card */
.split-cta__card--advertiser .split-cta__card--advertiser-btn {
  background: #1a6fd4;
  box-shadow: 0 8px 24px rgba(26,111,212,0.28);
}
.split-cta__card--advertiser .split-cta__card--advertiser-btn:hover {
  background: #155bb5;
  box-shadow: 0 12px 32px rgba(26,111,212,0.38);
  transform: translateY(-2px);
}
.split-cta__icon {
  position: absolute; bottom: 28px; right: 32px;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  opacity: 0.55;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.split-cta__card:hover .split-cta__icon { opacity: 0.85; transform: scale(1.08) rotate(-4deg); }
.split-cta__card--affiliate .split-cta__icon { background: rgba(93,195,17,0.16); }
.split-cta__card--advertiser .split-cta__icon { background: rgba(30,107,232,0.12); }
.split-cta__icon svg { width: 26px; height: 26px; }

/* ─────────────────────────────
   ADVERTISER SECTION  (light)
───────────────────────────── */
.section-advertiser {
  position: relative;
  background: var(--off-white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.section-advertiser__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.adv-blob { position: absolute; border-radius: 50%; }
.adv-blob--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(93,195,17,0.08) 0%, transparent 65%);
  top: -160px; right: -100px;
}
.adv-blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(30,167,232,0.07) 0%, transparent 65%);
  bottom: -80px; left: -60px;
}

/* dot pattern overlay */
.section-advertiser::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(93,195,17,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* Advertiser Header */
.adv-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 60px;
  margin-bottom: 52px; padding-bottom: 44px;
  border-bottom: 2px solid rgba(93,195,17,0.12);
}
.adv-head__left { flex: 0 0 auto; }
.adv-head__right {
  flex: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; padding-top: 10px; gap: 22px;
}
.adv-head__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: var(--text-dark); line-height: 1.1; margin: 0;
  letter-spacing: -0.5px;
}
.adv-head__title em { font-style: normal; color: var(--green); }
.adv-head__sub {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.75; margin: 0; max-width: 460px;
}

/* Bento Grid */
.adv-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.adv-card--wide { grid-column: span 2; display: flex; align-items: flex-start; gap: 22px; }
.adv-card--wide .adv-card__body { flex: 1; }

.adv-card__arrow {
  flex-shrink: 0; align-self: flex-end; margin-bottom: 4px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s ease;
}
.adv-card--wide:hover .adv-card__arrow {
  border-color: var(--green); color: var(--green);
  background: rgba(93,195,17,0.08);
  transform: translate(3px,-3px);
}

.adv-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: default;
}
.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(93,195,17,0.30);
}
.adv-card--accent {
  background: linear-gradient(145deg, #f5fef0 0%, #edfae2 100%);
  border-color: rgba(93,195,17,0.25);
}
.adv-card--accent:hover {
  border-color: rgba(93,195,17,0.48);
  box-shadow: 0 16px 40px rgba(93,195,17,0.12);
}

/* Green left-edge accent on wide card */
.adv-card--wide {
  border-left: 3px solid var(--green);
}

.adv-card__icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.24s ease;
}
.adv-card:hover .adv-card__icon { background: rgba(93,195,17,0.16); }
.adv-card--wide .adv-card__icon { margin-bottom: 0; }
.adv-card--accent .adv-card__icon { background: rgba(93,195,17,0.14); }
.adv-card__icon img { width: 30px; height: 30px; object-fit: contain; }

.adv-card__title {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin: 0 0 8px;
}
.adv-card__text {
  font-family: var(--font-body); font-size: 14.5px;
  color: var(--text-muted); line-height: 1.65; margin: 0;
}
.adv-card--accent .adv-card__text { color: var(--text-body); }

/* ─────────────────────────────
   CONTACT SECTION
───────────────────────────── */
.section-contact {
  position: relative;
  background: var(--white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.contact-bg__blob {
  position: absolute; border-radius: 50%;
}
.contact-bg__blob--1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(93,195,17,0.08) 0%, transparent 65%);
  top: -100px; left: -80px;
}
.contact-bg__blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(30,167,232,0.06) 0%, transparent 65%);
  bottom: -60px; right: -60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 30px;
  align-items: start;
}

/* Contact Info Panel */
.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.contact-info__item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__item:last-of-type { border-bottom: none; }
.contact-info__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info__label {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px;
}
.contact-info__val {
  font-family: var(--font-body); font-size: 14.5px;
  color: var(--text-dark); font-weight: 500;
  transition: color 0.2s ease;
}
a.contact-info__val:hover { color: var(--green); }
.contact-info__actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap__title {
  font-family: var(--font-head); font-size: 24px; font-weight: 800;
  color: var(--text-dark); margin: 0 0 6px;
}
.contact-form-wrap__sub {
  font-size: 15px; color: var(--text-muted); margin: 0 0 28px; line-height: 1.6;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(10,22,40,0.12);
  border-radius: var(--radius-xs);
  font-family: var(--font-body); font-size: 15px;
  color: var(--text-dark);
  background: #fafffe;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #a0adb8; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(93,195,17,0.12);
  background: #fff;
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 130px; }

.form-actions { margin-top: 4px; }
.form-note {
  font-size: 13px; color: var(--text-muted); margin-top: 12px; text-align: center;
}
.form-note a { color: var(--green); font-weight: 600; }
.form-note a:hover { text-decoration: underline; }
.form-status {
  margin-top: 10px; font-size: 14px; text-align: center; min-height: 20px;
  font-family: var(--font-head); font-weight: 600;
}
.form-status.success { color: var(--green); }
.form-status.error   { color: #e24b4a; }

/* ─────────────────────────────
   MAP SECTION
───────────────────────────── */
.section-map {
  padding: 60px 0 var(--section-pad);
  background: var(--bg-light);
}
.map-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.map-card:hover { box-shadow: var(--shadow-lg); }
.map-card__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-subtle);
}
.map-card__title {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin: 0 0 3px;
}
.map-card__sub {
  font-size: 13.5px; color: var(--text-muted); margin: 0;
}
.map-card__frame {
  position: relative;
  width: 100%;
  padding-bottom: 36%;
  overflow: hidden;
}
.map-card__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.footer {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--green));
}

.footer__top { padding: 72px 0 52px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* Brand col */
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; color: #fff; text-decoration: none;
}
.footer__logo-mark { flex-shrink: 0; }
.footer__logo span {
  font-family: var(--font-head); font-size: 17px; font-weight: 800;
  color: #fff; letter-spacing: -0.3px;
}
.footer__desc {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.48); line-height: 1.7;
  margin: 0 0 20px; max-width: 260px;
}
.footer__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all 0.22s ease;
}
.footer__social:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Columns */
.footer__col-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: 0.5px; margin: 0 0 16px;
  text-transform: uppercase;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer__links a:hover { color: var(--green); padding-left: 4px; }

/* Contact list in footer */
.footer__contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer__contact-list li {
  display: flex; gap: 10px; align-items: flex-start;
}
.footer__contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.footer__contact-list a,
.footer__contact-list span {
  font-family: var(--font-body); font-size: 13.5px;
  color: rgba(255,255,255,0.50);
}
.footer__contact-list a:hover { color: var(--green); }

/* Newsletter */
.footer__newsletter p {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.40); letter-spacing: 0.3px;
  margin: 0 0 10px; text-transform: uppercase;
}
.footer__newsletter-form { display: flex; gap: 8px; }
.footer__newsletter-form input {
  flex: 1; min-width: 0;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  font-family: var(--font-body); font-size: 13px;
  color: #fff;
  transition: border-color 0.2s ease;
}
.footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.30); }
.footer__newsletter-form input:focus {
  border-color: var(--green); outline: none;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer__bottom-links {
  display: flex; gap: 20px;
}
.footer__bottom-links a {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}
.footer__bottom-links a:hover { color: var(--green); }

/* ─────────────────────────────
   RESPONSIVE — Tablet (1024px)
───────────────────────────── */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__newsletter-form { flex-direction: column; }
  .adv-bento { grid-template-columns: repeat(2, 1fr); }
  .adv-card--wide { grid-column: span 2; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .contact-grid { grid-template-columns: 1fr; }
  .adv-head { flex-direction: column; gap: 26px; padding-bottom: 34px; }
  .adv-head__title { font-size: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ─────────────────────────────
   RESPONSIVE — Mobile (768px)
───────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  /* Header */
  .hdr-nav, .hdr-actions { display: none; }
  .hdr-burger { display: flex; }
  .hdr-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: rgba(16,27,47,0.98);
    padding: 14px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hdr-nav.is-open ul { flex-direction: column; gap: 0; }
  .hdr-nav.is-open .hdr-nav__link { display: block; padding: 12px 24px; font-size: 15px; }

  /* Hero */
  .hero__title { font-size: clamp(36px, 9vw, 52px); }
  .hero__btns { flex-direction: column; align-items: flex-start; }

  /* Affiliate section */
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-bar { flex-wrap: wrap; padding: 20px; gap: 16px; justify-content: center; }
  .stat { flex: 0 0 40%; }
  .stat__sep { display: none; }

  /* Split CTA */
  .split-cta__inner { grid-template-columns: 1fr; gap: 16px; }
  .split-cta__card { padding: 40px 32px; }

  /* Advertiser */
  .adv-bento { grid-template-columns: 1fr; }
  .adv-card--wide { grid-column: span 1; flex-direction: column; }
  .adv-card__arrow { display: none; }

  /* Map */
  .map-card__frame { padding-bottom: 55%; }
  .map-card__header { flex-direction: column; gap: 14px; align-items: flex-start; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 34px; }
  .stat { flex: 0 0 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .contact-info { padding: 26px 20px; }
}

/* ─────────────────────────────
   Box Fixed Height Alignment Helper
───────────────────────────── */
/* CONTACT GRID */
.contact-grid{
display:grid;
grid-template-columns: 420px 1fr;
gap:30px;
align-items:stretch;
}

/* LEFT BOX */
.contact-info{
height:100%;
display:flex;
flex-direction:column;
}

/* RIGHT BOX */
.contact-form-wrap{
height:100%;
display:flex;
flex-direction:column;
}

/* FORM FULL HEIGHT */
.contact-form{
flex:1;
display:flex;
flex-direction:column;
}

/* BUTTON BOTTOM ALIGN */
.form-actions{
margin-top:auto;
}


/* ─────────────────────────────
   Verified section design
───────────────────────────── */
.section-trusted{
padding:100px 0;
background:#f4f8ff;
}

.trusted-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.trusted-badge{
display:inline-block;
background:#e8f7df;
color:#5dc311;
font-weight:600;
font-size:13px;
padding:6px 14px;
border-radius:20px;
margin-bottom:15px;
}

.trusted-title{
font-size:38px;
font-weight:700;
margin-bottom:15px;
color:#0d1b2a;
}

.trusted-title span{
color:#5dc311;
}

.trusted-text{
color:#6b7280;
font-size:16px;
line-height:1.7;
max-width:500px;
}

.trusted-logos{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.trusted-logo{
background:#fff;
border-radius:16px;
padding:30px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
border:1px solid #eee;
transition:.3s;
}

.trusted-logo img{
height:40px;
object-fit:contain;
}

.trusted-logo:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.08);
}


.section-testimonials{
padding:100px 0;
background:#070f18;
}

.wrap{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.testimonials-head{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.testimonials-head h2{
font-size:34px;
color:#d8e6ff;
font-weight:700;
}

/* arrows */

.testimonial-nav{
display:flex;
gap:12px;
}

.t-btn{
width:42px;
height:42px;
border-radius:50%;
border:none;
background:#151c26;
color:#fff;
font-size:22px;
cursor:pointer;
transition:0.3s;
}

.t-btn:hover{
background:#5dc311;
}

/* slider */

.testimonial-slider{
padding-top:20px;
}

/* card */

.testimonial-card{
background:linear-gradient(145deg,#1a2230,#0f1622);
border:1px solid #1f2a3a;
border-radius:18px;
padding:26px;
transition:0.3s;
height:100%;
}

.testimonial-card:hover{
border-color:#5dc311;
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

/* top */

.testimonial-top{
display:flex;
align-items:center;
gap:12px;
margin-bottom:14px;
}

.testimonial-avatar{
width:38px;
height:38px;
border-radius:50%;
object-fit:cover;
}

.testimonial-name{
color:#fff;
font-weight:600;
}

.verified{
color:#5dc311;
margin-left:6px;
}

.testimonial-plus{
margin-left:auto;
color:#8b949e;
font-size:22px;
}

/* text */

.testimonial-card p{
color:#a9b4c2;
font-size:15px;
line-height:1.6;
}