/* ================================================================
   ONYI Landing Page v3 - Mobile-First Design System
   Base styles = mobile (320px+). Scale up with min-width queries.
   All classes prefixed l- to avoid conflicts with style.css
   ================================================================ */

/* Naira sign (₦ U+20A6) — not in Outfit; borrow Inter 700 so it
   renders at the same visual weight as the Outfit 800 numerals.   */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700 800;
  src: local('Inter'), local('Inter-Bold');
  unicode-range: U+20A6;
}

/* ---- 1. Tokens ------------------------------------------------- */
:root {
  --l-bg: #0F1117;
  --l-bg-elevated: #141821;
  --l-card: #1A2030;
  --l-border: rgba(255, 255, 255, 0.07);
  --l-border-h: rgba(255, 255, 255, 0.14);
  --l-t1: #F1F5F9;
  --l-t2: #CBD5E1;
  --l-t3: #64748B;
  --l-accent: #12B86A;
  --l-accent-dim: rgba(18, 184, 106, 0.10);
  --l-accent-bdr: rgba(18, 184, 106, 0.22);
  --l-shadow: 0 4px 20px rgba(0, 0, 0, 0.40);
  --l-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --l-r: 12px;
  --l-r-lg: 20px;
  --l-r-full: 9999px;
  --l-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --l-sy: 64px;
  /* section padding y - mobile default */
}

html.light {
  --l-bg: #F8FAFC;
  --l-bg-elevated: #F1F5F9;
  --l-card: #FFFFFF;
  --l-border: rgba(0, 0, 0, 0.07);
  --l-border-h: rgba(0, 0, 0, 0.14);
  --l-t1: #0F172A;
  --l-t2: #334155;
  --l-t3: #64748B;
  --l-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --l-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  :root {
    --l-sy: 96px;
  }
}

@media (min-width: 1024px) {
  :root {
    --l-sy: 120px;
  }
}

/* ---- 2. Base --------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--l-bg);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- 3. Container ---------------------------------------------- */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 480px) {
  .l-container {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .l-container {
    padding: 0 28px;
  }
}

/* ---- 4. NAVBAR ------------------------------------------------- */
.l-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(15, 17, 23, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--l-border);
  transition: padding 0.3s ease, background 0.3s ease;
}

html.light .l-navbar {
  background: rgba(248, 250, 252, 0.9);
}

.l-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.l-navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.l-navbar__logo img {
  height: 32px;
  width: auto;
}

.l-navbar__logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--l-t1);
  letter-spacing: -0.5px;
}

/* Desktop nav links - hidden on mobile */
.l-navbar__links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--l-t2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.l-navbar__links a:hover,
.l-navbar__links a.active {
  color: var(--l-accent);
}

@media (min-width: 900px) {
  .l-navbar__links {
    display: flex;
  }
}

/* Desktop actions */
.l-navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hide Start Free button on very small screens to prevent overflow */
.l-navbar__actions .l-btn--sm {
  display: none;
}

@media (min-width: 400px) {
  .l-navbar__actions .l-btn--sm {
    display: inline-flex;
  }
}

/* Hamburger button - visible only on mobile */
.l-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--l-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 9px;
  flex-shrink: 0;
}

.l-hamburger span {
  display: block;
  height: 2px;
  background: var(--l-t2);
  border-radius: 2px;
  transition: width 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

/* Fries stagger: wide -> medium -> short */
.l-hamburger span:nth-child(1) {
  width: 20px;
}

.l-hamburger span:nth-child(2) {
  width: 14px;
}

.l-hamburger span:nth-child(3) {
  width: 9px;
}

/* Open state -> equal widths, form an X */
.l-hamburger.open span:nth-child(1) {
  width: 18px;
  transform: translateY(7px) rotate(45deg);
}

.l-hamburger.open span:nth-child(2) {
  width: 18px;
  opacity: 0;
}

.l-hamburger.open span:nth-child(3) {
  width: 18px;
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .l-hamburger {
    display: none;
  }
}

/* Mobile drawer */
.l-mobile-nav {
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--l-bg);
  border-top: 1px solid var(--l-border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 40px;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--l-ease);
}

