/* ===================================================
   PUGS.GG LANDING — HYBRID DESIGN
   Hero: dark navy gaming  |  Content: clean light SaaS
   Accent: cyan + blue from logo
   =================================================== */

:root {
  /* ── Light content sections ── */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f8fd;
  --bg-card: #ffffff;
  --bg-card-hover: #eef5ff;

  /* ── Hero / CTA / Footer (dark) ── */
  --hero-bg: #070d1a;
  --hero-bg2: #0c1932;
  --hero-card: #0f1e36;
  --hero-border: rgba(0, 212, 255, 0.1);

  /* ── Accent (logo cyan + blue) ── */
  --accent: #00b4d8;
  --accent-dark: #0097ba;
  --accent-glow: rgba(0, 180, 216, 0.12);
  --accent-glow-strong: rgba(0, 180, 216, 0.28);
  --accent-secondary: #38c8e8;

  --blue: #1a6bff;
  --blue-dark: #1255e8;
  --blue-glow: rgba(26, 107, 255, 0.12);

  /* ── Text on light sections ── */
  --text-primary: #0f1923;
  --text-secondary: #4b6375;
  --text-muted: #90a8ba;

  /* ── Borders on light sections ── */
  --border-color: #dde8f2;
  --border-accent: rgba(26, 107, 255, 0.18);

  --font-display: "Orbitron", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.text-gradient {
  background: linear-gradient(135deg, #00b4d8, #1a6bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================================
   NAVBAR
   Light text when over dark hero.
   White bg + dark text when scrolled over light content.
   =================================================== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

/* Default state — floating over dark hero */
.landing-nav:not(.scrolled) .nav-links a {
  color: rgba(220, 240, 255, 0.65);
}
.landing-nav:not(.scrolled) .nav-links a:hover {
  color: #ffffff;
}
.landing-nav:not(.scrolled) .btn-nav-ghost {
  color: rgba(220, 240, 255, 0.65);
}
.landing-nav:not(.scrolled) .btn-nav-ghost:hover {
  color: #ffffff;
}

/* Scrolled state — over light content */
.landing-nav.scrolled {
  background: #131929;
  color: white;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.7rem 0;
  box-shadow: 0 1px 20px rgba(15, 25, 35, 0.06);
}
.landing-nav.scrolled .nav-links a {
  color: white;
}
.landing-nav.scrolled .nav-links a:hover {
  color: var(--blue);
}
.landing-nav.scrolled .btn-nav-ghost {
  color: var(--text-secondary);
}
.landing-nav.scrolled .btn-nav-ghost:hover {
  color: var(--text-primary);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-links {
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.25s;
}
.btn-nav-ghost {
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: color 0.25s;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 18px rgba(26, 107, 255, 0.3);
}
.btn-nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(26, 107, 255, 0.45);
  filter: brightness(1.08);
}

/* Lang dropdown */
.lang-dropdown {
  position: relative;
}
.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: 52px;
  height: 32px;
  padding: 3px 6px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.2s ease;
}
.landing-nav.scrolled .lang-dropdown-btn {
  border-color: var(--border-color);
  background: transparent;
}
.lang-dropdown-btn:hover,
.lang-dropdown-btn[aria-expanded="true"] {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.lang-dropdown-btn img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.lang-dropdown-arrow {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.landing-nav.scrolled .lang-dropdown-arrow {
  color: var(--text-muted);
}
.lang-dropdown-btn[aria-expanded="true"] .lang-dropdown-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 8px 30px rgba(15, 25, 35, 0.12);
  margin-top: 4px !important;
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: background 0.15s ease;
}
.lang-dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.lang-dropdown-item.active {
  background: rgba(26, 107, 255, 0.07);
  color: var(--blue);
}
.lang-dropdown-item img {
  border-radius: 2px;
  flex-shrink: 0;
}

/* Mobile toggle */
.landing-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.landing-nav.scrolled .landing-mobile-toggle {
  border-color: var(--border-color);
  background: transparent;
  color: var(--text-secondary);
}
.landing-mobile-toggle:hover,
.landing-mobile-toggle.active {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
}
.landing-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: 0 8px 30px rgba(15, 25, 35, 0.1);
}
.landing-mobile-menu.open {
  display: block;
  max-height: 420px;
}
.landing-mobile-menu-inner {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.landing-mobile-link {
  display: block;
  padding: 0.65rem 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.landing-mobile-link:hover {
  color: var(--blue);
  background: rgba(26, 107, 255, 0.05);
}
.landing-mobile-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.5rem 0;
}
.landing-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
}

/* ===================================================
   HERO — DARK (gaming feel preserved)
   =================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #070d1a 0%, #0c1830 60%, #0a1428 100%);
  color: #e8f4ff;
}
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.07) 0%,
    transparent 65%
  );
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse-glow 5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.08);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}
.l-hero-row {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  display: inline-block;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 8px transparent;
  }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: #ffffff;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(180, 210, 235, 0.8);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #00b4d8 0%, #1a6bff 100%);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 24px rgba(26, 107, 255, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(26, 107, 255, 0.5);
  filter: brightness(1.08);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(220, 240, 255, 0.9);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  border-color: rgba(0, 212, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  background: rgba(0, 212, 255, 0.08);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(180, 210, 235, 0.55);
  font-size: 0.83rem;
}
.trust-item i {
  color: #00d4ff;
  font-size: 0.9rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.5;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: #00d4ff;
  border-radius: 3px;
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ===================================================
   BROWSER MOCKUP (stays dark — shows the real product)
   =================================================== */
.l-browser {
  width: 480px;
  max-width: 100%;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(0, 212, 255, 0.06);
  animation: float 6s ease-in-out infinite;
  position: relative;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.l-browser__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.l-browser__dots {
  display: flex;
  gap: 6px;
}
.l-browser__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.l-browser__dots span:nth-child(1) {
  background: #ff5f57;
}
.l-browser__dots span:nth-child(2) {
  background: #febc2e;
}
.l-browser__dots span:nth-child(3) {
  background: #28c840;
}
.l-browser__url {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  color: rgba(180, 210, 235, 0.4);
  text-align: center;
}

/* Mock dashboard */
.l-mock {
  display: flex;
  height: 280px;
  font-size: 11px;
  background: #0f1829;
}
.l-mock__sidebar {
  width: 44px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 4px;
  border-right: 1px solid rgba(0, 212, 255, 0.06);
}
.l-mock__brand {
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 900;
  color: #00d4ff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.l-mock__nav-item {
  width: 32px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(180, 210, 235, 0.3);
  border-radius: 6px;
  font-size: 10px;
  cursor: default;
}
.l-mock__nav-item--active {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
}
.l-mock__main {
  flex: 1;
  padding: 10px;
  overflow: hidden;
}
.l-mock__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.l-mock__page-title {
  font-weight: 700;
  color: #e8f4ff;
  font-size: 11px;
}
.l-mock__status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: #4ade80;
}
.l-mock__dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
.l-mock__stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}
.l-mock__stat {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  padding: 5px;
  text-align: center;
}
.l-mock__stat-val {
  font-weight: 800;
  color: #00d4ff;
  font-size: 13px;
  line-height: 1.2;
  font-family: var(--font-display);
}
.l-mock__stat-lbl {
  font-size: 8px;
  color: rgba(180, 210, 235, 0.35);
  margin-top: 1px;
}
.l-mock__section-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(180, 210, 235, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.l-mock__rank-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.l-mock__rank-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 5px;
}
.l-mock__rank-row--gold {
  border-color: rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.04);
}
.l-mock__rank-pos {
  font-weight: 700;
  color: #00d4ff;
  width: 16px;
  font-size: 10px;
}
.l-mock__rank-row--gold .l-mock__rank-pos {
  color: #f59e0b;
}
.l-mock__rank-name {
  flex: 1;
  color: rgba(180, 210, 235, 0.6);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.l-mock__rank-bar-wrap {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.l-mock__rank-bar {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #1a6bff);
  border-radius: 2px;
}
.l-mock__rank-row--gold .l-mock__rank-bar {
  background: #f59e0b;
}
.l-mock__rank-pts {
  font-weight: 700;
  color: #e8f4ff;
  font-size: 9px;
  width: 24px;
  text-align: right;
}

/* Floating notification */
.l-browser-notif {
  position: absolute;
  bottom: -16px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(15, 25, 35, 0.15);
  font-size: 11px;
  white-space: nowrap;
  animation: float 6s ease-in-out 1.5s infinite;
}
.l-browser-notif__title {
  font-weight: 700;
  color: var(--text-primary);
}
.l-browser-notif__sub {
  color: var(--text-muted);
  margin-top: 1px;
}

/* ===================================================
   STATS BAR — light
   =================================================== */
.l-statsbar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
}
.l-statsbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.l-statsbar__item {
  text-align: center;
  min-width: 120px;
}
.l-statsbar__val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.l-statsbar__plus {
  font-size: 0.7em;
  opacity: 0.6;
}
.l-statsbar__lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.4rem;
}
.l-statsbar__div {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* ===================================================
   FEATURE SHOWCASE — light
   =================================================== */
.l-showcase {
  padding: 7rem 0;
  position: relative;
  background: var(--bg-primary);
}
.l-showcase--alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.l-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.l-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--text-secondary);
}
.l-feature-list li i {
  color: var(--blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Showcase image */
.l-showcase__img {
  position: relative;
}
.l-img-ph {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  box-shadow:
    0 8px 40px rgba(15, 25, 35, 0.09),
    0 0 0 1px rgba(26, 107, 255, 0.04);
}
.l-showcase__img img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 40px rgba(15, 25, 35, 0.09);
}

/* Stats panel mockup — light card inside */
.l-img-ph__mock {
  padding: 1.25rem;
  font-size: 12px;
}
.l-img-ph__mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
}
.l-img-ph__rank-badge {
  background: rgba(26, 107, 255, 0.08);
  border: 1px solid rgba(26, 107, 255, 0.18);
  color: var(--blue);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}
