/* ═══════════════════════════════════════════════════
   JustCredit Landing Page – Design System & Styles
   Inspired by antigravity.google
   ═══════════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --blue: #1E60EF;
  --blue-d: #1549c0;
  --blue-l: #4a82f5;
  --green: #26AE5F;
  --orange: #FA5C29;
  --purple: #584AD4;

  /* Neutrals */
  --dark: #0A0A1A;
  --dark-2: #12122A;
  --dark-3: #1A1A3A;
  --light: #F4F6FB;
  --light-2: #E8ECF4;
  --white: #FFFFFF;
  --gray: #6B7A99;
  --gray-l: #9BA6BC;

  /* Sizing */
  --max-w: 1200px;
  --nav-h: 72px;
  --radius: 16px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .08);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, .12);
  --shadow-glow: 0 0 60px rgba(30, 96, 239, .35);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Gradient text ──────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 40%, var(--orange) 70%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

.btn--sm {
  font-size: 14px;
  padding: 8px 20px;
}

.btn--lg {
  font-size: 16px;
  padding: 16px 36px;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--primary:hover {
  background: var(--blue-d);
  border-color: var(--blue-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 96, 239, .4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .6);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: rgba(10, 10, 26, .2);
}

.btn--outline-dark:hover {
  background: rgba(10, 10, 26, .04);
  border-color: rgba(10, 10, 26, .4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--dark);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--light-2);
}

/* ── Section utilities ──────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(30, 96, 239, .08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-tag--light {
  color: var(--blue-l);
  background: rgba(74, 130, 245, .12);
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
}

.section-subtitle--light {
  color: var(--gray-l);
}

/* ── Scroll Reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   1. NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all .4s ease;
}

.nav.scrolled {
  background: rgba(244, 246, 251, .85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(30, 96, 239, .08);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 10;
}

.nav__logo svg {
  height: 23px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color .3s;
}

.nav.scrolled .nav__links a {
  color: var(--gray);
}

.nav__links a:hover {
  color: var(--blue);
}

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

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
  padding: 120px 24px 80px;
}



.hero__particles {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    transparent 20%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.8) 65%,
    black 85%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    transparent 20%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.8) 65%,
    black 85%
  );
}

.hero__particles.visible {
  opacity: 0.7;
  pointer-events: auto;
}

.hero__particles canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

.hero__badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(30, 96, 239, .06);
  border: 1px solid rgba(30, 96, 239, .12);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
}

.hero__title {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 450;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* Typed text animation — Antigravity style cursor */
.typed-line {
  display: block;
}

.typed-line .char {
  display: inline-block;
  opacity: 0;
}

.typed-line .char.visible {
  opacity: 1;
}

.typed-line .char.space {
  width: .3em;
}

/* Blinking typing cursor */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 2px;
  vertical-align: baseline;
  background: var(--blue);
  border-radius: 2px;
  animation: cursorBlink 0.8s step-end infinite;
}

.typing-cursor.typing {
  animation: none;
  opacity: 1;
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Hero entrance animations for subtitle, CTAs */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.hero-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   3. TRUSTED BY
   ═══════════════════════════════════════════════════ */
.trusted {
  padding: 80px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--light-2);
}

.trusted__label {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.trusted__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.trusted__stat {
  text-align: center;
}

.trusted__stat-number {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -1px;
}

.trusted__stat-label {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   4. HOW IT WORKS
   ═══════════════════════════════════════════════════ */
.how {
  padding: 120px 24px;
  background: var(--light);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--light-2);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.how__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0;
  transition: opacity .4s;
}

.how__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.how__card:hover::before {
  opacity: 1;
}

.how__card-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--light-2);
  line-height: 1;
  margin-bottom: 24px;
}

.how__card:hover .how__card-number {
  color: rgba(30, 96, 239, .1);
}

.how__card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 96, 239, .06);
  border-radius: 16px;
  color: var(--blue);
  margin-bottom: 24px;
}

.how__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.how__card-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   5. PLATFORM SHOWCASE
   ═══════════════════════════════════════════════════ */
.platforms {
  position: relative;
  padding: 120px 24px;
  background: var(--dark);
  overflow: hidden;
}

.platforms__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.platforms__showcase {
  position: relative;
  margin-bottom: 80px;
  perspective: 1200px;
}

