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

:root {
  --red: #E53935;
  --red-dark: #C62828;
  --navy: #0D1B2A;
  --navy-light: #1B2D45;
  --gray: #64748B;
  --gray-light: #E5E7EB;
  --white: #FFFFFF;
  --green: #22C55E;
  --font: 'Poppins', sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-red {
  color: var(--red);
}

.text-green {
  color: var(--green);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

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

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn--block {
  width: 100%;
  text-align: center;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.navbar--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-ad {
  color: var(--white);
}

.logo-leak {
  color: var(--white);
}

.logo-fix {
  color: var(--red);
}

.logo-dot {
  color: var(--gray);
  font-weight: 500;
}

.navbar__menu {
  display: flex;
  gap: 32px;
}

.navbar__menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.navbar__cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
  background: var(--navy);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero__eyebrow {
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero__title {
  color: var(--white);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__ctas .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero__ctas .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 520px;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero__image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.4);
}

.hero__badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero__badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.3;
}

/* ========== ASYNC TRUST BAR ========== */
.async-bar {
  background: #0A1520;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.async-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.async-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  padding: 4px 20px;
}

.async-bar__sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
}

/* ========== LOGO BAR ========== */
.logobar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-light);
}

.logobar__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 20px;
}

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

.logobar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========== PAIN POINTS ========== */
.pain {
  padding: 100px 0;
  background: var(--white);
}

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

.pain__card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  background: var(--white);
}

.pain__card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pain__icon {
  margin-bottom: 16px;
}

.pain__card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pain__card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ========== PROCESS / HOW IT WORKS ========== */
.process {
  padding: 100px 0;
  background: #F8FAFC;
}

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

.process__step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.process__step::after {
  content: '';
  position: absolute;
  top: 60px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--gray-light);
}

.process__step:last-child::after {
  display: none;
}

.process__number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(229, 57, 53, 0.1);
  margin-bottom: 8px;
  line-height: 1;
}

.process__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.process__step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.process__step p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

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

.pricing__card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  background: var(--white);
}

.pricing__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing__card--featured {
  border-color: var(--red);
  border-width: 2px;
  box-shadow: var(--shadow);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing__header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing__desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing__price {
  margin-bottom: 8px;
}

.pricing__amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
}

.pricing__term {
  color: var(--gray);
  font-size: 1rem;
}

.pricing__note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 24px;
  padding: 12px;
  background: #F8FAFC;
  border-radius: 8px;
  line-height: 1.5;
}

.pricing__features {
  margin-bottom: 32px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--navy);
}

.pricing__features li svg {
  flex-shrink: 0;
}

.pricing__payment {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
  justify-content: center;
}

.pricing__async {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 24px;
  background: #F8FAFC;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  font-size: 0.875rem;
  color: var(--gray);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ========== RESULTS ========== */
.results {
  padding: 100px 0;
  background: #F8FAFC;
}

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

.results__stat {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.results__stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.results__stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
}

.results__stat p {
  color: var(--gray);
  font-size: 0.9rem;
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial blockquote {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial__author span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ========== WHY CHOOSE US ========== */
.why {
  padding: 100px 0;
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.why__card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}

.why__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why__icon {
  margin-bottom: 16px;
}

.why__card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why__card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why__image {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ========== FAQ ========== */
.faq {
  padding: 100px 0;
  background: #F8FAFC;
}

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

.faq__item {
  margin-bottom: 12px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item:hover {
  border-color: var(--red);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.05) 0%, transparent 50%);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.contact__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.contact__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact__checklist li svg {
  flex-shrink: 0;
}

.contact__access-box {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 57, 53, 0.3);
  border-radius: var(--radius);
}

.contact__access-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__access-box strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact__access-box p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.contact__image {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  opacity: 0.85;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #94A3B8;
}

.form__group 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='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form__trust {
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}

.footer__contact h4,
.footer__links h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__email {
  display: inline-block;
  color: var(--red);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.footer__email:hover {
  text-decoration: underline;
}

.footer__address {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.6;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

.footer__partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer__partner-badge:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  text-align: center;
}

/* ========== MOBILE STICKY CTA ========== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.mobile-cta.visible {
  transform: translateY(0);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== FOOTER LEGAL LINKS ========== */
.footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

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

.footer__legal-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-family: var(--font);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.footer__legal-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.modal.active {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  animation: backdropIn 0.2s ease;
}

.modal__container {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  animation: modalSlideUp 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--gray-light);
  flex-shrink: 0;
}

.modal__header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
  font-family: var(--font);
  line-height: 1;
}

.modal__close:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: var(--navy);
}

.modal__body {
  overflow-y: auto;
  padding: 28px;
  flex: 1;
  overscroll-behavior: contain;
}

.modal__updated {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-bottom: 20px;
  font-style: italic;
}

.modal__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 22px 0 6px;
}

.modal__body h3:first-of-type {
  margin-top: 0;
}

.modal__body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 6px;
}

.modal__body ul {
  list-style: disc;
  padding-left: 20px;
  margin: 6px 0 10px;
}