.l-mobile-nav.open {
  transform: translateX(0);
}

.l-mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--l-t1);
  text-decoration: none;
  border-radius: var(--l-r);
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.l-mobile-nav a:hover,
.l-mobile-nav a:active,
.l-mobile-nav a.active {
  background: var(--l-card);
  border-color: var(--l-border);
  color: var(--l-accent);
}

.l-mobile-nav__divider {
  height: 1px;
  background: var(--l-border);
  margin: 12px 0;
}

.l-mobile-nav__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .l-mobile-nav {
    display: none !important;
  }
}

/* ---- 5. Section helpers ---------------------------------------- */
.l-section {
  padding: var(--l-sy) 0;
}

.l-section--alt {
  background: var(--l-bg-elevated);
}

/* ---- 6. Section header ---------------------------------------- */
.l-section-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .l-section-header {
    margin-bottom: 64px;
  }
}

/* ---- 7. Typography -------------------------------------------- */
.l-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--l-accent);
  margin-bottom: 12px;
}

.l-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--l-t1);
  margin-bottom: 14px;
}

.l-sub {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--l-t3);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.l-accent {
  color: var(--l-accent);
}

/* ---- 8. Badge -------------------------------------------------- */
.l-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--l-accent);
  background: var(--l-accent-dim);
  border: 1px solid var(--l-accent-bdr);
  border-radius: var(--l-r-full);
  padding: 6px 14px;
  margin-bottom: 20px;
}

.l-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--l-accent);
  flex-shrink: 0;
  animation: l-pulse 2.4s ease-in-out infinite;
}

@keyframes l-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(18, 184, 106, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(18, 184, 106, 0);
  }
}

/* ---- 9. Buttons ----------------------------------------------- */
.l-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: var(--l-r);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--l-ease), background 0.3s ease,
    box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .l-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

.l-btn--primary {
  background: var(--l-accent);
  color: #08110E;
  box-shadow: 0 4px 16px rgba(18, 184, 106, 0.28);
}

.l-btn--primary:hover {
  background: #0EA85F;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(18, 184, 106, 0.38);
}

.l-btn--ghost {
  background: transparent;
  color: var(--l-t2);
  border-color: var(--l-border-h);
}

.l-btn--ghost:hover {
  border-color: var(--l-accent);
  color: var(--l-accent);
  background: var(--l-accent-dim);
}

.l-btn--lg {
  padding: 15px 30px;
  font-size: 15px;
}

.l-btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}

@media (min-width: 768px) {
  .l-btn--lg {
    padding: 16px 36px;
    font-size: 16px;
  }
}

/* Full-width buttons on mobile */
.l-btn--block {
  width: 100%;
  justify-content: center;
}

/* ---- 10. Scroll animation -------------------------------------- */
.l-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--l-ease), transform 0.65s var(--l-ease);
}

.l-fade-up.l-visible {
  opacity: 1;
  transform: none;
}

/* ---- 11. HERO -------------------------------------------------- */
.l-hero {
  position: relative;
  padding: 100px 0 56px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .l-hero {
    padding: 128px 0 80px;
  }
}

@media (min-width: 1024px) {
  .l-hero {
    padding: 156px 0 96px;
  }
}

.l-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(18, 184, 106, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.l-hero .l-container {
  position: relative;
  z-index: 1;
}

/* Mobile: single column stack */
.l-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 768px) {
  .l-hero__inner {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .l-hero__inner {
    gap: 56px;
  }
}

.l-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 1;
}

/* Image goes below text on mobile */
.l-hero__right {
  order: 2;
}

.l-hero__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 7vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--l-t1);
  margin-bottom: 16px;
}

.l-hero__desc {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--l-t3);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
}

.l-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 32px;
}

@media (min-width: 480px) {
  .l-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    gap: 12px;
    margin-bottom: 40px;
  }
}

.l-hero__actions .l-btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .l-hero__actions .l-btn {
    width: auto;
  }
}

.l-hero__trust {
  display: flex;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--l-border);
  flex-wrap: wrap;
}