.platforms__mockup {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(45deg) scale(0.85);
  opacity: 0.4;
  transition: transform 0.1s linear, opacity 0.1s linear;
  will-change: transform, opacity;
}

.platforms__mockup-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(30, 96, 239, .3) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: .6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.platforms__mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(30, 96, 239, .2);
}

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.platforms__card {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(8px);
}

.platforms__card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.platforms__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin: 0 auto 20px;
}

.platforms__card-icon--tiktok {
  background: rgba(254, 44, 85, .12);
  color: #FE2C55;
}

.platforms__card-icon--meta {
  background: rgba(24, 119, 242, .12);
  color: #1877F2;
}

.platforms__card-icon--google {
  background: rgba(66, 133, 244, .12);
}

.platforms__card-icon--snap {
  background: rgba(255, 252, 0, .12);
}

.platforms__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.platforms__card p {
  font-size: 14px;
  color: var(--gray-l);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   6. FEATURES
   ═══════════════════════════════════════════════════ */
.features {
  padding: 120px 24px;
  background: var(--light);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--light-2);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.features__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: transform .4s;
}

.features__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.features__card:hover::after {
  transform: scaleX(1);
}

.features__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 96, 239, .08), rgba(88, 74, 212, .08));
  border-radius: 14px;
  color: var(--blue);
  margin-bottom: 20px;
}

.features__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features__card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   6b. PAY IN YOUR CURRENCY
   ═══════════════════════════════════════════════════ */
.pay-local {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
}

.pay-local__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.pay-local__content .section-title {
  text-align: left;
}

.pay-local__methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.pay-local__method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 96, 239, .08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: transform .3s ease, box-shadow .3s ease;
}

.pay-local__method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30, 96, 239, .1);
}

.pay-local__method-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(30, 96, 239, .08), rgba(88, 74, 212, .08));
  color: var(--blue);
}

.pay-local__method h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.pay-local__method p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}

.pay-local__currencies {
  background: #fff;
  border-radius: var(--radius-xl, 20px);
  border: 1px solid rgba(30, 96, 239, .06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
  padding: 40px;
}

.pay-local__currency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pay-local__currency {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  border: 1px solid rgba(30, 96, 239, .04);
  transition: transform .2s ease, border-color .2s ease;
}

.pay-local__currency:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 96, 239, .15);
}

.pay-local__flag {
  font-size: 22px;
  line-height: 1;
}

.pay-local__currency--more {
  background: linear-gradient(135deg, rgba(30, 96, 239, .06), rgba(88, 74, 212, .06));
  color: var(--blue);
  font-weight: 600;
  justify-content: center;
}

@media (max-width: 768px) {
  .pay-local__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pay-local__content .section-title,
  .pay-local__content .section-subtitle {
    text-align: center !important;
  }

  .pay-local__currency-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════
   7. PRICING
   ═══════════════════════════════════════════════════ */
.pricing {
  position: relative;
  padding: 120px 24px;
  background: var(--dark);
  overflow: hidden;
}

/* ── Light variant (pricing page) ── */
.pricing--light {
  background: var(--light);
}

.pricing--light .pricing__plan {
  background: var(--white);
  border: 1px solid var(--light-2);
  box-shadow: var(--shadow-sm);
}

.pricing--light .pricing__plan:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pricing--light .pricing__plan--enterprise {
  background: linear-gradient(145deg, rgba(30, 96, 239, .04), rgba(88, 74, 212, .04));
  border-color: rgba(30, 96, 239, .15);
}

.pricing--light .pricing__plan-name {
  color: var(--dark);
}

.pricing--light .pricing__plan-tagline {
  color: var(--gray);
}

.pricing--light .pricing__plan-hero {
  background: var(--light);
  border-color: var(--light-2);
}

.pricing--light .pricing__plan-hero--ent {
  background: rgba(30, 96, 239, .04);
  border-color: rgba(30, 96, 239, .1);
}

.pricing--light .pricing__plan-free {
  color: var(--dark);
}

.pricing--light .pricing__plan-then {
  color: var(--gray);
}

.pricing--light .pricing__plan-then strong {
  color: var(--dark);
}

.pricing--light .pricing__plan-features li {
  color: var(--dark);
  border-bottom-color: var(--light-2);
}

.pricing--light .pricing__plan-features li::before {
  background: rgba(38, 174, 95, .08);
}

.pricing--light .pricing__plan-features--ent li::before {
  background: rgba(30, 96, 239, .08);
}

.pricing--light .pricing__plan-note {
  color: var(--gray);
}

.pricing--light .pricing__volume-hint {
  background: var(--light);
  border-color: var(--light-2);
}

.pricing--light .pricing__reassurance-item {
  background: var(--white);
  border-color: var(--light-2);
  color: var(--gray);
}

.pricing--light .pricing__reassurance-item:hover {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}


.pricing__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ── Two-column plans layout ── */
.pricing__plans {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 64px;
}

.pricing__plan {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
}

.pricing__plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

/* Enterprise dark card */
.pricing__plan--enterprise {
  background: linear-gradient(145deg, rgba(30, 96, 239, .12), rgba(88, 74, 212, .08));
  border-color: rgba(30, 96, 239, .35);
}

/* ── Plan Header ── */
.pricing__plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 12px;
}