.l-img-ph__mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}
.l-img-ph__mock-stat {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.l-img-ph__mock-stat span {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.l-img-ph__mock-stat strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  display: block;
  font-family: var(--font-display);
}
.l-img-ph__mock-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--text-muted);
}
.l-img-ph__mock-bar-row span:first-child {
  width: 70px;
  flex-shrink: 0;
}
.l-img-ph__mock-bar-row span:last-child {
  width: 35px;
  text-align: right;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--text-secondary);
}
.l-img-ph__mock-track {
  flex: 1;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
}
.l-img-ph__mock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  border-radius: 3px;
}
.l-img-ph__mock-fill--blue {
  background: linear-gradient(90deg, var(--blue), #7c3aed);
}
.l-img-ph__mock-maps {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.l-img-ph__mock-map {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.l-img-ph__mock-map.active {
  background: rgba(26, 107, 255, 0.07);
  border-color: rgba(26, 107, 255, 0.2);
  color: var(--blue);
  font-weight: 600;
}

/* Pick & Ban mockup */
.l-img-ph__mock--pb {
  padding: 1.25rem;
}
.l-img-ph__pb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.l-img-ph__pb-team {
  font-weight: 700;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.l-img-ph__pb-team small {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
}
.l-img-ph__pb-team--ct {
  color: var(--blue);
}
.l-img-ph__pb-team--tr {
  color: #d97706;
  text-align: right;
}
.l-img-ph__pb-vs {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 6px;
}
.l-img-ph__pb-maps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.l-img-ph__pb-map {
  border-radius: 8px;
  padding: 8px 5px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}
.l-img-ph__pb-map span {
  font-size: 9px;
  font-weight: 400;
  color: var(--text-muted);
}
.l-img-ph__pb-map--banned {
  opacity: 0.4;
  text-decoration: line-through;
  border-color: #fecaca;
  background: #fff5f5;
}
.l-img-ph__pb-map--picked.l-img-ph__pb-map--ct {
  border-color: rgba(26, 107, 255, 0.3);
  background: rgba(26, 107, 255, 0.06);
  color: var(--blue);
}
.l-img-ph__pb-map--picked.l-img-ph__pb-map--tr {
  border-color: rgba(217, 119, 6, 0.3);
  background: rgba(217, 119, 6, 0.06);
  color: #d97706;
}
.l-img-ph__pb-map--active {
  border-color: rgba(0, 180, 216, 0.3);
  background: rgba(0, 180, 216, 0.06);
  color: var(--accent);
  animation: border-pulse 1.5s ease-in-out infinite;
}
@keyframes border-pulse {
  0%,
  100% {
    border-color: rgba(0, 180, 216, 0.2);
  }
  50% {
    border-color: rgba(0, 180, 216, 0.5);
  }
}
.l-img-ph__pb-map--available {
  opacity: 0.6;
}
.l-img-ph__pb-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 6px 10px;
}
.l-img-ph__dot-pulse {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-pulse 1.2s ease-in-out infinite;
}

/* Matches mockup */
.l-img-ph__mock--matches {
  padding: 1.25rem;
}
.l-img-ph__chip {
  background: rgba(26, 107, 255, 0.07);
  border: 1px solid rgba(26, 107, 255, 0.16);
  color: var(--blue);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
}
.l-img-ph__match-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.l-img-ph__match {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 11px;
}
.l-img-ph__match--live {
  border-color: rgba(0, 180, 216, 0.25);
  background: rgba(0, 180, 216, 0.04);
}
.l-img-ph__match--pending {
  opacity: 0.65;
}
.l-img-ph__live-badge {
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
.l-img-ph__done-badge {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.l-img-ph__pending-badge {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.l-img-ph__match-teams {
  flex: 1;
  font-weight: 600;
  color: var(--text-primary);
}
.l-img-ph__match-score {
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 13px;
  white-space: nowrap;
}
.l-img-ph__match-info {
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
}
.l-img-ph__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===================================================
   SECTION HEADER
   =================================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  background: rgba(26, 107, 255, 0.07);
  border: 1px solid rgba(26, 107, 255, 0.16);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================================
   FEATURES GRID — light
   =================================================== */
.features-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 25, 35, 0.05);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover {
  border-color: rgba(26, 107, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(26, 107, 255, 0.1);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon-wrap {
  margin-bottom: 1.2rem;
}
.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 107, 255, 0.07);
  border: 1px solid rgba(26, 107, 255, 0.14);
  border-radius: 12px;
  font-size: 1.2rem;
  color: var(--blue);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===================================================
   HOW IT WORKS — light
   =================================================== */
.how-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  width: 280px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(15, 25, 35, 0.05);
}
.step-card:hover {
  border-color: rgba(26, 107, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(26, 107, 255, 0.1);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26, 107, 255, 0.6);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 107, 255, 0.07);
  border: 1px solid rgba(26, 107, 255, 0.14);
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: var(--blue);
}
.step-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.65;
}
.step-connector {
  color: var(--blue);
  font-size: 1.2rem;
  opacity: 0.2;
}

/* ===================================================
   PRICING — light
   =================================================== */
.l-pricing {
  padding: 7rem 0;
  position: relative;
  background: var(--bg-primary);
}
.l-pricing__glow {
  display: none; /* not needed on light */
}

.l-pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.l-pricing__toggle-lbl {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.l-pricing__toggle-badge {
  display: inline-block;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #16a34a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-left: 5px;
}

/* Toggle switch */
.l-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}
.l-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.l-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--border-color);
  border: 1px solid #c5d6e8;
  border-radius: 13px;
  transition: all 0.3s;
}
.l-toggle__track::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.l-toggle input:checked + .l-toggle__track {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  border-color: transparent;
}
.l-toggle input:checked + .l-toggle__track::before {
  transform: translateX(22px);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.l-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.l-plan {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(15, 25, 35, 0.05);
}
.l-plan:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 107, 255, 0.25);
  box-shadow: 0 16px 48px rgba(26, 107, 255, 0.1);
}

