/* ============================================================
   EmailLead — Global Stylesheet
   ============================================================ */

/* ── Google / Fontshare imports are in each HTML <head> ── */

:root {
  --bg-base:          #FAF9F6;
  --surface-card:     #F1ECE4;
  --accent-primary:   #4C1D95;
  --accent-secondary: #059669;
  --highlight:        #FBBF24;
  --text-dark:        #111827;
  --text-muted:       #6B7280;
  --border:           #E5E7EB;
  --white:            #FFFFFF;

  --font-display: 'Clash Display', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Section Spacing ────────────────────────────────────── */
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }

/* ── Scroll Animations ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2), transform 0.65s cubic-bezier(.22,.68,0,1.2);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Card Hover ─────────────────────────────────────────── */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(76, 29, 149, 0.12) !important;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-secondary);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-green::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.45s ease;
}
.btn-green:hover { background: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.3); }
.btn-green:hover::after { left: 160%; }

.btn-violet-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  background: transparent;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-violet-outline:hover { background: var(--accent-primary); color: var(--white); transform: translateY(-2px); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--accent-primary);
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-white:hover { background: var(--bg-base); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

/* ── Label Pills ────────────────────────────────────────── */
.label-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(76,29,149,0.06);
  margin-bottom: 20px;
}
.label-pill-white {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
}
.label-pill-amber {
  border-color: var(--highlight);
  color: #92400E;
  background: rgba(251,191,36,0.12);
}
.label-pill-green {
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  background: rgba(5,150,105,0.08);
}

/* ── Section Headings ───────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--text-dark);
}
.section-heading-white { color: var(--white); }
.section-subheading {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}
.section-subheading-white { color: rgba(255,255,255,0.72); }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  backdrop-filter: blur(12px);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
  backdrop-filter: blur(12px);
}
.navbar-brand img { height: 45px; width: auto; transition: opacity 0.18s ease, filter 0.18s ease; }
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.navbar-nav .nav-link:hover { color: var(--accent-secondary) !important; background: rgba(76,29,149,0.06); }
.navbar-nav .nav-link.active { color: var(--accent-secondary) !important; }
.navbar-cta {
  background: var(--accent-secondary) !important;
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  transition: background 0.2s, transform 0.2s !important;
  -webkit-text-fill-color: #ffffff !important;
}
.navbar-cta:hover {
  background: #3b1578 !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Index page only: transparent navbar over light hero, becomes white on scroll */
.navbar-hero {
  background: transparent !important;
  box-shadow: none !important;
}
.navbar-hero .nav-link { color: var(--text-dark) !important; }
.navbar-hero.scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08) !important;
}
.navbar-hero.scrolled .nav-link { color: var(--text-dark) !important; }

