/* ═══════════════════════════════════════════════════════════════
   Sajilo Funnel — Marketing Website Design System
   Premium, modern, glassmorphism-inspired SaaS marketing theme
   ═══════════════════════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
  /* Brand */
  --primary:        #5244F2;
  --primary-rgb:    82, 68, 242;
  --primary-hover:  #4032DB;
  --primary-light:  #EEECFF;
  --primary-dark:   #3B2FBF;
  --secondary:      #F59E0B;
  --secondary-hover:#D97706;
  --accent-cyan:    #06B6D4;
  --accent-pink:    #EC4899;

  /* Semantic */
  --success:        #10B981;
  --danger:         #EF4444;
  --warning:        #F59E0B;
  --info:           #3B82F6;

  /* Surfaces */
  --bg-body:        #F8FAFC;
  --bg-white:       #FFFFFF;
  --bg-dark:        #0B1120;
  --bg-dark-2:      #111827;
  --bg-dark-3:      #1E293B;
  --bg-muted:       #F1F5F9;

  /* Text */
  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-muted:     #94A3B8;
  --text-on-dark:   #E2E8F0;
  --text-on-primary:#FFFFFF;

  /* Borders */
  --border:         #E2E8F0;
  --border-light:   #F1F5F9;
  --border-dark:    rgba(255,255,255,0.08);

  /* Typography */
  --font-heading:   'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;

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

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 10px 30px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl:    0 20px 50px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-glow:  0 0 40px rgba(var(--primary-rgb), 0.25);
  --shadow-glow-lg: 0 0 80px rgba(var(--primary-rgb), 0.3);

  /* Glass */
  --glass-bg:     rgba(255,255,255,0.65);
  --glass-bg-dark:rgba(11,17,32,0.75);
  --glass-border: rgba(255,255,255,0.18);
  --glass-blur:   20px;

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring:  cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.15s;
  --duration-base: 0.3s;
  --duration-slow: 0.5s;

  /* Layout */
  --container-max: 1200px;
  --container-wide:1400px;
  --nav-height:    72px;
}


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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}
a:hover { color: var(--primary-hover); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}


/* ── Layout Utilities ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}
.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-5xl) 0;
}
.section--sm { padding: var(--space-3xl) 0; }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #FFFFFF;
}
.section--muted {
  background: var(--bg-muted);
}

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--duration-base) var(--ease-smooth);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--border-light);
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav__logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--duration-base) var(--ease-smooth);
}
.nav__link:hover { color: var(--primary); }
.nav__link:hover::after { width: 100%; }
.nav__link.active {
  color: var(--primary);
  font-weight: 600;
}
.nav__link.active::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast);
}
.nav__toggle:hover {
  background: var(--bg-muted);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-smooth);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }

.nav__toggle.active span { background: transparent; }
.nav__toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav__toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--duration-fast);
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: white;
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
  color: white;
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.btn--secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
}
.btn--ghost:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}
.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}
.btn--full { width: 100%; }
.btn--pill { border-radius: var(--radius-full); }

.btn--white {
  background: white;
  color: var(--primary);
  font-weight: 700;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}

.btn--outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-5xl)) 0 var(--space-5xl);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

/* Animated mesh gradient background */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float-slow 20s ease-in-out infinite;
}
.hero__bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -150px;
  animation: float-slow 25s ease-in-out infinite reverse;
}

/* Grid pattern overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s var(--ease-spring) both;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease-spring) 0.1s both;
}
.hero__title span {
  background: linear-gradient(135deg, var(--primary), #818CF8, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  animation: fadeInUp 0.6s var(--ease-spring) 0.2s both;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.6s var(--ease-spring) 0.3s both;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease-spring) 0.4s both;
}
.hero__avatars {
  display: flex;
}
.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -10px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__stats-text {
  color: var(--text-muted);
  font-size: 14px;
}
.hero__stats-text strong {
  color: white;
  font-weight: 700;
}

/* Hero dashboard mockup */
.hero__mockup {
  position: relative;
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.8s var(--ease-spring) 0.5s both;
}
.hero__mockup-img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__mockup-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2), transparent 70%);
  filter: blur(80px);
  z-index: -1;
}


/* ═══════════════════════════════════════════════════════════════
   LOGOS BAR (Social Proof)
   ═══════════════════════════════════════════════════════════════ */
.logos-bar {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
  text-align: center;
}
.logos-bar__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}
.logos-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  opacity: 0.5;
}
.logos-bar__item {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  letter-spacing: -0.5px;
}


/* ═══════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════ */
.features__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}
.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-md);
  background: var(--primary-light);
  color: var(--primary);
}
.section__title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: var(--space-md);
}
.section__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-smooth);
}
.feature-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-lg);
  background: var(--primary-light);
  color: var(--primary);
  transition: all var(--duration-base) var(--ease-smooth);
}
.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: white;
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.3);
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.feature-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════
   FEATURE SHOWCASE (alternating image+text)
   ═══════════════════════════════════════════════════════════════ */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}
.showcase--reverse { direction: rtl; }
.showcase--reverse > * { direction: ltr; }

.showcase__visual {
  position: relative;
}
.showcase__img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.showcase__glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08), transparent);
  filter: blur(60px);
  z-index: -1;
}

.showcase__content {
  max-width: 500px;
}
.showcase__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.showcase__title {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: var(--space-md);
}
.showcase__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.showcase__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.showcase__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 15px;
  color: var(--text-secondary);
}
.showcase__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 1px;
}


/* ═══════════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════════ */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}
.pricing__toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
}
.pricing__toggle-label.active {
  color: var(--text-primary);
  font-weight: 700;
}

