/* ============================================================
   e-Afri Invoice — Premium SaaS Design System
   Color Palette (afrinvoice.com inspired):
     Primary  (purple — dominant):    #7D25EC
     Accent   (pink — used sparingly): #f14881
     Accent   (teal/cyan):            #2dd4bf
     Dark BG:                         #1a0b2e (deep purple)
     Light BG:                        #faf5ff, #ffffff
     Dark text:                       #0f0418
   NOTE: Variable names retained (--green-*, --gold-*) for
   backward compatibility — values now hold the new palette.
============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-900: #1a0b2e;
  --green-800: #2d1b4e;
  --green-700: #5b14b8;
  --green-600: #7D25EC;
  --green-500: #9333ea;
  --green-400: #2dd4bf;
  --green-100: #ede4ff;
  --green-50: #faf5ff;
  --gold-600: #be185d;
  --gold-500: #f14881;
  --gold-400: #f472b6;
  --gold-300: #fbcfe8;
  --gold-100: #fce7f3;
  --dark: #0f0418;
  --dark-2: #1a0b2e;
  --gray-800: #1f2937;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06), 0 2px 8px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .10), 0 4px 12px rgba(0, 0, 0, .06);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .12), 0 8px 24px rgba(0, 0, 0, .08);
  --transition: .22s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .4s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', 'Poppins', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--green-100);
  color: var(--green-800);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Typography ────────────────────────────────────────────── */
.display-hero {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.display-xl {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.display-lg {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.body-xl {
  font-size: 1.2rem;
  line-height: 1.7;
}

.body-lg {
  font-size: 1.05rem;
  line-height: 1.7;
}

.body-md {
  font-size: .95rem;
  line-height: 1.65;
}

.body-sm {
  font-size: .85rem;
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(90deg, var(--green-400) 0%, var(--green-600) 55%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold-500);
}

.text-green {
  color: var(--green-600);
}

.text-muted-custom {
  color: var(--gray-600);
}

/* ── Utility ───────────────────────────────────────────────── */
.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.section-pad-lg {
  padding: 130px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-label.gold {
  color: var(--gold-600);
  background: var(--gold-100);
  border-color: var(--gold-300);
}

.divider-line {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  color: var(--white) !important;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(125, 37, 236, .28), 0 2px 6px rgba(125, 37, 236, .18);
  letter-spacing: .01em;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(125, 37, 236, .38), 0 4px 12px rgba(125, 37, 236, .22);
  color: var(--white) !important;
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-primary-custom:active {
  transform: translateY(0);
}

/* Ripple */
.btn-primary-custom .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: ripple-anim .6s linear;
  pointer-events: none;
}

.btn-primary-custom:disabled {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 28px;
  opacity: 0.5;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-700) !important;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--green-600);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .01em;
}

.btn-secondary-custom:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--green-700) !important;
}

.btn-gold-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
  color: var(--white) !important;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(241, 72, 129, .35);
  letter-spacing: .01em;
}

.btn-gold-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(241, 72, 129, .45);
  color: var(--white) !important;
}

.btn-lg-custom {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm-custom {
  padding: 9px 20px;
  font-size: .85rem;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition-slow), padding var(--transition-slow), box-shadow var(--transition-slow);
}

.navbar-custom.scrolled {
  background: rgba(15, 4, 24, .78);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 4px 24px rgba(0, 0, 0, .35);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white) !important;
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
  transition: height var(--transition-slow);
}

.navbar-custom.scrolled .brand-logo {
  height: 50px;
}

.brand-logo-footer {
  height: 62px;
}

.nav-link-custom {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85) !important;
  padding: 6px 2px !important;
  margin: 0 14px;
  position: relative;
  transition: color var(--transition);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  border-radius: 999px;
  transition: width var(--transition);
}

.nav-link-custom:hover {
  color: var(--white) !important;
}

.nav-link-custom:hover::after {
  width: 100%;
}