/* ── Hero (Homepage) ─────────────────────────────────────── */
.hero-home {
  min-height: 100vh;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-blob {
  position: absolute;
  right: -10%;
  top: 5%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(76,29,149,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-home .hero-content { position: relative; z-index: 2; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.hero-h1 span { color: var(--accent-primary); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:not(:first-child):not(:last-child) { padding-left: 24px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--highlight);
  display: block;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* Hero gradient divider */
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  z-index: 3;
}

/* Hero Analytics Card */
.analytics-mockup-wrap {
  position: relative;
  z-index: 2;
}
.analytics-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(76,29,149,0.14);
  border: 1px solid var(--border);
  min-width: 320px;
}
.analytics-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-bottom: 18px;
}
.mini-bar {
  flex: 1;
  background: rgba(76,29,149,0.15);
  border-radius: 4px 4px 0 0;
  transition: background 0.3s;
}
.mini-bar:nth-child(1) { height: 40%; }
.mini-bar:nth-child(2) { height: 65%; }
.mini-bar:nth-child(3) { height: 52%; }
.mini-bar:nth-child(4) { height: 80%; background: var(--accent-primary); }
.mini-bar:nth-child(5) { height: 72%; background: var(--accent-primary); }
.mini-bar:nth-child(6) { height: 90%; background: var(--accent-primary); }
.metric-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.metric-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
}
.metric-pill-violet { background: rgba(76,29,149,0.1); color: var(--accent-primary); }
.metric-pill-green  { background: rgba(5,150,105,0.1); color: var(--accent-secondary); }

.notification-card {
  position: absolute;
  bottom: -28px;
  left: -40px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  transform: rotate(-2deg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 3;
}
.notif-dot {
  width: 10px; height: 10px;
  background: var(--accent-secondary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}

/* ── Marquee Bar ─────────────────────────────────────────── */
.marquee-bar {
  background: var(--accent-primary);
  padding: 0;
  height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: var(--highlight);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Bento Grid (Services) ──────────────────────────────── */
.bento-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bento-icon-wrap {
  width: 52px; height: 52px;
  background: var(--accent-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.bento-icon-wrap i { color: var(--white); font-size: 22px; }
.bento-card h5 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  flex-grow: 1;
  line-height: 1.7;
}
.bento-link {
  color: var(--accent-primary);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.bento-link:hover { gap: 10px; }
.bento-row { margin-bottom: 20px; }

/* ── Feature Split (Why EmailLead) ──────────────────────── */
.feature-row-wrap { display: flex; flex-direction: column; gap: 32px; }
.feature-row {
  padding-left: 22px;
  border-left: 3px solid var(--accent-primary);
}
.feature-row h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-row p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ── Industry Scroll ─────────────────────────────────────── */



.industry-chip {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--border);
  cursor: default;
  transition: transform 0.25s, box-shadow 0.25s;
}
.industry-chip:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(76,29,149,0.1); }
.industry-chip i { font-size: 26px; }
.ic-1  { background: rgba(76,29,149,0.06); }
.ic-2  { background: rgba(5,150,105,0.06); }
.ic-3  { background: rgba(251,191,36,0.08); }
.ic-4  { background: rgba(76,29,149,0.08); }
.ic-5  { background: rgba(5,150,105,0.08); }
.ic-6  { background: rgba(251,191,36,0.06); }
.ic-7  { background: rgba(76,29,149,0.05); }
.ic-8  { background: rgba(5,150,105,0.05); }
.ic-9  { background: rgba(251,191,36,0.07); }
.ic-10 { background: rgba(76,29,149,0.07); }

/* ── Stats Strip ─────────────────────────────────────────── */
.stats-strip { background: var(--accent-primary); }
.stat-block { text-align: center; padding: 60px 20px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
  position: relative;
  display: inline-block;
}
.stat-num::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--highlight);
  border-radius: 2px;
  margin: 6px auto 0;
  width: 60%;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-top: 10px;
}

/* ── Process Timeline Rail ──────────────────────────────── */
.timeline-rail {
  position: relative;
  padding: 60px 0;
}
.timeline-line {
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-line-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transform-origin: left;
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.timeline-step { text-align: center; }
.timeline-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-primary);
  position: relative;
  z-index: 2;
}
.timeline-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: left;
}
.timeline-card h6 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

@media (max-width: 767px) {
  .timeline-line { display: none; }
  .timeline-steps { grid-template-columns: 1fr 1fr; }
}

/* ── CTA Banner Sections ─────────────────────────────────── */
.cta-split-card {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #6d28d9 100%);
  border-radius: 24px;
  padding: 56px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-split-card h2 { font-family: var(--font-display); font-size: clamp(26px,3vw,38px); color: var(--white); margin-bottom: 16px; }
.cta-split-card p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 30px; }