.pricing__switch {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--duration-base);
}
.pricing__switch.active {
  background: var(--primary);
}
.pricing__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-base) var(--ease-bounce);
}
.pricing__switch.active::after {
  transform: translateX(28px);
}

.pricing__save-badge {
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--duration-base) var(--ease-smooth);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
  z-index: 2;
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}
.pricing-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.pricing-card__price {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text-primary);
}
.pricing-card__currency {
  font-size: 24px;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}
.pricing-card__period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-xl);
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-card__feature-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}
.pricing-card--featured .pricing-card__feature-check {
  background: rgba(var(--primary-rgb), 0.15);
}


/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--duration-base) var(--ease-smooth);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--secondary);
  font-size: 16px;
}
.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 15px;
}
.testimonial-card__role {
  font-size: 13px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary), #7C3AED, #6366F1);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  text-align: center;
  overflow: hidden;
  color: white;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px;
  right: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -80px;
  left: -80px;
}
.cta-banner > * { position: relative; z-index: 1; }

.cta-banner__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-md);
}
.cta-banner__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-smooth);
}
.faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
}
.faq-item.open {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--duration-fast);
}
.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--duration-base) var(--ease-smooth);
}
.faq-item.open .faq-item__icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-smooth),
              padding var(--duration-slow) var(--ease-smooth);
}
.faq-item.open .faq-item__answer {
  max-height: 500px;
}
.faq-item__answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-4xl) 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border-dark);
}

.footer__brand {
  max-width: 320px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: white;
  margin-bottom: var(--space-md);
  text-decoration: none;
}
.footer__brand-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 18px;
}
.footer__brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}
.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all var(--duration-fast) var(--ease-smooth);
}
.footer__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.5px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}
.footer__link:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  font-size: 13px;
  color: var(--text-muted);
}
.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}
.footer__bottom-link {
  color: var(--text-muted);
  font-size: 13px;
}
.footer__bottom-link:hover { color: white; }


/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.stats-bar__item {}
.stats-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-bar__label {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════════════════
   LEGAL / CONTENT PAGES
   ═══════════════════════════════════════════════════════════════ */
.legal-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: var(--bg-dark);
  text-align: center;
}
.legal-hero__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-md);
}
.legal-hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}
.legal-content h2 {
  font-size: 26px;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary-light);
}
.legal-content h3 {
  font-size: 20px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.legal-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-content strong {
  color: var(--text-primary);
}
.legal-content .info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-xl) 0;
}
.legal-content .info-box p {
  margin-bottom: 0;
  color: var(--text-primary);
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  transition: all var(--duration-base) var(--ease-smooth);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-card__title {
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all var(--duration-fast) var(--ease-smooth);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}


/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--bg-muted);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
}
.newsletter__form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: var(--space-lg) auto 0;
}
.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  outline: none;
  transition: border-color var(--duration-fast);
}
.newsletter__input:focus {
  border-color: var(--primary);
}


/* ═══════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.comparison-table th {
  background: var(--bg-dark);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
}
.comparison-table th:first-child {
  text-align: left;
}
.comparison-table td {
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  text-align: center;
  color: var(--text-secondary);
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table .check {
  color: var(--success);
  font-size: 18px;
}
.comparison-table .cross {
  color: var(--text-muted);
  font-size: 18px;
}
.comparison-table .highlight-col {
  background: rgba(var(--primary-rgb), 0.04);
}
.comparison-table th.highlight-col {
  color: var(--primary);
}


/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(30px, -20px); }
  50%      { transform: translate(-20px, 30px); }
  75%      { transform: translate(20px, 20px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Intersection Observer animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-spring),
              transform 0.6s var(--ease-spring);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }


/* ═══════════════════════════════════════════════════════════════
   ALERT MESSAGES
   ═══════════════════════════════════════════════════════════════ */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.alert--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.alert--info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT / FEATURES PAGE EXTRAS
   ═══════════════════════════════════════════════════════════════ */
.about-hero {
  padding: calc(var(--nav-height) + var(--space-5xl)) 0 var(--space-4xl);
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.icon-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all var(--duration-base) var(--ease-smooth);
}
.icon-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.icon-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.icon-card__title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.icon-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .showcase { gap: var(--space-2xl); }
  .contact-grid { grid-template-columns: 1fr; }
}

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

  .section { padding: var(--space-3xl) 0; }

  /* Mobile nav */
  .nav__links,
  .nav__actions {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-smooth);
    z-index: 999;
  }
  .nav__links.open,
  .nav__actions.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nav__actions {
    top: calc(var(--nav-height) + 200px);
    border-top: 1px solid var(--border);
  }
  .nav__actions .btn { width: 100%; }
  .nav__toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + var(--space-3xl)); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__social-proof { flex-direction: column; gap: var(--space-sm); }

  /* Grids */
  .features__grid,
  .pricing__grid,
  .testimonials__grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .showcase--reverse { direction: ltr; }

  .pricing-card--featured {
    transform: scale(1);
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .footer__top { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl) var(--space-md); }
  .footer__brand { grid-column: span 2; max-width: 100%; }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }

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

  .form-row { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }

  .comparison-table { font-size: 13px; }
  .comparison-table th,
  .comparison-table td {
    padding: var(--space-sm) var(--space-md);
  }
}

@media (max-width: 480px) {
  .container { padding-left: var(--space-md); padding-right: var(--space-md); }
  .stats-bar { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }


/* ═══════════════════════════════════════════════════════════════
   SELECTION
   ═══════════════════════════════════════════════════════════════ */
::selection {
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary-dark);
}