.nav-link-custom.active {
  color: var(--white) !important;
}

.nav-link-custom.active::after {
  width: 100%;
}

.navbar-custom.scrolled .nav-link-custom {
  color: rgba(255, 255, 255, .78) !important;
}

.navbar-custom.scrolled .nav-link-custom:hover,
.navbar-custom.scrolled .nav-link-custom.active {
  color: var(--white) !important;
}

.hamburger-custom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger-custom span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition), background var(--transition);
  transform-origin: left center;
}

.navbar-custom.scrolled .hamburger-custom span {
  background: var(--white);
}

.hamburger-custom.open span:nth-child(1) {
  transform: rotate(45deg) translateY(-1px);
}

.hamburger-custom.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-custom.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(1px);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--dark-2);
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(125, 37, 236, .22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(241, 72, 129, .08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(45, 212, 191, .10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  color: var(--gold-300);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

.hero-headline {
  color: var(--white);
}

.hero-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 24px 0 40px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-text {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
  letter-spacing: .02em;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark-2);
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}

.hero-avatar:first-child {
  margin-left: 0;
}

/* Hero card float */
.hero-visual {
  position: relative;
}

.hero-card-float {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: var(--white);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero-card-main {
  animation: float-card 5s ease-in-out infinite;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-mini-card {
  position: absolute;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  animation: float-card 4s ease-in-out infinite;
  font-size: .82rem;
  color: var(--white);
}

.hero-mini-card.card-1 {
  top: -20px;
  right: -20px;
  animation-delay: .8s;
}

.hero-mini-card.card-2 {
  bottom: -16px;
  left: -16px;
  animation-delay: 1.4s;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(125, 37, 236, .15);
  border: 1px solid rgba(125, 37, 236, .25);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-400);
}

.invoice-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
}

.invoice-preview-header {
  background: rgba(125, 37, 236, .25);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-300, #99f6e4);
}

.invoice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
}

.invoice-row:last-child {
  border-bottom: none;
}

.status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
}

.status-badge.paid {
  background: rgba(45, 212, 191, .2);
  color: #99f6e4;
}

.status-badge.pending {
  background: rgba(241, 72, 129, .2);
  color: var(--gold-300);
}

.status-badge.sent {
  background: rgba(59, 130, 246, .2);
  color: #93c5fd;
}

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--green-900);
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--gold-400);
}

.stat-desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  letter-spacing: .02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .1);
  margin: auto;
}

/* ── Feature Cards ─────────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-100);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green-600);
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: var(--green-600);
  color: var(--white);
  transform: scale(1.08);
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ── How It Works ──────────────────────────────────────────── */
.how-bg {
  background: var(--gray-50);
}

.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  min-width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(125, 37, 236, .3);
  flex-shrink: 0;
}

.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-400), transparent);
  margin: 4px 0 4px 21px;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-100);
  font-family: Georgia, serif;
  font-weight: 900;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: .9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}

.author-role {
  font-size: .78rem;
  color: var(--gray-400);
}

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  height: 100%;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.pricing-card.popular {
  border: 2px solid var(--green-600);
  box-shadow: 0 8px 40px rgba(125, 37, 236, .15);
}

.pricing-card:hover:not(.popular) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(125, 37, 236, .22);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px 8px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 4px 12px rgba(125, 37, 236, .3);
}

.pricing-tier {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-600);
  margin-bottom: 12px;
}

.pricing-tier.gold {
  color: var(--gold-600);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1;
  margin: 16px 0 4px;
}

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: .6rem;
  font-weight: 600;
}