/* ── Blog Cards ──────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-body h5 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 12px 0 8px; line-height: 1.35; }
.blog-card-body p { font-size: 14px; color: var(--text-muted); flex-grow: 1; }
.blog-read-link {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.blog-read-link:hover { gap: 10px; }

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter-section { background: var(--accent-primary); }
.newsletter-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 56px 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.newsletter-icon i { font-size: 26px; color: var(--white); }
.newsletter-card h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); color: var(--white); margin-bottom: 12px; }
.newsletter-card p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-note { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 12px; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #111827;
  padding: 80px 0 0;
}
.footer-brand-desc { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.75; margin: 16px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
}
.footer-social-btn:hover { border-color: var(--accent-secondary); color: var(--accent-secondary); }
.footer-col h6 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-secondary); }
.footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; margin: 0; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.4); font-size: 13px; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Page Hero Variants ──────────────────────────────────── */
.page-hero-violet {
  background: var(--accent-primary);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero-violet::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #059669 100%);
  padding: 140px 0 90px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: -40px;
  position: relative;
}
.page-hero-sand {
  background: var(--surface-card);
  padding: 140px 0 90px;
}

/* ── Blog-style Hero (copied from blogs.html) ───────────────── */
.blog-hero {
  background: var(--accent-primary);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.blog-hero h1 span {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.7;
}
.hero-meta-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.hero-meta-item i { color: rgba(251,191,36,0.8); font-size: 14px; }

/* Index page logo stays dark (light bg hero) */
.navbar-hero .navbar-toggler-icon { filter: none; }
.navbar-hero.scrolled .navbar-toggler-icon { filter: none; }

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.breadcrumb-custom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb-custom a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-custom li + li::before { content: '/'; margin-right: 8px; }

/* ── Forms ───────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 16px 48px rgba(76,29,149,0.1);
  border: 1px solid var(--border);
}
.form-card h4 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.form-card .form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  display: block;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 20px;
}
.form-input:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(76,29,149,0.1); }
.form-input::placeholder { color: #9CA3AF; }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { -webkit-appearance: none; cursor: pointer; }
.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-privacy i { color: var(--accent-secondary); }

/* ── Service Sections (Services Page) ───────────────────── */
.service-section { padding: 100px 0; }
.service-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.service-badge-violet { background: rgba(76,29,149,0.1); color: var(--accent-primary); border: 1px solid rgba(76,29,149,0.2); }
.service-badge-green  { background: rgba(5,150,105,0.1);  color: var(--accent-secondary); border: 1px solid rgba(5,150,105,0.2); }
.service-section h2 { font-family: var(--font-display); font-size: clamp(28px,3.5vw,44px); font-weight: 700; margin-bottom: 18px; }
.service-section p { font-size: 15.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.service-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}
.service-feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.sfi-violet { background: rgba(76,29,149,0.1); color: var(--accent-primary); }
.sfi-green  { background: rgba(5,150,105,0.1);  color: var(--accent-secondary); }
.service-feature-item strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 2px; }
.service-feature-item span   { font-size: 13px; color: var(--text-muted); }
.service-img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(76,29,149,0.12);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ── Comparison Table ────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.comparison-table thead th {
  background: var(--accent-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 18px 20px;
  text-align: left;
}
.comparison-table tbody tr:nth-child(even) { background: var(--bg-base); }
.comparison-table tbody tr:nth-child(odd) { background: var(--white); }
.comparison-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.comparison-table td:first-child { font-weight: 700; font-family: var(--font-display); }

/* ── About Page ──────────────────────────────────────────── */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1.25;
}
.values-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  height: 100%;
}
.values-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.values-card h5 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.values-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.dark-feature-row {
  padding: 20px 22px;
  border-left: 3px solid var(--highlight);
  margin-bottom: 24px;
}
.dark-feature-row h5 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.dark-feature-row p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }

/* ── Blog Page ───────────────────────────────────────────── */
.featured-post-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.featured-post-img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.featured-post-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.post-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 12px; margin: 12px 0 16px; }
.featured-post-body h2 { font-family: var(--font-display); font-size: clamp(22px,2.5vw,34px); font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.featured-post-body p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }

/* ── Contact Page ────────────────────────────────────────── */
.trust-card {
  background: linear-gradient(135deg, var(--accent-primary), #6d28d9);
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.trust-point {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.trust-point strong { font-family: var(--font-display); font-size: 15px; display: block; margin-bottom: 2px; }
.trust-point span { font-size: 13px; color: rgba(255,255,255,0.65); }
.contact-info-block {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(76,29,149,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--accent-primary);
}
.contact-info-block h6 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-block p { font-size: 13.5px; color: var(--text-muted); margin: 0; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(76,29,149,0.08);
  color: var(--accent-primary);
  border: 1px solid rgba(76,29,149,0.15);
}

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--white);
}
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
  padding: 22px 28px;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--accent-primary); background: rgba(76,29,149,0.03); }
.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234C1D95'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body { padding: 0 28px 24px; font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 44px 0 14px; }
.legal-content p { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { padding-left: 22px; color: #374151; font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.legal-content li { margin-bottom: 6px; }

/* ── Marketer Page Stats Row ─────────────────────────────── */
.marketer-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.marketer-stat strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--accent-primary); display: block; }
.marketer-stat span { font-size: 13px; color: var(--text-muted); }

/* ── Feature Icon Row ────────────────────────────────────── */
.feature-icon-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.feature-icon-circle {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(76,29,149,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}
.feature-icon-row h6 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.feature-icon-row p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ── Utility ─────────────────────────────────────────────── */
.text-violet { color: var(--accent-primary); }
.text-green  { color: var(--accent-secondary); }
.text-amber  { color: var(--highlight); }
.text-muted-custom { color: var(--text-muted); }
.bg-base     { background: var(--bg-base); }
.bg-surface  { background: var(--surface-card); }
.bg-violet   { background: var(--accent-primary); }
.bg-white    { background: var(--white); }
.rounded-20  { border-radius: 20px; }
.rounded-24  { border-radius: 24px; }
.shadow-card { box-shadow: 0 8px 30px rgba(0,0,0,0.07); }
.shadow-strong { box-shadow: 0 20px 50px rgba(76,29,149,0.12); }
.divider-violet { height: 3px; background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary)); border: none; border-radius: 2px; margin: 0; }

/* ── Responsive Tweaks ───────────────────────────────────── */
@media (max-width: 991px) {
  .hero-home { padding-top: 90px; }
  .analytics-mockup-wrap { margin-top: 60px; }
  .notification-card { left: -10px; bottom: -20px; }
  .cta-split-card { border-radius: 20px 20px 0 0; }
  .featured-post-img { min-height: 240px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 72px 0; }
  .hero-h1 { font-size: 38px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 16px !important; }
  .hero-stat:last-child { border-bottom: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline-steps { grid-template-columns: 1fr 1fr; }
  .service-features { flex-direction: column; }
  .marketer-stats { gap: 20px; }
  .form-card { padding: 32px 24px; }
}

@media (max-width: 575px) {
  .hero-h1 { font-size: 32px; }
  .bento-card { padding: 26px; }
  .featured-post-body { padding: 28px 24px; }
  .cta-split-card { padding: 40px 28px; }
}
/* Active nav link — always green regardless of scroll state */
.navbar-nav .nav-link.active,
.navbar-hero .navbar-nav .nav-link.active,
.navbar-hero.scrolled .navbar-nav .nav-link.active,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--accent-secondary) !important;
}

/* Industry chips — infinite auto-scroll */
.industry-scroll-wrap {
  overflow: hidden !important;
  padding-bottom: 12px;
  display: flex;
  flex-direction: row;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.industry-scroll-track {
  display: flex !important;
  flex-shrink: 0;
  gap: 16px;
  padding: 4px 2px;
  width: max-content;
  animation: industry-scroll 30s linear infinite;
}
.industry-scroll-track:hover { animation-play-state: paused; }
@keyframes industry-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