.pricing__plan-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing__plan-name--ent {
  background: linear-gradient(135deg, var(--blue-l), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__plan-tagline {
  font-size: 14px;
  color: var(--gray-l);
}

.pricing__plan-tagline--ent {
  color: rgba(167, 139, 250, .7);
}

.pricing__plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  letter-spacing: .6px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing__plan-badge--ent {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

/* ── Plan Hero (big price / free promo) ── */
.pricing__plan-hero {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 28px;
}

.pricing__plan-hero--ent {
  background: rgba(30, 96, 239, .08);
  border-color: rgba(30, 96, 239, .15);
}

.pricing__plan-promo {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pricing__plan-free {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pricing__plan-free--ent {
  background: linear-gradient(135deg, var(--blue-l), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__plan-promo-label {
  font-size: 17px;
  font-weight: 600;
  color: var(--green);
}

.pricing__plan-promo-label--ent {
  color: #a78bfa;
}

.pricing__plan-then {
  font-size: 14px;
  color: var(--gray-l);
  line-height: 1.6;
}

.pricing__plan-then strong {
  color: rgba(255, 255, 255, .85);
}

.pricing__plan-then--ent {
  color: rgba(167, 139, 250, .65);
}

.pricing__plan-then--ent strong {
  color: #a78bfa;
}

/* ── Volume Hint Visual ── */
.pricing__volume-hint {
  margin-bottom: 28px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pricing__volume-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

.pricing__volume-label svg {
  flex-shrink: 0;
  color: var(--green);
}

.pricing__volume-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.pricing__volume-bar {
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(38, 174, 95, .7), rgba(38, 174, 95, .2));
  transition: opacity .3s;
}

.pricing__volume-bar--last {
  background: linear-gradient(180deg, var(--green), rgba(38, 174, 95, .5));
}

.pricing__volume-hint:hover .pricing__volume-bar {
  opacity: .75;
}

/* ── Features list ── */
.pricing__plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.pricing__plan-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing__plan-features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(38, 174, 95, .12);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing__plan-features--ent li::before {
  background: rgba(30, 96, 239, .15);
  color: var(--blue-l);
}

/* ── CTA button ── */
.pricing__plan-cta {
  margin-top: auto;
}

.btn--outline-ent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(30, 96, 239, .5);
  color: var(--blue-l);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  transition: all .3s;
  background: transparent;
}

.btn--outline-ent:hover {
  border-color: var(--blue);
  background: rgba(30, 96, 239, .1);
  color: #fff;
}

/* ── Plan note ── */
.pricing__plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-l);
  margin-top: 12px;
  opacity: .7;
}

.pricing__plan-note--ent {
  color: rgba(167, 139, 250, .6);
}

/* ── Reassurance strip ── */
.pricing__reassurance {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing__reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  font-size: 13px;
  color: var(--gray-l);
  transition: background .3s;
}

.pricing__reassurance-item:hover {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .9);
}

.pricing__reassurance-item svg {
  flex-shrink: 0;
  color: var(--blue-l);
  opacity: .8;
}

/* ═══════════════════════════════════════════════════
   8. SPLIT CTA
   ═══════════════════════════════════════════════════ */
.split-cta {
  padding: 120px 24px;
  background: var(--light);
}

.split-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.split-cta__card {
  position: relative;
  border-radius: 24px;
  padding: 56px 48px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.split-cta__card:hover {
  transform: translateY(-6px);
}

.split-cta__card--advertisers {
  background: var(--dark);
  color: var(--white);
}

.split-cta__card--advertisers::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 96, 239, .25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.split-cta__card--agencies {
  background: var(--white);
  border: 1px solid var(--light-2);
}

.split-cta__card--agencies::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(38, 174, 95, .12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.split-cta__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 16px;
}

.split-cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.split-cta__text {
  font-size: 16px;
  line-height: 1.7;
  opacity: .7;
  margin-bottom: 32px;
  max-width: 400px;
}

/* ═══════════════════════════════════════════════════
   9. FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .6);
  padding: 80px 24px 40px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: inline-flex;
  font-size: 22px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  gap: 56px;
}

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

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  transition: color .3s;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .5);
  transition: all .3s;
}

.footer__social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Tablet: 768px */
@media (max-width: 960px) {
  .how__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .pricing__plans {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .split-cta__grid {
    grid-template-columns: 1fr;
  }

  .split-cta__card {
    padding: 40px 32px;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 32px;
  }

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

/* Mobile: 480px */
@media (max-width: 640px) {
  :root {
    --nav-h: 64px;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  /* Force solid background when menu is open */
  .nav.menu-open,
  .nav.menu-open.scrolled {
    background: var(--white) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Mobile nav overlay */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 5;
  }

  .nav__links.open a {
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
  }

  .nav__actions.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 60px;
    left: 24px;
    right: 24px;
    z-index: 6;
    gap: 12px;
  }

  .nav__actions.open .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
  }

  .nav__actions.open .btn--ghost {
    color: var(--dark);
    background: var(--light);
  }

  .hero__title {
    font-size: clamp(32px, 9vw, 52px);
  }

  .hero__float-icon {
    width: 44px;
    height: 44px;
  }

  .hero__float-icon svg {
    width: 22px;
    height: 22px;
  }

  .trusted__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .how__grid {
    max-width: 100%;
  }

  .platforms__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    max-width: 100%;
  }

  .section-title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .section-header {
    margin-bottom: 48px;
  }

  .footer__links {
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════
   ACTIVE NAV LINK
   ═══════════════════════════════════════════════════ */
.nav__link--active {
  color: var(--blue) !important;
  font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════════
   PRICING PAGE — HERO
   ═══════════════════════════════════════════════════ */
.pricing-hero {
  position: relative;
  padding: 160px 24px 80px;
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}

.pricing-hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pricing-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-hero__title {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.pricing-hero__subtitle {
  font-size: 18px;
  color: var(--gray-l);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Light variant (pricing page) ── */
.pricing-hero--light {
  background: var(--white);
}

.pricing-hero--light .pricing-hero__title {
  color: var(--dark);
}

.pricing-hero--light .pricing-hero__subtitle {
  color: var(--gray);
}

/* ═══════════════════════════════════════════════════
   PRICING PAGE — FEATURE COMPARISON
   ═══════════════════════════════════════════════════ */
.compare {
  padding: 120px 24px;
  background: var(--light);
}

.compare__table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--light-2);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare__table thead {
  background: var(--dark);
}

.compare__table th {
  padding: 28px 24px;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, .05);
}

.compare__feature-col {
  text-align: left !important;
  width: 44%;
}

.compare__plan-col {
  width: 28%;
}

.compare__plan-col--ent {
  background: rgba(30, 96, 239, .12);
}

.compare__plan-label {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.compare__plan-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: .6;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.compare__table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--light-2);
  text-align: center;
  color: var(--gray);
}

.compare__table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.compare__row--highlight td {
  background: rgba(30, 96, 239, .02);
}

.compare__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(38, 174, 95, .1);
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

.compare__check--ent {
  background: rgba(30, 96, 239, .1);
  color: var(--blue);
}

.compare__dash {
  display: inline-block;
  color: var(--light-2);
  font-size: 18px;
  font-weight: 700;
}

.compare__table tfoot td {
  padding: 28px 24px;
  text-align: center;
  border-top: 2px solid var(--light-2);
}

/* ═══════════════════════════════════════════════════
   PRICING PAGE — FAQ
   ═══════════════════════════════════════════════════ */
.faq {
  padding: 120px 24px;
  background: var(--white);
}

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

.faq__item {
  border-bottom: 1px solid var(--light-2);
}

.faq__item:first-child {
  border-top: 1px solid var(--light-2);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color .3s;
}

.faq__question:hover {
  color: var(--blue);
}

.faq__icon {
  flex-shrink: 0;
  color: var(--gray-l);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), color .3s;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1), padding .5s;
}

.faq__item.open .faq__answer {
  max-height: 400px;
}

.faq__answer p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   PRICING PAGE — BOTTOM CTA
   ═══════════════════════════════════════════════════ */
.pricing-cta {
  padding: 120px 24px;
  background: var(--light);
}

.pricing-cta__inner {
  background: var(--dark);
  border-radius: 28px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-cta__inner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 96, 239, .25) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-cta__content {
  position: relative;
  z-index: 1;
}

.pricing-cta__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.pricing-cta__text {
  font-size: 17px;
  color: var(--gray-l);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}

.pricing-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   PLATFORM LANDING PAGE — HERO
   ═══════════════════════════════════════════════════ */
.plp-hero {
  padding: 160px 24px 100px;
  background: var(--white);
  text-align: center;
}

.plp-hero__content {
  max-width: 780px;
  margin: 0 auto;
}

.plp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--light);
  border: 1px solid var(--light-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}

.plp-hero__platform-icon {
  color: var(--dark);
}

.plp-hero__title {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.plp-hero__subtitle {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 36px;
}

.plp-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.plp-hero__stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--light-2);
}

.plp-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plp-hero__stat-num {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
}

.plp-hero__stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   PLATFORM LANDING PAGE — PAIN POINTS
   ═══════════════════════════════════════════════════ */
.plp-problems {
  padding: 120px 24px;
  background: var(--light);
}

.plp-problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.plp-problems__card {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: 20px;
  padding: 36px 32px;
  transition: box-shadow .3s, transform .3s;
}

.plp-problems__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.plp-problems__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.plp-problems__icon--red {
  background: rgba(229, 62, 62, .08);
  color: #e53e3e;
}

.plp-problems__icon--orange {
  background: rgba(237, 137, 54, .08);
  color: #ed8936;
}

.plp-problems__icon--yellow {
  background: rgba(214, 158, 46, .08);
  color: #d69e2e;
}

.plp-problems__icon--purple {
  background: rgba(88, 74, 212, .08);
  color: #584ad4;
}

.plp-problems__icon--blue {
  background: rgba(30, 96, 239, .08);
  color: var(--blue);
}

.plp-problems__icon--gray {
  background: rgba(107, 114, 128, .08);
  color: #6b7280;
}

.plp-problems__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.plp-problems__card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   PLATFORM LANDING PAGE — SOLUTIONS
   ═══════════════════════════════════════════════════ */
.plp-solutions {
  padding: 120px 24px;
  background: var(--dark);
}

.plp-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.plp-solutions__card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: background .3s, transform .3s;
}

.plp-solutions__card:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-3px);
}