.pricing-period {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.pricing-desc {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0 0 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.pricing-features li .check-icon {
  color: var(--green-600);
  font-size: .85rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-100);
}

.pricing-features li.unavailable {
  opacity: .45;
}

.pricing-features li.unavailable .check-icon {
  color: var(--gray-400);
  background: var(--gray-100);
  border-color: var(--gray-200);
}

/* Toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.billing-toggle button {
  background: none;
  border: none;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-400);
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.billing-toggle button.active {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.save-badge {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--gold-300);
  margin-left: 10px;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--green-700);
}

.faq-icon {
  min-width: 24px;
  height: 24px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-size: .8rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-600);
  color: white;
  border-color: var(--green-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s ease;
  padding: 0 24px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--green-900);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(125, 37, 236, .35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(241, 72, 129, .1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ── Trusted Logos ─────────────────────────────────────────── */
.logo-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 0;
}

.logo-item {
  opacity: .45;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-600);
  transition: opacity var(--transition);
  padding: 8px 20px;
}

.logo-item:hover {
  opacity: .9;
}

/* ── Alternating Section ───────────────────────────────────── */
.alt-section {
  padding: 100px 0;
}

.alt-section:nth-child(even) {
  background: var(--gray-50);
}

.feature-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.feature-media img {
  width: 100%;
  display: block;
}

.media-overlay-card {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  font-size: .82rem;
  min-width: 160px;
}

/* ── Team Cards ────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  position: relative;
}

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125, 37, 236, .03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.team-card:hover::after {
  opacity: 1;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  border: 3px solid var(--green-100);
  box-shadow: 0 4px 16px rgba(125, 37, 236, .25);
}

.team-role {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-600);
  margin-bottom: 8px;
}

.team-socials {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.team-social-btn {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: .82rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.team-social-btn:hover {
  background: var(--green-600);
  color: white;
  transform: translateY(-2px);
}

/* ── Timeline ──────────────────────────────────────────────── */
.timeline-wrap {
  position: relative;
  padding-left: 24px;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-600), var(--green-100));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 40px 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--green-600);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--green-100);
}

.timeline-step-num {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-600);
  margin-bottom: 6px;
}

/* ── Contact Form ──────────────────────────────────────────── */
.form-control-custom {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: .95rem;
  font-family: var(--font);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-control-custom:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(125, 37, 236, .1);
}

.form-control-custom::placeholder {
  color: var(--gray-400);
}

