/* ============================================================
   VERITY ADS — GLOBAL STYLESHEET
   Brand System: Navy · Electric Blue · Cyan · Gold · White
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:          #071A2F;
  --deep-blue:     #0B2A4A;
  --electric-blue: #007BFF;
  --cyan:          #21C7F3;
  --gold:          #FFC927;   /* ← Secondary brand color */
  --gold-dark:     #E6B020;   /* Darker gold for hover states */
  --gold-light:    #FFD966;   /* Lighter gold for subtle tints */
  --light-bg:      #F5F8FC;
  --white:         #FFFFFF;
  --dark-text:     #1B2430;
  --muted-text:    #667085;
  --border-gray:   #E5EAF1;
  --card-bg:       #FFFFFF;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #071A2F 0%, #0B2A4A 50%, #0d3460 100%);
  --grad-blue:    linear-gradient(135deg, #007BFF 0%, #21C7F3 100%);
  --grad-dark:    linear-gradient(135deg, #071A2F 0%, #0B2A4A 100%);
  --grad-gold:    linear-gradient(135deg, #FFC927 0%, #FFD966 100%);
  --grad-gold-navy: linear-gradient(135deg, #071A2F 0%, #1a2f00 50%, #FFC927 100%);
  --grad-glow:    rgba(0, 123, 255, 0.15);
  --grad-gold-glow: rgba(255, 201, 39, 0.15);
  --grad-section: linear-gradient(180deg, #F5F8FC 0%, #FFFFFF 100%);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(7,26,47,0.08);
  --shadow-md:   0 8px 24px rgba(7,26,47,0.12);
  --shadow-lg:   0 20px 60px rgba(7,26,47,0.18);
  --shadow-blue: 0 8px 32px rgba(0,123,255,0.25);
  --shadow-gold: 0 8px 32px rgba(255,201,39,0.30);
  --shadow-glow: 0 0 40px rgba(33,199,243,0.15);

  /* Typography */
  --font-sans:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', monospace;

  /* Sizes */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav height */
  --nav-h: 72px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark-text);
}
.text-white h1, .text-white h2, .text-white h3,
.hero-section h1, .hero-section h2,
.dark-section h1, .dark-section h2, .dark-section h3 { color: var(--white); }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--dark-text); }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted-text);
}

/* ─── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 600px; margin: 16px auto 0; color: var(--muted-text); font-size: 1.1rem; }

.dark-section { background: var(--grad-dark); }
.dark-section h2, .dark-section h3, .dark-section h4 { color: var(--white); }
.dark-section p { color: rgba(255,255,255,0.75); }
.dark-section .muted { color: rgba(255,255,255,0.55); }

.light-section { background: var(--light-bg); }
.white-section  { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,123,255,0.4);
  filter: brightness(1.08);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--electric-blue);
  border-color: var(--electric-blue);
}
.btn-outline:hover {
  background: var(--electric-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.btn-dark:hover {
  background: var(--deep-blue);
  transform: translateY(-2px);
}

/* ─── Gold / Secondary Button ───────────────────────────── */
.btn-gold {
  background: var(--grad-gold);
  color: var(--navy);
  border-color: transparent;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,201,39,0.45);
  filter: brightness(1.06);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-group.center { justify-content: center; }