.plp-solutions__number {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.plp-solutions__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.plp-solutions__card p {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.plp-solutions__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plp-solutions__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  padding-left: 24px;
  position: relative;
}

.plp-solutions__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   PLATFORM LANDING PAGE — TECH SUPPORT
   ═══════════════════════════════════════════════════ */
.plp-support {
  padding: 120px 24px;
  background: var(--white);
}

.plp-support__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.plp-support__title {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 16px 0 20px;
}

.plp-support__text {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 560px;
}

.plp-support__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.plp-support__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.plp-support__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(38, 174, 95, .08);
  color: var(--green);
}

.plp-support__feature-icon--blue {
  background: rgba(30, 96, 239, .08);
  color: var(--blue);
}

.plp-support__feature-icon--purple {
  background: rgba(88, 74, 212, .08);
  color: #584ad4;
}

.plp-support__feature-icon--orange {
  background: rgba(237, 137, 54, .08);
  color: #ed8936;
}

.plp-support__feature-icon--green {
  background: rgba(38, 174, 95, .08);
  color: var(--green);
}

.plp-support__feature-icon--teal {
  background: rgba(56, 178, 172, .08);
  color: #38b2ac;
}

.plp-support__feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.plp-support__feature p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* Support Stats Sidebar */
.plp-support__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.plp-support__stat-card {
  background: var(--light);
  border: 1px solid var(--light-2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}

.plp-support__stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.plp-support__stat-number {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.plp-support__stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   PLATFORM LANDING PAGE — STEPS TIMELINE
   ═══════════════════════════════════════════════════ */
.plp-steps {
  padding: 120px 24px;
  background: var(--light);
}

.plp-steps__timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
}

.plp-steps__step {
  text-align: center;
  max-width: 220px;
  position: relative;
}

.plp-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.plp-steps__step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.plp-steps__step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.plp-steps__connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  margin-top: 26px;
  flex-shrink: 0;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   PLATFORM LANDING PAGE — CTA
   ═══════════════════════════════════════════════════ */
.plp-cta {
  padding: 120px 24px;
  background: var(--white);
}

.plp-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 48px;
  background: var(--dark);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.plp-cta__inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 96, 239, .3) 0%, transparent 70%);
  pointer-events: none;
}