.l-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--l-border);
  border-top: 2px solid var(--l-accent);
  border-radius: 10px;
  padding: 14px 20px;
  min-width: 120px;
  flex: 1;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.l-hero__stat:hover {
  background: rgba(18, 184, 106, 0.05);
  border-color: var(--l-accent-bdr);
  border-top-color: var(--l-accent);
}

.l-hero__stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--l-accent);
  line-height: 1;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .l-hero__stat strong {
    font-size: 28px;
  }
}

.l-hero__stat span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--l-t3);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* Hero slider frame - no browser chrome */
.l-hero-frame {
  border-radius: var(--l-r-lg);
  overflow: hidden;
  border: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .l-hero-frame {
    animation: l-float 7s ease-in-out infinite;
  }
}

/* Browser chrome frame for feature screenshots */
.l-browser {
  border-radius: var(--l-r-lg);
  overflow: hidden;
  border: 1px solid var(--l-border);
  box-shadow: var(--l-shadow-lg);
  transition: transform 0.4s var(--l-ease);
}

.l-browser:hover {
  transform: scale(1.01);
}

@keyframes l-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.l-browser__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--l-bg-elevated);
  border-bottom: 1px solid var(--l-border);
}

.l-browser__dots {
  display: flex;
  gap: 5px;
}

.l-browser__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.l-browser__dot:nth-child(1) {
  background: #FF5F57;
}

.l-browser__dot:nth-child(2) {
  background: #FFBD2E;
}

.l-browser__dot:nth-child(3) {
  background: #28C840;
}

.l-browser__url {
  flex: 1;
  font-size: 11px;
  color: var(--l-t3);
  background: var(--l-bg);
  border: 1px solid var(--l-border);
  border-radius: 6px;
  padding: 4px 10px;
  margin: 0 8px;
  font-family: 'Inter', monospace;
}

.l-browser__content img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- 12. Proof strip ------------------------------------------ */
.l-proof {
  padding: 28px 0;
  border-top: 1px solid var(--l-border);
  border-bottom: 1px solid var(--l-border);
  background: var(--l-bg-elevated);
}

@media (min-width: 768px) {
  .l-proof {
    padding: 36px 0;
  }
}

.l-proof__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--l-t3);
  margin-bottom: 16px;
}

.l-proof__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.l-proof__logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--l-bg);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--l-t3);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.l-proof__logo:hover {
  border-color: var(--l-border-h);
  color: var(--l-t2);
}

/* ---- 13. Problem cards ---------------------------------------- */
.l-problem {
  padding: var(--l-sy) 0;
}

.l-problem__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .l-problem__cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 960px) {
  .l-problem__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.l-problem-card {
  position: relative;
  background: #022319;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--l-ease);
  overflow: hidden;
  min-height: 340px;
}

@media (min-width: 768px) {
  .l-problem-card {
    padding: 40px 32px 32px;
  }
}

.l-problem-card:hover {
  background: #032d20;
  border-color: rgba(16, 185, 129, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(2, 35, 25, 0.6), 0 0 25px rgba(16, 185, 129, 0.15);
}

.l-problem-card__number {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.l-problem-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #6ee7b7;
  line-height: 1.25;
  margin: 0 0 14px 0;
}

.l-problem-card__desc {
  font-size: 14px;
  color: rgba(209, 250, 229, 0.75);
  line-height: 1.65;
  margin: 0 0 28px 0;
  flex: 1;
}

.l-problem-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  margin-top: auto;
}

.l-problem-card__badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.l-problem-card__note {
  font-size: 12px;
  color: rgba(209, 250, 229, 0.85);
  line-height: 1.4;
}

.l-problem-card__cutout {
  position: absolute;
  top: 0;
  right: 0;
  width: 145px;
  height: 135px;
  border-bottom-left-radius: 90px;
  overflow: hidden;
  border-left: 1px solid rgba(16, 185, 129, 0.25);
  border-bottom: 1px solid rgba(16, 185, 129, 0.25);
  z-index: 1;
  pointer-events: none;
}

.l-problem-card__cutout-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.1);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.l-problem-card:hover .l-problem-card__cutout-img {
  transform: scale(1.08);
  filter: brightness(0.98) contrast(1.15);
}