.modal__body ul li {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
}

.modal__body a {
  color: var(--red);
  text-decoration: underline;
}

@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ========== HERO MICRO-TRUST ========== */
.hero__microtrust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.hero__microtrust-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ========== HERO CTA PULSE ========== */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5); }
  60% { box-shadow: 0 0 0 10px rgba(229, 57, 53, 0); }
}

.hero__ctas .btn--primary {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

/* ========== PAIN CARD ICON HOVER ========== */
.pain__icon svg {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pain__card:hover .pain__icon svg {
  transform: scale(1.2) rotate(-8deg);
}

/* ========== PAIN URGENCY STRIP ========== */
.pain__urgency {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  padding: 18px 24px;
  background: #FFF5F5;
  border: 1px solid rgba(229, 57, 53, 0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.6;
}

.pain__urgency svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pain__urgency strong {
  color: var(--red);
}

/* ========== PROCESS STEP LINE ANIMATION ========== */
.process__step::after {
  transition: background 0.6s ease;
}

.process__step.visible::after {
  background: linear-gradient(90deg, var(--red), var(--gray-light));
}

/* ========== STAGGERED CARD REVEALS ========== */
.pain__grid .pain__card:nth-child(1),
.why__grid .why__card:nth-child(1),
.process__grid .process__step:nth-child(1) { transition-delay: 0ms; }

.pain__grid .pain__card:nth-child(2),
.why__grid .why__card:nth-child(2),
.process__grid .process__step:nth-child(2) { transition-delay: 80ms; }

.pain__grid .pain__card:nth-child(3),
.why__grid .why__card:nth-child(3),
.process__grid .process__step:nth-child(3) { transition-delay: 160ms; }

.pain__grid .pain__card:nth-child(4),
.why__grid .why__card:nth-child(4),
.process__grid .process__step:nth-child(4) { transition-delay: 240ms; }

/* ========== PRICING ENHANCEMENTS ========== */
.pricing__card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}

.pricing__guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--green);
  margin-top: 10px;
  justify-content: center;
}

.pricing__roi {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 680px;
  margin: 28px auto 0;
  padding: 20px 24px;
  background: #F0FDF4;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #1E3A2F;
  line-height: 1.6;
}

.pricing__roi svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__roi strong {
  color: #15803D;
}

/* ========== TESTIMONIAL RESULT BADGE ========== */
.testimonial__result {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(229, 57, 53, 0.06);
  border-radius: 6px;
  display: inline-block;
}

/* ========== FORM STEPS INDICATOR ========== */
.form__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.form__step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray);
}

.form__step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form__step-arrow {
  color: var(--gray-light);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ========== NAVBAR ACTIVE LINK ========== */
.navbar__menu a.active {
  color: var(--white);
}

/* ========== MOBILE CTA IMPROVEMENT ========== */
.mobile-cta {
  padding: 14px 16px;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.mobile-cta .btn {
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 10px;
}

/* ========== RESPONSIVE ==========*/
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .process__step:nth-child(2)::after {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .async-bar {
    padding: 8px 0;
  }

  .async-bar__inner {
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
    overflow-x: visible;
    padding: 0;
  }

  .async-bar__item {
    flex: 0 0 50%;
    max-width: 50%;
    white-space: normal;
    font-size: 0.72rem;
    padding: 6px 12px;
    line-height: 1.35;
  }

  .async-bar__sep {
    display: none;
  }

  .navbar__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero__stats-card {
    max-width: 100%;
  }

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

  .process__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process__step::after {
    display: none;
  }

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

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

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

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

  .section-title--light {
    text-align: center;
  }

  .contact__subtitle {
    text-align: center;
  }

  .contact__checklist {
    align-items: center;
    margin-bottom: 32px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mobile-cta {
    display: block;
  }

  .contact {
    padding-bottom: 100px;
  }

  .pain__urgency {
    flex-direction: column;
    gap: 8px;
  }

  .pricing__roi {
    flex-direction: column;
    gap: 8px;
  }

  .hero__microtrust {
    font-size: 0.73rem;
    gap: 6px 10px;
  }

  .hero__microtrust-sep {
    display: none;
  }

  .form__steps {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .form__step-arrow {
    transform: rotate(90deg);
    display: inline-block;
    line-height: 1;
  }

  .form__step {
    font-size: 0.76rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .results__stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__ctas .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .hero__trust {
    gap: 10px;
  }

  .hero__trust-item {
    font-size: 0.78rem;
  }

  .pain__urgency {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .pricing__card {
    padding: 24px;
  }

  .pricing__amount {
    font-size: 2.5rem;
  }

  .pricing__roi {
    padding: 16px;
    font-size: 0.85rem;
  }

  .results__stat {
    padding: 28px 20px;
  }

  .testimonial {
    padding: 24px;
  }

  .faq__question {
    font-size: 0.92rem;
    padding: 16px 18px;
  }

  .contact__form {
    padding: 24px 20px;
  }

  .contact__access-box {
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
  }

  .section-title {
    font-size: 1.55rem;
  }
}