.plp-cta__inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(38, 174, 95, .2) 0%, transparent 70%);
  pointer-events: none;
}

.plp-cta__title {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.plp-cta__text {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.plp-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — PLATFORM LANDING PAGE
   ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {

  .plp-problems__grid,
  .plp-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plp-support__layout {
    grid-template-columns: 1fr;
  }

  .plp-support__sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: static;
  }

  .plp-steps__timeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .plp-steps__connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .plp-hero__stats {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .plp-hero {
    padding: 120px 24px 80px;
  }

  .plp-problems__grid,
  .plp-solutions__grid {
    grid-template-columns: 1fr;
  }

  .plp-hero__stats {
    flex-direction: column;
    gap: 20px;
  }

  .plp-support__sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .plp-cta__inner {
    padding: 48px 28px;
    border-radius: 24px;
  }

  .plp-problems,
  .plp-solutions,
  .plp-support,
  .plp-steps,
  .plp-cta {
    padding: 80px 24px;
  }
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — HERO
   ═══════════════════════════════════════════════════ */
.contact-hero {
  padding: 160px 24px 80px;
  background: var(--white);
  text-align: center;
}

.contact-hero__content {
  max-width: 660px;
  margin: 0 auto;
}

.contact-hero__title {
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.contact-hero__subtitle {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — CONTENT GRID
   ═══════════════════════════════════════════════════ */
.contact-content {
  padding: 0 24px 120px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--light);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--light-2);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field--full {
  margin-bottom: 28px;
}

.contact-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.contact-form__field label .required {
  color: #e53e3e;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid var(--light-2);
  border-radius: 12px;
  background: var(--white);
  color: var(--dark);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--gray-l);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 96, 239, .1);
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  width: 100%;
}

.contact-form__success {
  text-align: center;
  padding: 32px 0;
}

.contact-form__success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0 8px;
}

.contact-form__success p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Contact Info Cards ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__card {
  background: var(--light);
  border: 1px solid var(--light-2);
  border-radius: 20px;
  padding: 28px 32px;
  transition: box-shadow .3s, transform .3s;
}

.contact-info__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(38, 174, 95, .08);
  color: var(--green);
  margin-bottom: 16px;
}

