/* ── TOKENS ─────────────────────────────────────── */
:root {
  --navy: #02021E;
  --navy-light: #05052D;
  --blue-m: #0022CC;
  --blue-l: #0066FF;
  --yellow: #FFCB05;
  --yellow-glow: rgba(255, 203, 5, 0.4);
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-heavy: rgba(255, 255, 255, 0.08);
  --r-btn: 12px;
  --r-card: 24px;
  --font: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── RADIAL GLOW HELPERS ─────────────────────────── */
.glow-bg {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
}

.glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--blue-m), transparent 70%);
  top: -200px;
  left: -200px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-l), transparent 70%);
  top: 0;
  right: -150px;
  opacity: .35;
}

.glow-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--blue-m), transparent 70%);
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
}

/* ── NAV ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  background: rgba(2, 2, 30, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  height: 32px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

nav.is-mobile-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

nav.is-mobile-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

nav.is-mobile-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r-btn);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.btn-yellow:hover {
  box-shadow: 0 8px 30px rgba(255, 203, 5, .4);
}

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

.btn-outline:hover {
  border-color: var(--white);
}

/* ── SECTIONS COMMON ────────────────────────────── */
section {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  line-height: 1.15;
}

h1 {
  font-size: clamp(34px, 4.2vw, 56px);
}

h2 {
  font-size: clamp(28px, 3.5vw, 48px);
}

h3 {
  font-size: clamp(18px, 2vw, 26px);
}

p {
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
  line-height: 1.72;
}

/* ── HERO ───────────────────────────────────────── */
#hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 146px 0 68px;
}

#hero .container {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 38px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
  background: var(--glass);
  padding: 34px;
  border-radius: var(--r-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.hero-text h1 {
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--yellow);
  text-shadow: 0 0 20px var(--yellow-glow);
}

.hero-text p {
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stats .stat {
  display: flex;
  align-items: flex-start;
  line-height: 1.45;
  font-size: 14px;
}

.stat strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
}

.stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  display: block;
}

/* glow under hero image */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 80, 244, .45), transparent 70%);
}

/* ── QUOTES COUNTERS ───────────────────────────── */
#quote-stats {
  padding: 50px 0 34px;
}

.quote-stats-head {
  text-align: center;
  margin-bottom: 28px;
}

.quote-stats-head h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.quote-stats-head p {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.quote-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quote-stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.quote-stat-value {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--yellow);
}

.quote-stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* ── TRUST BAR ──────────────────────────────────── */
#trust {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo {
  height: 28px;
  opacity: .45;
  filter: brightness(10);
  transition: opacity .2s;
}

.trust-logo:hover {
  opacity: .8;
}

.trust-logo-text {
  font-size: 18px;
  font-weight: 900;
  color: rgba(255, 255, 255, .45);
  letter-spacing: -.5px;
  white-space: nowrap;
}

/* ── FEATURES ───────────────────────────────────── */
#features {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head p {
  font-size: 18px;
  margin-top: 16px;
}

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

.feat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  border-color: rgba(0, 102, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-m), var(--blue-l));
  margin-bottom: 24px;
  font-size: 24px;
  box-shadow: 0 8px 16px rgba(0, 34, 204, 0.3);
}

.feat-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.feat-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ── HOW IT WORKS ───────────────────────────────── */
#how {
  padding: 86px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 22, 131, .18) 50%, transparent);
}

.how-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  cursor: default;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 203, 5, .12);
  border: 1px solid rgba(255, 203, 5, .3);
  font-weight: 900;
  font-size: 15px;
  color: var(--yellow);
  transition: background .25s;
}

.step:hover .step-num {
  background: var(--yellow);
  color: var(--navy);
}

.step-body h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.step-body p {
  font-size: 13px;
  line-height: 1.52;
}

.how-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 236px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 34px;
  padding: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .05);
}