.l-problem-card--featured {
  background: linear-gradient(165deg, #043022 0%, #021a12 100%);
  border-color: rgba(16, 185, 129, 0.35);
}

/* ---- 14. Features --------------------------------------------- */
.l-features {
  padding: var(--l-sy) 0;
}

.l-feature {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--l-border);
}

.l-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .l-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 64px 0;
  }
}

@media (min-width: 1024px) {
  .l-feature {
    gap: 72px;
    padding: 72px 0;
  }
}

/* Image always comes after text on mobile; reverse class respects that */
.l-feature__visual {
  order: 2;
}

.l-feature__text {
  order: 1;
}

@media (min-width: 768px) {
  .l-feature--reverse .l-feature__text {
    order: 2;
  }

  .l-feature--reverse .l-feature__visual {
    order: 1;
  }
}

.l-feature__text .l-label {
  margin-bottom: 8px;
}

.l-feature__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--l-t1);
  margin-bottom: 12px;
}

.l-feature__desc {
  font-size: 15px;
  color: var(--l-t3);
  line-height: 1.75;
  margin-bottom: 24px;
}

.l-feature__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-feature__benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--l-t2);
  line-height: 1.5;
}

.l-checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--l-accent-dim);
  border: 1px solid var(--l-accent-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.l-checkmark svg {
  width: 10px;
  height: 10px;
  stroke: var(--l-accent);
}

.l-feature__visual {
  position: relative;
}

.l-feature__frame {
  border-radius: var(--l-r-lg);
  overflow: hidden;
  border: 1px solid var(--l-border);
  box-shadow: var(--l-shadow-lg);
  transition: transform 0.4s var(--l-ease);
}

.l-feature__frame:hover {
  transform: scale(1.01);
}

.l-feature__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.l-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.l-channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--l-t3);
}

/* ---- 15. Personas tabs ---------------------------------------- */
.l-personas {
  padding: var(--l-sy) 0;
  overflow: hidden;
}

.l-tabs__nav {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--l-border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.l-tabs__nav::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .l-tabs__nav {
    margin-bottom: 48px;
  }
}

.l-tab-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--l-t3);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 768px) {
  .l-tab-btn {
    padding: 14px 20px;
    font-size: 14px;
    gap: 8px;
  }
}

.l-tab-btn:hover {
  color: var(--l-t2);
}

.l-tab-btn.active {
  color: var(--l-accent);
  border-bottom-color: var(--l-accent);
}

.l-tab-panel {
  display: none;
}

.l-tab-panel.active {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: l-fadeIn 0.4s var(--l-ease);
}

@media (min-width: 768px) {
  .l-tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .l-tab-panel.active {
    gap: 64px;
  }
}

@keyframes l-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.l-persona__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: var(--l-t1);
  margin-bottom: 12px;
}

.l-persona__desc {
  font-size: 15px;
  color: var(--l-t3);
  line-height: 1.75;
  margin-bottom: 20px;
}

.l-persona__outcomes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-persona__outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--l-t2);
  line-height: 1.5;
}

.l-persona-mockup {
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 20px;
  box-shadow: var(--l-shadow-lg);
}

@media (min-width: 768px) {
  .l-persona-mockup {
    padding: 24px;
  }
}

.l-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--l-border);
}

.l-mockup-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--l-t1);
}

.l-mockup-pill {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 4px;
}

.l-mockup-pill--green {
  background: rgba(18, 184, 106, 0.15);
  color: #12B86A;
}

.l-mockup-pill--purple {
  background: rgba(99, 102, 241, 0.15);
  color: #818CF8;
}

.l-mockup-pill--amber {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
}

.l-mockup-pill--teal {
  background: rgba(20, 184, 166, 0.15);
  color: #2DD4BF;
}

.l-mockup-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.l-mockup-stat {
  background: var(--l-bg-elevated);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r);
  padding: 10px 12px;
}

.l-mockup-stat__label {
  font-size: 11px;
  color: var(--l-t3);
  margin-bottom: 4px;
}