.l-plan--featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 8px 40px rgba(26, 107, 255, 0.14);
  transform: scale(1.02);
  background: linear-gradient(160deg, rgba(26, 107, 255, 0.03), var(--bg-card));
}
.l-plan--featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.l-plan--elite {
  border-color: rgba(109, 40, 217, 0.25);
}
.l-plan--elite:hover {
  border-color: rgba(109, 40, 217, 0.4);
  box-shadow: 0 16px 48px rgba(109, 40, 217, 0.1);
}

.l-plan__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.l-plan__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}
.l-plan__price-wrap {
  margin-bottom: 0.5rem;
}
.l-plan__price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 0.25rem;
}
.l-plan__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1;
}
.l-plan__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  transition: all 0.3s;
}
.l-plan__period {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.l-plan__desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  margin-top: 0.75rem;
}

.l-plan__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 4px 18px rgba(26, 107, 255, 0.25);
}
.l-plan__btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 107, 255, 0.35);
  filter: brightness(1.07);
}
.l-plan__btn--ghost {
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  box-shadow: none;
}
.l-plan__btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: none;
  background: rgba(26, 107, 255, 0.04);
}
.l-plan__btn--elite {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 4px 18px rgba(109, 40, 217, 0.2);
}
.l-plan__btn--elite:hover {
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.35);
}