.contact-info__icon--blue {
  background: rgba(30, 96, 239, .08);
  color: var(--blue);
}

.contact-info__icon--purple {
  background: rgba(88, 74, 212, .08);
  color: #584ad4;
}

.contact-info__icon--green {
  background: rgba(38, 174, 95, .08);
  color: var(--green);
}

.contact-info__card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info__card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-info__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: opacity .3s;
}

.contact-info__link:hover {
  opacity: .75;
}

.contact-info__highlight {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — CONTACT PAGE
   ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 120px 24px 60px;
  }

  .contact-form-wrap {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — PRICING PAGE
   ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .compare__table {
    font-size: 14px;
  }

  .compare__table th,
  .compare__table tbody td,
  .compare__table tfoot td {
    padding: 14px 16px;
  }

  .compare__feature-col {
    width: 40%;
  }

  .compare__plan-col {
    width: 30%;
  }
}

@media (max-width: 640px) {
  .pricing-hero {
    padding: 120px 24px 60px;
  }

  .compare__table-wrap {
    margin: 0 -12px;
    border-radius: 12px;
  }

  .compare__table {
    font-size: 13px;
  }

  .compare__table th,
  .compare__table tbody td,
  .compare__table tfoot td {
    padding: 12px 10px;
  }

  .compare__check {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .faq__question {
    font-size: 15px;
    padding: 20px 0;
  }

  .pricing-cta__inner {
    padding: 56px 24px;
    border-radius: 20px;
  }
}

/* ═══════════════════════════════════════════════════
   MOBILE CAROUSEL
   ═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .mobile-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 16px 0 8px;
    margin: -16px 0 -8px;
  }

  .mobile-carousel-track {
    display: flex;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform .45s cubic-bezier(.25, .46, .45, .94);
  }

  .mobile-carousel-track.is-dragging {
    transition: none;
  }

  .mobile-carousel-track > * {
    flex: 0 0 calc(85vw - 32px);
    width: calc(85vw - 32px);
    margin-right: 16px;
    box-sizing: border-box;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  }

  .mobile-carousel-track > *:first-child {
    margin-left: calc(7.5vw - 8px);
  }

  /* Disable hover transforms inside carousel — they conflict with the track transform */
  .mobile-carousel-track .how__card,
  .mobile-carousel-track .platforms__card,
  .mobile-carousel-track .features__card,
  .mobile-carousel-track .plp-problems__card,
  .mobile-carousel-track .plp-solutions__card,
  .mobile-carousel-track .pricing__reassurance-item {
    transition: none !important;
  }

  .mobile-carousel-track .how__card:hover,
  .mobile-carousel-track .platforms__card:hover,
  .mobile-carousel-track .features__card:hover,
  .mobile-carousel-track .plp-problems__card:hover,
  .mobile-carousel-track .plp-solutions__card:hover,
  .mobile-carousel-track .pricing__reassurance-item:hover {
    transform: translateZ(0) !important;
    box-shadow: none !important;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 24px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-2, #d1d5db);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .3s, width .3s;
  }

  .carousel-dot.active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px;
  }

  /* Dark section dots */
  .plp-solutions .carousel-dot,
  .platforms .carousel-dot,
  .pricing .carousel-dot {
    background: rgba(255, 255, 255, .2);
  }

  .plp-solutions .carousel-dot.active,
  .platforms .carousel-dot.active,
  .pricing .carousel-dot.active {
    background: var(--blue-l);
  }

  /* Fix overflow sources */
  .plp-hero__stats {
    gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .plp-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .plp-hero__ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .pricing__plan {
    padding: 32px 24px;
  }

  .pricing__reassurance {
    grid-template-columns: 1fr !important;
  }

  .plp-support__stat-card {
    padding: 24px;
  }

  .split-cta__card {
    padding: 32px 24px;
  }

  .split-cta__card::before {
    width: 250px;
    height: 250px;
  }

  .pricing-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .pricing-cta__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .pay-local__currency-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pay-local__currencies {
    padding: 24px;
  }

  .plp-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .plp-cta__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ═══════════════════════════════════════════════════
   RTL SUPPORT (Arabic)
   ═══════════════════════════════════════════════════ */
[dir="rtl"] {
  /* General text alignment flip */
  text-align: right;
}

[dir="rtl"] .nav__logo {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav__links,
[dir="rtl"] .nav__actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .btn {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero__ctas {
  flex-direction: row-reverse;
}

[dir="rtl"] .trusted__stats,
[dir="rtl"] .how__grid,
[dir="rtl"] .platforms__grid,
[dir="rtl"] .features__grid,
[dir="rtl"] .pricing__plans,
[dir="rtl"] .split-cta__grid {
  /* CSS Grid auto-flips in RTL context, but we ensure text alignment */
  text-align: right;
}

[dir="rtl"] .features__card-features li::before,
[dir="rtl"] .pricing__plan-features li::before {
  /* Ensure bullets/checkmarks stay attached correctly to the text */
  margin-left: 10px;
  margin-right: 0;
}

[dir="rtl"] .features__card-features li,
[dir="rtl"] .pricing__plan-features li {
  flex-direction: row;
}

[dir="rtl"] .footer__top {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer__links {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer__col {
  text-align: right;
}

[dir="rtl"] .footer__social {
  flex-direction: row-reverse;
}

[dir="rtl"] .pay-local__layout {
  /* Grid usually handles this, but let's be explicit if needed */
  direction: rtl;
}

[dir="rtl"] .pay-local__method {
  flex-direction: row;
  /* Icon and text */
}

[dir="rtl"] .pay-local__currency {
  flex-direction: row;
}

[dir="rtl"] .legal-content ul {
  padding-right: 24px;
  padding-left: 0;
}

/* Fix specific alignment issues overriding default ltr behavior */
[dir="rtl"] .nav__container,
[dir="rtl"] .footer__bottom {
  flex-direction: row-reverse;
}