.phone-screen {
  background: #0a0a2a;
  border-radius: 22px;
  padding: 14px 12px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 80%;
  font-size: 13px;
  font-weight: 500;
}

.chat-in {
  background: rgba(255, 255, 255, .1);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-out {
  background: var(--blue-l);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-yellow {
  background: rgba(255, 203, 5, .2);
  border: 1px solid rgba(255, 203, 5, .3);
  color: var(--yellow);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 700;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 4px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy);
  font-weight: 900;
}

.chat-name {
  font-size: 13px;
  font-weight: 700;
}

.chat-status {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
}

/* ── CLIENTS ────────────────────────────────────── */
#clients {
  padding: 80px 0;
}

.clients-carousel {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-carousel::before,
.clients-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.clients-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.clients-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 32px;
  animation: clients-marquee 36s linear infinite;
  will-change: transform;
}

.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

.clients-scroll {
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex-shrink: 0;
}

.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  min-width: 180px;
}

.client-logo-card:hover {
  transform: translateY(-8px);
  filter: brightness(1.1);
}

.client-logo-wrapper {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
}

.client-logo-card:hover .client-logo-wrapper {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 8px 24px rgba(0, 102, 255, .15);
}

.client-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.client-logo-card:hover .client-logo-wrapper img {
  filter: brightness(1);
}

.client-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  transition: color 0.3s ease;
}

.client-logo-card:hover .client-name {
  color: rgba(255, 255, 255, .9);
}

.clients-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, .6);
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 16px));
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.client-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.client-card .client-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
}

@media(max-width: 900px) {

  .clients-carousel::before,
  .clients-carousel::after {
    width: 48px;
  }

  .clients-track,
  .clients-scroll {
    gap: 20px;
  }

  .client-logo-card {
    min-width: 140px;
  }

  .client-logo-wrapper {
    width: 120px;
    height: 120px;
  }
}

@media(max-width: 600px) {
  #clients {
    padding: 60px 0;
  }

  .clients-carousel {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .clients-track,
  .clients-scroll {
    gap: 16px;
  }

  .client-logo-card {
    min-width: 110px;
  }

  .client-logo-wrapper {
    width: 100px;
    height: 100px;
  }

  .client-name {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }
}

/* ── PRICING ────────────────────────────────────── */
#pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.price-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(8px);
}

.price-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.3);
}

.price-card.featured {
  background: linear-gradient(165deg, rgba(0, 102, 255, 0.15), rgba(2, 2, 30, 0.8));
  border-color: var(--blue-l);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.2);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--blue-l), transparent, var(--blue-l));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  margin-bottom: 20px;
  align-self: flex-start;
}

.price-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
}

.price-desc {
  font-size: 13px;
  margin-bottom: 24px;
  min-height: 40px;
}

.price-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
}

.price-meta strong {
  color: var(--yellow);
  font-size: 13px;
}

.price-inheritance {
  margin: -4px 0 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.5;
}

.price-inheritance strong {
  color: var(--white);
  font-weight: 700;
}

.price-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .8);
}

.price-features li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 900;
  flex-shrink: 0;
}

.price-features li.no {
  color: rgba(255, 255, 255, .3);
}

.price-features li.no::before {
  content: '–';
  color: rgba(255, 255, 255, .2);
}

.price-features li.more {
  color: rgba(255, 255, 255, .58);
  font-style: italic;
}

.price-features li.more::before {
  content: '+';
  color: var(--yellow);
}

.price-details {
  margin: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
}

.price-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.price-details summary::-webkit-details-marker {
  display: none;
}

.price-details summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--yellow);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.price-details[open] summary::after {
  content: '–';
}

.price-details-body {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.price-details-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.5;
}

.price-detail-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.price-detail-group {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}

.price-detail-group h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--white);
}

.price-detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 203, 5, .12);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
}

.price-detail-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.price-detail-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.5;
}

.price-detail-list li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 900;
  flex-shrink: 0;
}

.price-detail-description {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
}