.l-plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.l-plan__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.87rem;
  color: var(--text-secondary);
}
.l-plan__features li i {
  font-size: 0.8rem;
  flex-shrink: 0;
  color: #16a34a;
}
.l-plan__feature--no {
  color: var(--text-muted) !important;
}

.l-plan__server-row {
  align-items: center;
  gap: 0.65rem;
  font-size: 0.87rem;
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 6px;
  padding: 6px 10px;
  color: #16a34a !important;
}
.l-plan__server-row i {
  color: #16a34a !important;
}

.l-pricing__footer {
  text-align: center;
  margin-top: 2.5rem;
}
.l-pricing__compare-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.l-pricing__compare-link:hover {
  color: var(--blue);
}

/* ===================================================
   FAQ — light
   =================================================== */
.l-faq {
  padding: 7rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}
.l-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.l-faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 1px 6px rgba(15, 25, 35, 0.04);
}
.l-faq__item.open {
  border-color: rgba(26, 107, 255, 0.25);
  box-shadow: 0 4px 20px rgba(26, 107, 255, 0.08);
}
.l-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}
.l-faq__q:hover {
  color: var(--blue);
}
.l-faq__item.open .l-faq__q {
  color: var(--blue);
}
.l-faq__icon {
  color: var(--text-muted);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.l-faq__item.open .l-faq__icon {
  transform: rotate(180deg);
  color: var(--blue);
}
.l-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 1.5rem;
}
.l-faq__item.open .l-faq__a {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem;
}