.l-mockup-stat__value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  color: var(--l-accent);
}

.l-mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--l-bg-elevated);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r);
  font-size: 12px;
  color: var(--l-t3);
  margin-bottom: 6px;
}

.l-mockup-row:last-child {
  margin-bottom: 0;
}

.l-mockup-row strong {
  color: var(--l-t2);
}

/* ---- 16. How it works ----------------------------------------- */
/* ---- 16. How it works (Interactive & Animated) ---------------- */
.l-how-it-works {
  position: relative;
  overflow: hidden;
}

.l-steps-container {
  position: relative;
  margin-top: 40px;
}

/* Connecting laser track line (Desktop) */
.l-steps-track {
  display: none;
}

@media (min-width: 768px) {
  .l-steps-track {
    display: block;
    position: absolute;
    top: 56px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 3px;
    z-index: 0;
    pointer-events: none;
  }

  .l-steps-track__bg {
    position: absolute;
    inset: 0;
    background: var(--l-border);
    border-radius: 99px;
  }

  .l-steps-track__fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--l-accent), #2DD4BF);
    border-radius: 99px;
    box-shadow: 0 0 12px var(--l-accent);
    transition: width 0.6s var(--l-ease);
  }

  .l-steps-track__glow-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px 4px var(--l-accent);
    transition: left 0.6s var(--l-ease);
    animation: stepsDotPulse 2s infinite ease-in-out;
  }
}

@keyframes stepsDotPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 14px 4px var(--l-accent); }
  50% { transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 22px 8px var(--l-accent); }
}

/* Steps Grid */
.l-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .l-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* Step Item */
.l-step {
  cursor: pointer;
  transition: transform 0.4s var(--l-ease);
}

.l-step__card {
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--l-ease);
  box-shadow: var(--l-shadow);
}

.l-step:hover .l-step__card,
.l-step.active .l-step__card {
  border-color: var(--l-accent-bdr);
  background: linear-gradient(180deg, var(--l-card) 0%, rgba(18, 184, 106, 0.04) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(18, 184, 106, 0.12);
  transform: translateY(-6px);
}

.l-step.active .l-step__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--l-accent), #2DD4BF);
}

/* Step Header & Badge */
.l-step__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.l-step__badge-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--l-bg-elevated);
  border: 2px solid var(--l-border-h);
  color: var(--l-t1);
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--l-ease);
}

.l-step.active .l-step__number,
.l-step:hover .l-step__number {
  background: var(--l-accent);
  border-color: var(--l-accent);
  color: #08110E;
  box-shadow: 0 0 20px rgba(18, 184, 106, 0.4);
}

.l-step__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--l-accent);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s var(--l-ease);
  pointer-events: none;
}

.l-step.active .l-step__pulse {
  opacity: 0.6;
  transform: scale(1);
  animation: pulseRing 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.l-step__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--l-t3);
  background: var(--l-bg-elevated);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--l-border);
  transition: all 0.3s var(--l-ease);
}

.l-step.active .l-step__tag {
  color: var(--l-accent);
  border-color: var(--l-accent-bdr);
  background: var(--l-accent-dim);
}

.l-step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--l-t1);
  margin: 0 0 10px 0;
  transition: color 0.3s var(--l-ease);
}

.l-step.active .l-step__title {
  color: var(--l-t1);
}

.l-step__desc {
  font-size: 14px;
  color: var(--l-t2);
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}

/* Step Visual Preview Card */
.l-step__preview {
  background: var(--l-bg);
  border: 1px solid var(--l-border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto;
  transition: all 0.3s var(--l-ease);
}

.l-step.active .l-step__preview {
  border-color: var(--l-accent-bdr);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.l-step__preview-bar {
  background: var(--l-bg-elevated);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--l-border);
}

.l-step__preview-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.l-step__preview-bar .dot.red { background: #FF5F56; }
.l-step__preview-bar .dot.yellow { background: #FFBD2E; }
.l-step__preview-bar .dot.green { background: #27C93F; }

.l-step__preview-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--l-t3);
  margin-left: 4px;
}

.l-step__url-preview,
.l-step__tags-preview,
.l-step__status-preview {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}

.url-name {
  font-weight: 700;
  color: var(--l-t1);
  font-family: monospace;
}

.url-ext {
  color: var(--l-t3);
  font-weight: 500;
}

.url-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--l-accent);
  background: var(--l-accent-dim);
  padding: 2px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.l-step__tags-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mini-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--l-t2);
  background: var(--l-bg-elevated);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--l-border);
  display: flex;
  align-items: center;
  gap: 4px;
}