.price-detail-empty {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.5;
}

/* ── CONTACT ────────────────────────────────────── */
#contact {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 22, 131, .2) 50%, transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-alert {
  display: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .85);
}

.contact-alert.is-visible {
  display: block;
}

.contact-alert.is-success {
  background: rgba(0, 201, 119, .14);
  color: #8af7c5;
}

.contact-alert.is-error {
  background: rgba(255, 69, 69, .12);
  color: #ff9f9f;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea,
select {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

input:focus,
textarea:focus {
  border-color: var(--blue-l);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 203, 5, .1);
  border: 1px solid rgba(255, 203, 5, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.info-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

#for-who .clients-grid {
  grid-template-columns: repeat(4, 1fr);
}

#results .features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.footer-brand p {
  font-size: 14px;
  max-width: 260px;
  margin-top: 12px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

.footer-meta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
}

/* ── DIVIDER GLOW ───────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-l), transparent);
  opacity: .4;
  margin: 0;
}

/* ── SCROLL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── LOGIN MODAL ───────────────────────────────── */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-modal.is-open {
  display: flex;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 30, .82);
  backdrop-filter: blur(4px);
}

.login-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  padding: 28px;
  z-index: 1;
}

.login-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

.login-modal h3 {
  margin-bottom: 8px;
}

.login-modal-subtitle {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
}

.login-input {
  margin-bottom: 14px;
}

.login-input label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 8px;
}

.login-input input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .15);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font);
}

.login-input input:focus {
  outline: 2px solid rgba(255, 203, 5, .35);
  border-color: rgba(255, 203, 5, .8);
}

.login-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}

.login-checkbox a {
  color: var(--yellow);
  text-decoration: none;
}

.login-submit {
  width: 100%;
  justify-content: center;
}

.login-register {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

.login-register a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
}

.login-alert {
  display: none;
  margin-top: 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .8);
}

.login-alert.is-visible {
  display: block;
}

.login-alert.is-error {
  background: rgba(255, 69, 69, .12);
  color: #ff9f9f;
}

.login-alert.is-success {
  background: rgba(0, 201, 119, .14);
  color: #8af7c5;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media(max-width:900px) {
  nav {
    top: 14px;
    width: calc(100% - 24px);
    padding: 12px 16px;
    border-radius: 24px;
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
  }

  nav.is-mobile-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .02);
  }

  .nav-ctas {
    gap: 8px;
    margin-left: auto;
    order: 2;
  }

  .nav-ctas .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  #hero .container,
  .how-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .how-grid,
  .contact-grid {
    gap: 44px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .hero-text {
    padding: 30px;
  }

  .hero-text h1 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .hero-text p {
    font-size: 17px;
    margin-bottom: 28px;
  }

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

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

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

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

  #for-who .clients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #results .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .price-card {
    padding: 30px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img-wrap {
    max-width: 340px;
  }

  .phone-screen {
    min-height: 360px;
  }
}

@media(max-width:600px) {
  nav {
    top: 10px;
    width: calc(100% - 16px);
    padding: 10px 12px;
  }

  #hero {
    min-height: auto;
    padding: 116px 0 62px;
  }

  h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .nav-ctas .btn-yellow {
    display: none;
  }

  .nav-ctas .btn-outline {
    display: inline-flex;
    padding: 9px 12px;
    font-size: 12px;
  }

  .features-grid,
  .pricing-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .quote-stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 20px;
  }

  .hero-text {
    padding: 24px 18px;
  }

  .step {
    padding: 18px 0;
    gap: 16px;
  }

  .phone-mockup {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 28px;
  }

  .section-head p {
    font-size: 16px;
  }

  .feat-card,
  .price-card {
    padding: 26px 20px;
  }

  #for-who .clients-grid,
  #results .features-grid {
    grid-template-columns: 1fr !important;
  }

  #contact .contact-form .btn {
    width: 100%;
    justify-content: center;
  }
}