/* ─── Badge / Label ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-blue {
  background: rgba(0,123,255,0.12);
  color: var(--electric-blue);
  border: 1px solid rgba(0,123,255,0.2);
}
.badge-cyan {
  background: rgba(33,199,243,0.12);
  color: var(--cyan);
  border: 1px solid rgba(33,199,243,0.2);
}
.badge-gold {
  background: rgba(255,201,39,0.15);
  color: #8B6A00;
  border: 1px solid rgba(255,201,39,0.35);
}
.badge-gold-dark {
  background: rgba(255,201,39,0.18);
  color: var(--gold);
  border: 1px solid rgba(255,201,39,0.3);
}
.badge-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ─── Header / Navigation ───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(7,26,47,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), var(--shadow-md);
}

.site-header.transparent { background: transparent; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--grad-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-login {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.nav-login:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.nav-signup {
  background: var(--grad-gold);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255,201,39,0.3);
}
.nav-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,201,39,0.45);
  filter: brightness(1.06);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
}
.mobile-menu .nav-link:hover { background: rgba(255,255,255,0.07); }
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─── Hero Sections ─────────────────────────────────────── */
.hero-section {
  background: var(--grad-hero);
  padding: calc(var(--nav-h) + 80px) 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(33,199,243,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge { margin-bottom: 20px; }
.hero-headline {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero-headline .accent {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}
.hero-trust-item svg { color: var(--cyan); flex-shrink: 0; }

/* ─── Stats Counter Bar ─────────────────────────────────── */
.stats-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  backdrop-filter: blur(12px);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
/* every 3rd stat uses cyan for variety */
.stat-item:nth-child(3n) .stat-number { color: var(--cyan); }
.stat-item:nth-child(3n+2) .stat-number { color: var(--gold); }
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  height: auto;
}

/* ─── Feature Cards ─────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,123,255,0.15);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0,123,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--electric-blue);
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p  { color: var(--muted-text); font-size: 0.9rem; line-height: 1.6; }

/* Dark variant */
.feature-card.dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.feature-card.dark h3 { color: var(--white); }
.feature-card.dark p  { color: rgba(255,255,255,0.6); }
.feature-card.dark .feature-icon {
  background: rgba(0,123,255,0.15);
}

/* ─── Who It's For: Large Audience Cards ────────────────── */
.audience-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border-gray);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity var(--transition);
}
.audience-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.audience-card-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-size: 2rem;
}
.audience-card.advertiser .audience-card-icon {
  background: rgba(0,123,255,0.1);
  color: var(--electric-blue);
}
.audience-card.publisher .audience-card-icon {
  background: rgba(33,199,243,0.1);
  color: var(--cyan);
}
.audience-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.audience-card > p { color: var(--muted-text); margin-bottom: 28px; }

.audience-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.audience-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--dark-text);
}
.audience-feature-item .check {
  width: 20px; height: 20px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.audience-card.advertiser .check { background: rgba(0,123,255,0.12); color: var(--electric-blue); }
.audience-card.publisher  .check { background: rgba(33,199,243,0.12); color: var(--cyan); }

/* ─── Ad Format Cards ───────────────────────────────────── */
.format-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,123,255,0.2);
}
.format-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(0,123,255,0.08) 0%, rgba(33,199,243,0.08) 100%);
  border: 1px solid rgba(0,123,255,0.12);
}
.format-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.format-card p  { color: var(--muted-text); font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.format-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.format-tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--light-bg);
  color: var(--muted-text);
  border: 1px solid var(--border-gray);
}

/* ─── How It Works Steps ─────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }

.step-item {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px; right: -1px;
  width: 2px; height: 2px;
  border-top: 2px dashed rgba(0,123,255,0.3);
  width: 100%;
  top: 52px; right: auto; left: 60%;
  width: calc(40%);
}

.step-number {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
}
.step-item h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--dark-text); }
.step-item p  { font-size: 0.85rem; color: var(--muted-text); }

/* Dark steps */
.dark-section .step-item h4 { color: var(--white); }
.dark-section .step-item p  { color: rgba(255,255,255,0.6); }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: rgba(0,123,255,0.1);
  font-family: Georgia, serif;
  position: absolute;
  top: 12px; left: 24px;
  pointer-events: none;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 24px;
  margin-top: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-info strong { display: block; font-size: 0.9rem; color: var(--dark-text); }
.testimonial-info span   { font-size: 0.8rem; color: var(--muted-text); }
.testimonial-stars { display: flex; gap: 2px; color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }

/* ─── FAQ Accordion ─────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open {
  border-color: rgba(0,123,255,0.2);
  box-shadow: 0 4px 20px rgba(0,123,255,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-text);
  gap: 16px;
  user-select: none;
}
.faq-question:hover { color: var(--electric-blue); }

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: var(--radius-full);
  background: rgba(0,123,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--electric-blue);
}
.faq-item.open .faq-toggle { background: var(--electric-blue); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* Dark FAQ */
.dark-section .faq-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.dark-section .faq-question { color: var(--white); }
.dark-section .faq-answer   { color: rgba(255,255,255,0.65); }

/* ─── Dashboard Mockup ──────────────────────────────────── */
.dashboard-mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(12px);
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.dashboard-dot {
  width: 10px; height: 10px;
  border-radius: var(--radius-full);
}
.dashboard-dot.red   { background: #FF5F57; }
.dashboard-dot.amber { background: #FFBD2E; }
.dashboard-dot.green { background: #28CA41; }

.dashboard-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dashboard-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
}
.dashboard-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.dashboard-stat-key {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 4px;
}
.dashboard-chart-area {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--grad-blue);
  opacity: 0.7;
  min-height: 20px;
}

/* ─── Traffic Map Placeholder ───────────────────────────── */
.traffic-map {
  position: relative;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-svg-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top:0; left:0;
  opacity: 0.25;
}
.map-pulse {
  width: 12px; height: 12px;
  border-radius: var(--radius-full);
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(33,199,243,0.5);
  animation: pulse-map 2s infinite;
  position: absolute;
}
@keyframes pulse-map {
  0%   { box-shadow: 0 0 0 0 rgba(33,199,243,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(33,199,243,0); }
  100% { box-shadow: 0 0 0 0 rgba(33,199,243,0); }
}

/* ─── Comparison Table ──────────────────────────────────── */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  background: var(--grad-dark);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-gray);
  color: var(--dark-text);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(0,123,255,0.03); }