.l-step.active .mini-pill {
  border-color: rgba(18, 184, 106, 0.2);
  color: var(--l-t1);
}

.l-step__status-preview {
  justify-content: flex-start;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--l-accent);
  box-shadow: 0 0 8px var(--l-accent);
  animation: liveDotBlink 1.5s infinite;
}

@keyframes liveDotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.live-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--l-t1);
  flex: 1;
}

/* Nav Controls / Pagination Dots */
.l-steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.l-steps-dot-btn {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: var(--l-border-h);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--l-ease);
  padding: 0;
}

.l-steps-dot-btn.active {
  width: 44px;
  background: var(--l-accent);
  box-shadow: 0 0 10px rgba(18, 184, 106, 0.4);
}

/* ---- 17. Partner Program -------------------------------------- */
.l-partner {
  padding: var(--l-sy) 0;
  position: relative;
  overflow: hidden;
}

.l-partner__card {
  background: linear-gradient(135deg, rgba(18, 184, 106, 0.08) 0%, rgba(20, 24, 33, 0.95) 100%);
  border: 1px solid var(--l-accent-bdr);
  border-radius: var(--l-r-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: var(--l-shadow-lg);
}

html.light .l-partner__card {
  background: linear-gradient(135deg, rgba(18, 184, 106, 0.06) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(18, 184, 106, 0.18);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04), var(--l-shadow-lg);
}

@media (min-width: 768px) {
  .l-partner__card {
    padding: 48px 40px;
    gap: 40px;
  }
}

@media (min-width: 960px) {
  .l-partner__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 48px;
  }
}

.l-partner__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.l-partner__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--l-bg-elevated);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r);
  padding: 14px 16px;
}

.l-partner__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: var(--l-accent-dim);
  border: 1px solid var(--l-accent-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--l-accent);
  flex-shrink: 0;
}

/* ---- 18. Testimonials ----------------------------------------- */
.l-testimonials {
  padding: var(--l-sy) 0;
}

.l-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .l-testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .l-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.l-testimonial-card {
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s var(--l-ease);
}

@media (min-width: 768px) {
  .l-testimonial-card {
    padding: 32px;
    gap: 20px;
  }
}

.l-testimonial-card:hover {
  border-color: var(--l-border-h);
  transform: translateY(-4px);
}

.l-testimonial-card__stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
}

.l-testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--l-t2);
  font-style: italic;
  flex: 1;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .l-testimonial-card blockquote {
    font-size: 15px;
  }
}

.l-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--l-border);
}

.l-testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--l-accent-dim);
  border: 1px solid var(--l-accent-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--l-accent);
  flex-shrink: 0;
}

.l-testimonial-card__info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--l-t1);
}

.l-testimonial-card__info span {
  font-size: 12px;
  color: var(--l-t3);
}

.l-testimonials__note {
  text-align: center;
  font-size: 12.5px;
  font-style: italic;
  color: var(--l-t3);
  margin-top: 28px;
  opacity: 0.75;
}

/* ---- 19. FAQ -------------------------------------------------- */
.l-faq {
  padding: var(--l-sy) 0;
  position: relative;
}

.l-faq__card {
  background: linear-gradient(135deg, rgba(18, 184, 106, 0.08) 0%, rgba(20, 24, 33, 0.95) 100%);
  border: 1px solid var(--l-accent-bdr);
  border-radius: var(--l-r-lg);
  padding: 36px 24px;
  box-shadow: var(--l-shadow-lg);
  position: relative;
  overflow: hidden;
}

html.light .l-faq__card {
  background: linear-gradient(135deg, rgba(18, 184, 106, 0.06) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(18, 184, 106, 0.18);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04), var(--l-shadow-lg);
}