.form-label-custom {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group-custom {
  margin-bottom: 20px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer-main {
  background: var(--dark-2);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 40px;
}

.footer-brand-desc {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--green-400);
  transform: translateX(3px);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin: 48px 0 24px;
}

.footer-bottom-text {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social-btn:hover {
  background: var(--green-700);
  color: white;
  transform: translateY(-2px);
}

.footer-newsletter-input {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.footer-newsletter-input input {
  flex: 1;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .85rem;
  color: white;
  outline: none;
  font-family: var(--font);
  transition: border-color var(--transition);
}

.footer-newsletter-input input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.footer-newsletter-input input:focus {
  border-color: var(--green-500);
}

.footer-newsletter-input button {
  background: var(--green-700);
  border: none;
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.footer-newsletter-input button:hover {
  background: var(--green-600);
}

/* ── Toast ─────────────────────────────────────────────────── */
.toast-container-custom {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark);
  min-width: 280px;
  animation: toast-in .4s cubic-bezier(.34, 1.56, .64, 1) both;
}

.toast-custom.removing {
  animation: toast-out .3s ease-in forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(100%) scale(.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.toast-icon {
  font-size: 1.1rem;
}

.toast-icon.success {
  color: var(--green-600);
}

.toast-icon.error {
  color: #ef4444;
}

.toast-icon.info {
  color: #3b82f6;
}

/* ── Glassmorphism Panels ──────────────────────────────────── */
.glass-panel {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--dark-2);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(125, 37, 236, .2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(241, 72, 129, .07) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 24px;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

.breadcrumb-custom a:hover {
  color: var(--green-400);
}

.breadcrumb-custom .sep {
  color: rgba(255, 255, 255, .2);
}

.breadcrumb-custom .current {
  color: rgba(255, 255, 255, .7);
}

/* ── Legal / Terms ─────────────────────────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
  letter-spacing: -0.01em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 20px 20px;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.8;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-toc {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.legal-toc h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 14px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--green-700);
  font-size: .88rem;
  line-height: 2;
}

.legal-toc ol li a {
  color: var(--green-700);
  transition: color var(--transition);
}

.legal-toc ol li a:hover {
  color: var(--green-500);
  text-decoration: underline;
}

/* ── Map Placeholder ───────────────────────────────────────── */
.map-placeholder {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: .9rem;
  font-weight: 500;
  overflow: hidden;
  position: relative;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath fill='none' stroke='%23e5e7eb' stroke-width='1' d='M60 0L0 0 0 60'/%3E%3C/svg%3E") repeat;
  opacity: .6;
}

/* ── Scroll to top ─────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green-700);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(125, 37, 236, .4);
  z-index: 999;
  font-size: 1rem;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-visual {
    margin-top: 60px;
  }

  .hero-mini-card.card-1 {
    top: -10px;
    right: -10px;
  }

  .hero-mini-card.card-2 {
    bottom: -10px;
    left: -10px;
  }

  .media-overlay-card {
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 72px 0;
  }

  .section-pad-lg {
    padding: 80px 0;
  }

  .hero-section {
    padding: 120px 0 72px;
  }

  .display-hero {
    font-size: 2.2rem;
  }

  .display-xl {
    font-size: 1.8rem;
  }

  .display-lg {
    font-size: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .hero-mini-card {
    display: none;
  }

  .media-overlay-card {
    display: none;
  }

  .cta-banner {
    padding: 72px 0;
  }

  .footer-main {
    padding: 60px 0 32px;
  }
}

/* ── AOS Custom ────────────────────────────────────────────── */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-2);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, .1);
  border-top-color: var(--green-400);
  border-right-color: var(--gold-400);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Comparison Table ──────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .88rem;
}

.compare-table thead th {
  background: var(--green-900);
  color: white;
  padding: 16px 20px;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius-md) 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}

.compare-table thead th.highlight {
  background: var(--green-700);
}

.compare-table tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  color: var(--gray-600);
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.compare-table tbody tr:hover td {
  background: var(--gray-50);
}

.compare-table tbody td.highlight {
  background: rgba(125, 37, 236, .04);
}

.compare-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius-md);
}

.compare-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius-md) 0;
}

.check-yes {
  color: var(--green-600);
  font-size: 1rem;
}

.check-no {
  color: var(--gray-300);
  font-size: 1rem;
}

/* ── Misc Polish ───────────────────────────────────────────── */
.green-dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.green-dot-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 1.6;
}

.green-dot-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
}

/* ── Mission/Vision Cards ──────────────────────────────────── */
.mv-card {
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
}

.mv-card.mission {
  background: var(--green-900);
  color: white;
}

.mv-card.vision {
  background: var(--dark-2);
  color: white;
}

.mv-card.values {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: white;
}

.mv-card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: .85;
}

.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: white;
  letter-spacing: -0.01em;
}

.mv-card p {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

/* ── How it works visual steps ─────────────────────────────── */
.step-visual-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.step-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.step-visual-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  letter-spacing: -0.04em;
}

.step-visual-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(125, 37, 236, .3);
  transition: transform var(--transition);
}

.step-visual-card:hover .step-visual-icon {
  transform: scale(1.08) rotate(-3deg);
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  font-size: 1.5rem;
  opacity: .5;
}

/* ── Highlight Box ─────────────────────────────────────────── */
.highlight-box {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-left: 4px solid var(--green-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--green-800);
  line-height: 1.7;
}

/* ── Nigeria-specific section ──────────────────────────────── */
.nigeria-flag-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--green-600);
  font-weight: 600;
}

.nigeria-flag-icon {
  font-size: 1.1rem;
}

/* ── Scroll progress bar ───────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
}