/* ===================================================
   FINAL CTA — dark (strong close, matches hero)
   =================================================== */
.l-cta {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #070d1a 0%, #0c1830 100%);
  color: #e8f4ff;
  border-top: none;
}
.l-cta__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.l-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(0, 212, 255, 0.07) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.l-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.l-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.l-cta__sub {
  font-size: 1.1rem;
  color: rgba(180, 210, 235, 0.75);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.l-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.l-cta__hint {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: rgba(180, 210, 235, 0.35);
}

/* ===================================================
   FOOTER — dark (matches hero/cta)
   =================================================== */
.l-footer {
  background: #060c18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}
.l-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.l-footer__brand p {
  color: rgba(180, 210, 235, 0.4);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  max-width: 300px;
}
.l-footer__social {
  display: flex;
  gap: 0.75rem;
}
.l-footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(180, 210, 235, 0.35);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}
.l-footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 180, 216, 0.08);
}
.l-footer__col {
  display: flex;
  flex-direction: column;
}
.l-footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(180, 210, 235, 0.4);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.l-footer__col a {
  color: rgba(180, 210, 235, 0.35);
  text-decoration: none;
  font-size: 0.87rem;
  padding: 0.35rem 0;
  transition: color 0.3s;
}
.l-footer__col a:hover {
  color: rgba(220, 240, 255, 0.8);
}
.l-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.l-footer__bottom p {
  color: rgba(180, 210, 235, 0.3);
  font-size: 0.82rem;
  margin: 0;
}
.l-footer__bottom a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.l-footer__bottom a:hover {
  color: var(--accent-secondary);
}
.l-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.l-footer__bottom-links a {
  color: rgba(180, 210, 235, 0.25);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.3s;
}
.l-footer__bottom-links a:hover {
  color: rgba(180, 210, 235, 0.6);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}
.feature-card.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}
.feature-card.fade-in:nth-child(4) {
  transition-delay: 0.3s;
}
.feature-card.fade-in:nth-child(5) {
  transition-delay: 0.4s;
}
.feature-card.fade-in:nth-child(6) {
  transition-delay: 0.5s;
}
.l-plan.fade-in:nth-child(1) {
  transition-delay: 0.05s;
}
.l-plan.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}
.l-plan.fade-in:nth-child(3) {
  transition-delay: 0.15s;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1199px) {
  .l-browser {
    width: 420px;
  }
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row {
    flex-direction: column;
  }
  .step-connector {
    transform: rotate(90deg);
  }
  .l-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .l-plan--featured {
    transform: none;
  }
  .l-plan--featured:hover {
    transform: translateY(-5px);
  }
  .l-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .l-footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
  .l-statsbar__div {
    display: none;
  }
  .l-statsbar__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .l-footer__grid {
    grid-template-columns: 1fr;
  }
  .l-footer__brand {
    grid-column: auto;
  }
  .l-hero-row {
    padding-top: 100px;
  }
  .l-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .l-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .l-pricing__grid {
    max-width: 100%;
  }
  .nav-actions {
    display: none !important;
  }
  .nav-links {
    display: none !important;
  }
  .landing-mobile-toggle {
    display: flex !important;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-section {
    padding-top: 60px;
  }
  .landing-nav {
    padding: 0.6rem 0;
  }
  .l-img-ph__pb-maps {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-img-ph__mock-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-mock__stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