@media (min-width: 768px) {
  .l-faq__card {
    padding: 56px 48px;
  }
}

.l-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.l-faq-item {
  border-bottom: 1px solid var(--l-border);
  transition: border-color 0.3s ease;
}

.l-faq-item:last-child {
  border-bottom: none;
}

.l-faq-item.open {
  border-bottom-color: var(--l-accent-bdr);
}

.l-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--l-t1);
  gap: 12px;
  user-select: none;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .l-faq-item__question {
    padding: 24px 0;
    font-size: 16px;
  }
}

.l-faq-item__question:hover {
  color: var(--l-accent);
}

.l-faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--l-t3);
  transition: transform 0.35s ease, color 0.35s ease;
}

.l-faq-item.open .l-faq-chevron {
  transform: rotate(180deg);
  color: var(--l-accent);
}

.l-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.l-faq-item.open .l-faq-item__answer {
  max-height: 300px;
}

.l-faq-item__answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--l-t2);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .l-faq-item__answer-inner {
    font-size: 15px;
  }
}

/* ---- 20. Final CTA -------------------------------------------- */
.l-cta {
  padding: var(--l-sy) 0;
  text-align: center;
  border-top: 1px solid var(--l-border);
}

.l-cta__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 800;
  color: var(--l-t1);
  margin-bottom: 12px;
}

.l-cta__desc {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--l-t3);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.l-cta__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}

@media (min-width: 480px) {
  .l-cta__form {
    flex-direction: row;
    align-items: center;
    background: var(--l-card);
    border: 1px solid var(--l-border);
    border-radius: var(--l-r);
    padding: 6px 6px 6px 18px;
    gap: 6px;
    transition: border-color 0.3s ease;
  }

  .l-cta__form:focus-within {
    border-color: var(--l-border-h);
  }
}

.l-cta__form input {
  width: 100%;
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--l-t1);
  font-family: 'Inter', sans-serif;
  outline: none;
}

@media (min-width: 480px) {
  .l-cta__form input {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px 0;
  }
}

.l-cta__form input::placeholder {
  color: var(--l-t3);
}

.l-cta__form .l-btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .l-cta__form .l-btn {
    width: auto;
  }
}

.l-cta__trust {
  font-size: 13px;
  color: var(--l-t3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---- 21. Footer ----------------------------------------------- */
.l-footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--l-border);
  background: var(--l-bg-elevated);
}

@media (min-width: 768px) {
  .l-footer {
    padding: 72px 0 32px;
  }
}

.l-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .l-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .l-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-column: 1 / -1;
}

@media (min-width: 960px) {
  .l-footer__brand {
    grid-column: auto;
  }
}

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.l-footer__logo img {
  height: 30px;
  width: auto;
  filter: grayscale(1) brightness(2);
}

html.light .l-footer__logo img {
  filter: none;
}

.l-footer__logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--l-t1);
}

.l-footer__brand p {
  font-size: 13px;
  color: var(--l-t3);
  line-height: 1.65;
  max-width: 280px;
}

.l-footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--l-t2);
  margin-bottom: 14px;
}

.l-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-footer__col ul a {
  font-size: 13px;
  color: var(--l-t3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.l-footer__col ul a:hover {
  color: var(--l-accent);
}

.l-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--l-border);
  font-size: 13px;
  color: var(--l-t3);
}

@media (min-width: 768px) {
  .l-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.l-footer__socials {
  display: flex;
  gap: 10px;
}

.l-footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--l-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--l-t3);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.l-footer__socials a:hover {
  border-color: var(--l-accent);
  color: var(--l-accent);
}

/* ---- 22. Trust Cards Section (Built for African Churches) ----- */
/* ---- 22. Trust Section ---------------------------------------- */
.l-trust-section { overflow: hidden; }