.check-yes { color: #22C55E; font-size: 1.1rem; }
.check-no  { color: #E5EAF1; font-size: 1.1rem; }
.check-part{ color: #F59E0B; font-size: 1.1rem; }

/* ─── Pricing / Bidding Cards ───────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.pricing-card.featured {
  background: var(--grad-dark);
  border-color: rgba(0,123,255,0.3);
  box-shadow: var(--shadow-blue);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured:hover { box-shadow: 0 24px 60px rgba(0,123,255,0.35); }

.pricing-card .badge { margin: 0 auto 16px; }
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pricing-card.featured h3 { color: var(--white); }
.pricing-card p { color: var(--muted-text); font-size: 0.9rem; }
.pricing-card.featured p { color: rgba(255,255,255,0.65); }

/* ─── Form Styles ───────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-text); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; cursor: pointer; }

.form-error { font-size: 0.8rem; color: #EF4444; margin-top: 4px; display: none; }
.form-input.invalid, .form-select.invalid, .form-textarea.invalid { border-color: #EF4444; }
.form-input.invalid + .form-error,
.form-select.invalid + .form-error,
.form-textarea.invalid + .form-error { display: block; }

.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #166534;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.visible { display: flex; }

/* ─── Blog Cards ────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-img {
  height: 180px;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,123,255,0.2), rgba(33,199,243,0.1));
}

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.8rem; color: var(--muted-text); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--dark-text); transition: color var(--transition); }
.blog-card h3 a:hover { color: var(--electric-blue); }
.blog-card p { font-size: 0.875rem; color: var(--muted-text); line-height: 1.6; flex: 1; margin-bottom: 16px; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social-btn:hover { background: rgba(0,123,255,0.2); border-color: var(--electric-blue); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-divider { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.footer-contact a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color var(--transition); }
.footer-contact a:hover { color: var(--cyan); }

/* ─── Cookie Banner ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--deep-blue);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}
.cookie-banner.visible { display: flex; flex-direction: column; gap: 16px; }
.cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.cookie-banner p a { color: var(--cyan); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-accept { flex: 1; }
.cookie-reject { padding: 10px 16px; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); background: transparent; cursor: pointer; transition: all var(--transition); }
.cookie-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(33,199,243,0.1) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 640px; margin: 0 auto 36px; }

/* ─── Trust & Safety Section ────────────────────────────── */
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-item:last-child { border-bottom: none; }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255,201,39,0.10);
  border: 1px solid rgba(255,201,39,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-content h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.trust-content p  { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ─── Animations ────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up    { animation: fadeInUp 0.7s ease forwards; }
.animate-fade-in    { animation: fadeIn 0.5s ease forwards; }
.animate-slide-left { animation: slideInLeft 0.7s ease forwards; }
.animate-float      { animation: float 4s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
.stagger > *:nth-child(7) { transition-delay: 0.35s; }
.stagger > *:nth-child(8) { transition-delay: 0.4s; }

/* ─── CTA Section ───────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #071A2F 0%, #0B2A4A 60%, #1a2400 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,201,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p  { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 40px; position: relative; z-index: 1; font-size: 1.1rem; }
.cta-section .btn-group { position: relative; z-index: 1; }

/* ─── Scroll Progress ───────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--gold));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ─── Back to Top ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
  border: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ─── Glassmorphism Card ─────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 72px 0; }
  .section-lg { padding: 80px 0; }
  .container { padding: 0 20px; }

  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }

  .hero-section { padding: calc(var(--nav-h) + 48px) 0 64px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 24px; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-item::after { display: none; }

  .dashboard-stat-row { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .audience-card { padding: 32px 24px; }

  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  .cookie-banner { left: 16px; right: 16px; }
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ─── Gold Utility Classes ─────────────────────────────── */
.color-gold  { color: var(--gold) !important; }
.color-gold-dark { color: var(--gold-dark) !important; }
.bg-gold     { background: var(--gold); }
.gradient-text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold accent border */
.border-gold { border-color: var(--gold) !important; }

/* Gold highlight strip — decorative top border on cards */
.gold-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Gold glow chip — inline stat highlight */
.gold-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,201,39,0.12);
  border: 1px solid rgba(255,201,39,0.25);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Gold icon background */
.icon-gold {
  background: rgba(255,201,39,0.12);
  color: var(--gold);
  border: 1px solid rgba(255,201,39,0.2);
}

/* Gold section accent line */
.gold-accent-line {
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad-gold);
  margin: 16px auto 0;
}
.gold-accent-line.left { margin-left: 0; }

/* ─── Utility ────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.relative { position: relative; }
.z-1 { position: relative; z-index: 1; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.w-full { width: 100%; }
.color-blue { color: var(--electric-blue); }
.color-cyan { color: var(--cyan); }
.color-gold { color: var(--gold); }
.color-muted { color: var(--muted-text); }
.color-white { color: var(--white); }
.gradient-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: var(--border-gray);
  margin: 0;
}
.section-divider.dark { background: rgba(255,255,255,0.08); }

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(0,123,255,0.06) 0%, rgba(33,199,243,0.06) 100%);
  border: 1px solid rgba(0,123,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* Number metrics */
.metric-large {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

/* Partner logos placeholder */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.4;
  filter: grayscale(1);
}
.partner-logo-placeholder {
  height: 32px;
  display: flex;
  align-items: center;
  color: var(--muted-text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* Tag row */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(0,123,255,0.08);
  color: var(--electric-blue);
  border: 1px solid rgba(0,123,255,0.15);
}
.tag.cyan { background: rgba(33,199,243,0.08); color: var(--cyan); border-color: rgba(33,199,243,0.15); }
.tag.gold { background: rgba(255,201,39,0.10); color: var(--gold-dark); border-color: rgba(255,201,39,0.25); }
.tag.gray { background: var(--light-bg); color: var(--muted-text); border-color: var(--border-gray); }