.l-trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 600px) {
  .l-trust-cards { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (min-width: 960px) {
  .l-trust-cards { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* Base card */
.l-trust-card {
  position: relative;
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s var(--l-ease), box-shadow 0.3s ease;
}
.l-trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(ellipse at top left, rgba(18,184,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.l-trust-card:hover { border-color: var(--l-accent-bdr); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.l-trust-card:hover::before { opacity: 1; }

/* Eyebrow row */
.l-trust-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--l-accent);
}

/* Card headings & body */
.l-trust-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--l-t1);
  margin: 0;
  line-height: 1.3;
}
.l-trust-card p {
  font-size: 13px;
  color: var(--l-t3);
  line-height: 1.7;
  margin: 0;
}

/* Card 1 — accent (big number) */
.l-trust-card--accent {
  border-color: var(--l-accent-bdr);
  background: linear-gradient(145deg, var(--l-card) 60%, rgba(18,184,106,0.07) 100%);
}
.l-trust-card__stat {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #12b86a, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card 2 — highlight (active badge) */
.l-trust-card--highlight {
  border-color: rgba(251,191,36,0.25);
  background: linear-gradient(145deg, var(--l-card) 60%, rgba(251,191,36,0.05) 100%);
}
.l-trust-card--highlight .l-trust-card__eyebrow { color: #fbbf24; }
.l-trust-card__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.3);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}
.l-trust-card__badge-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  animation: l-pulse 1.8s ease-in-out infinite;
}
@keyframes l-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Card 3 — scale range */
.l-trust-card__range {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-trust-card__range-start,
.l-trust-card__range-end {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--l-t1);
}
.l-trust-card__range-end { color: var(--l-accent); }
.l-trust-card__range-arrow {
  font-size: 18px;
  color: var(--l-t3);
  flex-shrink: 0;
}

/* Card 4 — integrations */
.l-trust-card__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.l-trust-card__logo-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--l-border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--l-t2);
  letter-spacing: 0.3px;
}


/* ---- 23. Pricing Section -------------------------------------- */
.l-pricing {
  padding: var(--l-sy) 0;
}

.l-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 680px) {
  .l-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 960px) {
  .l-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.l-pricing-card {
  position: relative;
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s var(--l-ease), box-shadow 0.3s ease;
}

.l-pricing-card:hover {
  border-color: var(--l-border-h);
  transform: translateY(-4px);
  box-shadow: var(--l-shadow-lg);
}

.l-pricing-card--popular {
  border-color: var(--l-accent-bdr);
  background: linear-gradient(180deg, var(--l-card) 0%, rgba(18, 184, 106, 0.04) 100%);
  box-shadow: 0 10px 40px rgba(18, 184, 106, 0.12);
}

.l-pricing-card--popular:hover {
  border-color: var(--l-accent);
}

.l-pricing-card__badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--l-accent);
  color: #08110E;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--l-r-full);
  box-shadow: 0 4px 12px rgba(18, 184, 106, 0.3);
}

.l-pricing-card__header {
  margin-bottom: 20px;
}

.l-pricing-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--l-t1);
  margin: 0 0 6px 0;
}

.l-pricing-card__desc {
  font-size: 14px;
  color: var(--l-t3);
  margin: 0;
  line-height: 1.5;
}

.l-pricing-card__price-box {
  margin-bottom: 24px;
}

.l-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.l-pricing-card__amount {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--l-t1);
  letter-spacing: -1px;
  line-height: 1;
}

.l-pricing-card__period {
  font-size: 14px;
  font-weight: 600;
  color: var(--l-t3);
}

.l-pricing-card__divider {
  height: 1px;
  background: var(--l-border);
  margin-bottom: 24px;
}

.l-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.l-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--l-t2);
}

.l-pricing-card__action {
  margin-top: auto;
}

.l-pricing__footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 14px;
  color: var(--l-t2);
}

/* Enterprise card variant */
.l-pricing-card--enterprise {
  border-color: rgba(139, 92, 246, 0.35);
  background: linear-gradient(180deg, var(--l-card) 0%, rgba(139, 92, 246, 0.04) 100%);
}

.l-pricing-card--enterprise:hover {
  border-color: rgba(139, 92, 246, 0.65);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.12);
}

.l-pricing-card__amount--custom {
  font-size: 30px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #6ee7b7, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}