/* ============================================
   MOBILE-FIRST RESPONSIVE DESIGN
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d84860;
  --secondary-color: #2a2a5a;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background:
    radial-gradient(
      circle at top left,
      rgba(216, 72, 96, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(42, 42, 90, 0.08),
      transparent 30%
    ),
    #f5f7fb;
  padding-bottom: 128px;
  overflow-x: hidden;
}

/* ============================================
   NAVBAR - MOBILE FIRST
   ============================================ */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0.45rem 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  max-width: calc(100% - 48px);
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--primary-color);
}

.nav-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  background-color: #fff;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
  display: flex;
}

.nav-menu li {
  border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: background-color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-large,
.btn-cta,
.btn-submit {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-large::before,
.btn-cta::before,
.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60px;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.btn-primary:hover::before,
.btn-large:hover::before,
.btn-cta:hover::before,
.btn-submit:hover::before {
  left: 120%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 16px 30px rgba(216, 72, 96, 0.18);
}

.btn-primary:hover {
  background-color: #c23a52;
  transform: translateY(-3px);
}

.btn-large {
  background: linear-gradient(90deg, #b32b50 0%, #ef3b67 48%, #a92347 100%);
  color: #fff;
  padding: 1.05rem 2rem;
  width: 100%;
  min-height: 64px;
  font-size: 1.12rem;
  margin-top: 1.5rem;
  line-height: 1.2;
  text-align: center;
  box-shadow:
    inset 4px 0 0 rgba(91, 21, 42, 0.25),
    inset -4px 0 0 rgba(91, 21, 42, 0.2),
    0 18px 34px rgba(202, 42, 82, 0.24);
  animation: float 8s ease-in-out infinite;
}

.btn-large:hover {
  background: linear-gradient(90deg, #a82449 0%, #df315c 48%, #961e3f 100%);
  transform: translateY(-3px);
}

.btn-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
}

.old-price {
  color: #fff200;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 0.16em;
  text-decoration-color: currentColor;
}

.new-price {
  color: #fff;
  font-weight: 900;
}

.btn-cta {
  background-color: var(--primary-color);
  color: #fff;
  width: 100%;
  padding: 1rem;
  margin-top: 2rem;
  animation: float 8s ease-in-out infinite;
}

.btn-cta:hover {
  background-color: #c23a52;
  transform: translateY(-3px);
}

.btn-submit {
  background-color: var(--primary-color);
  color: #fff;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.btn-submit:hover {
  background-color: #c23a52;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.highlight {
  color: var(--primary-color);
}

.glass-card {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(42, 42, 90, 0.12);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 1.5rem 1rem 2rem;
  background:
    repeating-radial-gradient(
      circle at 18% 48%,
      rgba(73, 154, 121, 0.18) 0,
      rgba(73, 154, 121, 0.18) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, #fff 0%, #efece8 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 58px;
  padding: 0.85rem 1.4rem;
  margin: 0 auto 1.5rem;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(90deg, #b32b50 0%, #ef3b67 48%, #a92347 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.15;
  box-shadow: 0 14px 28px rgba(178, 43, 80, 0.2);
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 auto 0.85rem;
  color: #062653;
  font-size: 1.8rem;
  line-height: 1.28;
  font-weight: 900;
}

.hero-content h1::first-line {
  color: #ad244d;
}

.hero-proof {
  max-width: 620px;
  margin: 0 auto 1.35rem;
  color: #062653;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-subheading {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.5rem;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 50px rgba(42, 42, 90, 0.08);
}

.hero-subheading p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.hero-highlights {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.5rem;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 50px rgba(42, 42, 90, 0.08);
  text-align: left;
}

.hero-highlights h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hero-highlights ul {
  list-style: none;
}

.hero-highlights li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.hero-image {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
  border-radius: 30px;
  display: grid;
  gap: 1rem;
  position: relative;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 108px;
  }

  .modal-content {
    width: min(92%, 360px);
    max-height: 86vh;
    padding: 1rem 0.95rem;
    border-radius: 10px;
  }

  .modal-content h2 {
    margin-bottom: 0.75rem;
    font-size: 1.08rem;
  }

  .form-group {
    margin-bottom: 0.65rem;
  }

  .form-group label {
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.5rem 0.6rem;
    font-size: 0.9rem;
  }

  .price-summary {
    padding: 0.6rem;
    margin-bottom: 0.75rem;
  }

  .price-summary p {
    font-size: 0.82rem;
  }

  .price-summary .total {
    font-size: 0.9rem;
  }

  .modal-content .btn-submit {
    padding: 0.7rem 0.85rem;
    font-size: 0.92rem;
  }

  .terms {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-content {
    text-align: center;
  }

  .hero {
    min-height: calc(100vh - 52px);
    padding: 0 1rem 1rem;
  }

  .hero-grid {
    gap: 0.75rem;
  }

  .hero-kicker {
    width: min(100%, 426px);
    min-height: 60px;
    margin-bottom: 1.6rem;
    padding: 0.8rem 1.25rem;
    border-radius: 0 0 24px 24px;
    font-size: 1.45rem;
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    margin-bottom: 0.85rem;
  }

  .hero-proof {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .hero-subheading,
  .hero-highlights {
    display: none;
  }

  .hero-grid {
    gap: 0.75rem;
  }

  .hero-subheading,
  .hero-highlights,
  .hero-card {
    padding: 1.25rem;
  }

  .hero-highlights {
    text-align: left;
  }

  .hero-card {
    max-width: 430px;
    min-height: 420px;
    padding: 0;
    background:
      radial-gradient(circle, #fff 0 52%, transparent 53%),
      radial-gradient(circle, transparent 0 63%, rgba(216, 72, 96, 0.55) 64%, transparent 65%);
    border: none;
    box-shadow: none;
    overflow: hidden;
  }

  .coach-photo {
    width: min(82vw, 330px);
    min-height: 0;
    aspect-ratio: 0.72;
    justify-self: center;
    align-self: end;
    border-radius: 0;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 20px 22px rgba(42, 42, 90, 0.14));
  }

  .hero-card-copy,
  .hero-stats {
    display: none;
  }

  .hero-card-copy h3 {
    font-size: 1.35rem;
  }

  .hero-card-copy p {
    font-size: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-stats div {
    padding: 0.85rem;
  }

  .btn-large,
  .btn-cta,
  .btn-primary,
  .btn-submit {
    margin-bottom: 0.75rem;
  }

  .hero .btn-large {
    display: none;
  }

  .btn-large {
    min-height: 58px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    flex-wrap: wrap;
  }

  .about {
    padding: 2rem 1rem;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about h3 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }

  .about-content {
    gap: 1rem;
  }

  .about-text {
    padding: 1.15rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-highlight {
    padding: 0.85rem;
  }

  .image-placeholder {
    aspect-ratio: 1 / 1.08;
    border-radius: 18px;
    padding: 0.75rem;
  }

  .about .coach-photo {
    border-radius: 14px;
    object-position: center top;
  }

  .footer-cta-content {
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .footer-cta-content p {
    font-size: 0.85rem;
    line-height: 1.25;
  }

  .btn-cta-sticky {
    width: auto;
    min-width: auto;
  }
}

.coach-photo {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  min-height: 360px;
}

.hero-card-copy {
  text-align: center;
}

.hero-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.hero-card-copy h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.hero-card-copy p {
  color: var(--text-dark);
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--secondary-color);
}

.hero-stats span {
  display: block;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  padding: 2rem 1rem;
  background-color: #fff3f5;
}

.problem h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--secondary-color);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.problem-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(42, 42, 90, 0.08);
  border-left: 4px solid var(--primary-color);
}

.problem-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.problem-card h3 {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.problem-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.problem-insight {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.problem-insight p {
  font-size: 1rem;
  margin: 0.5rem 0;
  line-height: 1.5;
}

/* ============================================
   WHO IS THIS FOR SECTION
   ============================================ */
.who-is-this {
  padding: 3rem 1rem;
  background-color: #fdf3fb;
}

.who-is-this h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  text-align: center;
  color: var(--secondary-color);
}

.intro-text {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.criteria-card {
  background-color: #fff;
  padding: 1.75rem;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(42, 42, 90, 0.08);
  border: 1px solid rgba(216, 72, 96, 0.1);
}

.criteria-emoji {
  font-size: 2.25rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.criteria-card h3 {
  font-size: 1.05rem;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.criteria-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

.who-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.who-section {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.75rem;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(42, 42, 90, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.who-section h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: block;
}

.yes-list,
.no-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.yes-list li,
.no-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.yes-list li:first-child,
.no-list li:first-child {
  padding-top: 0;
}

.not-for {
  background-color: #fff3f5;
  border-color: rgba(216, 72, 96, 0.18);
}

.not-for h3 {
  color: #c62849;
}

.final-statement {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.final-statement p {
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  padding: 2rem 1rem;
  background-color: #fff;
}

.solution h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.solution-intro {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.solution-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 60px rgba(42, 42, 90, 0.08);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.solution-card h3 {
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.4;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 2.5rem 1rem;
  background-color: var(--bg-light);
  overflow: hidden;
}

.about h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
  line-height: 1.1;
}

.about h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  line-height: 1.25;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: min(100%, 1180px);
  margin: 0 auto;
  align-items: center;
}

.about-text {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(42, 42, 90, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.about-text p {
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-highlight {
  background-color: #fffacd;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-top: 1.25rem;
}

.about-highlight p {
  margin: 0.5rem 0;
  font-weight: 600;
}

.about-image {
  text-align: center;
  width: 100%;
}

.image-placeholder {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  width: min(100%, 560px);
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.6rem);
  border-radius: 22px;
  font-size: 1.2rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(42, 42, 90, 0.14);
}

.about .coach-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
}

/* ============================================
   WHAT YOU'LL GET SECTION
   ============================================ */
.what-you-get {
  padding: 2rem 1rem;
  background-color: #fff;
}

.what-you-get h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 60px rgba(42, 42, 90, 0.08);
}

.benefit-item.bonus {
  background: linear-gradient(135deg, #fffacd, #fff9e6);
  border-color: var(--primary-color);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.total-value {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.total-value p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 2rem 1rem;
  background-color: var(--bg-light);
}

.testimonials h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(42, 42, 90, 0.08);
  border-left: 5px solid var(--primary-color);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.testimonial-city {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

/* ============================================
   URGENCY SECTION
   ============================================ */
.urgency {
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #fff3f5, #f0f8ff);
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.urgency h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.urgency-content {
  text-align: center;
  margin-bottom: 1.5rem;
}

.urgency-content p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--text-dark);
}

.urgency-main {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 2rem 1rem;
}

.faq h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(42, 42, 90, 0.08);
}

.faq-question {
  padding: 1rem;
  background-color: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #e8eef0;
}

.toggle-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s,
    padding 0.3s;
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 500px;
  background-color: #fff;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   FINAL CTA & BONUS CTA
   ============================================ */
.final-cta {
  padding: 2rem 1rem;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.cta-subtext {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.bonus-cta {
  padding: 2rem 1rem;
  background-color: #fffacd;
  text-align: center;
  border-top: 3px dashed var(--primary-color);
  border-bottom: 3px dashed var(--primary-color);
}

.bonus-cta h2 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.bonus-cta p {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0.5rem 0;
}

.bonus-highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  width: min(92%, 420px);
  max-height: min(88vh, 680px);
  overflow-y: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 1.35rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.close:hover,
.close:focus {
  color: var(--text-dark);
}

.modal-content h2 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  padding-right: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.88rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(216, 72, 96, 0.1);
}

.price-summary {
  background-color: var(--bg-light);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.price-summary p {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}

.price-summary p span {
  font-weight: 600;
  color: var(--text-dark);
}

.price-summary .total {
  border-top: 2px solid var(--border-color);
  padding-top: 0.55rem;
  margin-top: 0.55rem;
  font-size: 0.98rem;
  color: var(--primary-color);
}

.terms {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.65rem;
}

/* ============================================
   STICKY FOOTER CTA
   ============================================ */
.footer-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -15px 50px rgba(42, 42, 90, 0.12);
}

.footer-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-cta-content p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.sticky-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.sticky-price .old-price {
  color: #ff1b2d;
  font-size: 1.25rem;
}

.sticky-price .new-price {
  color: #062653;
  font-size: 1.35rem;
}

.offer-timer {
  width: 100%;
  color: #062653;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-cta-sticky {
  min-width: 170px;
  width: auto;
  padding: 1rem 1.5rem;
}

@media (max-width: 767px) {
  .footer-cta {
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1.5px solid #d84860;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -12px 28px rgba(42, 42, 90, 0.12);
  }

  .footer-cta-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    text-align: left;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .footer-cta-content p {
    width: 100%;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .sticky-price {
    gap: 0.35rem;
  }

  .sticky-price .old-price {
    font-size: 1.15rem;
  }

  .sticky-price .new-price {
    font-size: 1.45rem;
  }

  .offer-timer {
    margin-top: 0.1rem;
    font-size: 0.76rem;
  }

  .btn-cta-sticky {
    width: auto;
    min-width: 152px;
    min-height: 58px;
    margin: 0;
    padding: 0.75rem 1.05rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.9rem;
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
  .logo {
    max-width: none;
    font-size: 1.3rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    width: auto;
    background-color: transparent;
    box-shadow: none;
    gap: 2rem;
    align-items: center;
  }

  .nav-menu li {
    border-bottom: none;
  }

  .nav-menu a {
    padding: 0;
    font-size: 1rem;
    color: var(--text-dark);
  }

  .nav-menu a:hover {
    background-color: transparent;
    color: var(--primary-color);
  }

  .nav-menu a.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
  }

  /* Hero */
  .hero {
    padding: 3rem 2rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    margin-top: 0;
  }

  /* Problem */
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* Criteria */
  .criteria-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .who-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Solution */
  .solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* About */
  .about-content {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 2rem;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Sections */
  .problem,
  .who-is-this,
  .solution,
  .about,
  .what-you-get,
  .testimonials,
  .faq,
  .final-cta,
  .bonus-cta {
    padding: 3rem 2rem;
  }

  .modal-content {
    width: 90%;
    max-width: 420px;
  }
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  .hero {
    padding: 4rem 2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .problem,
  .who-is-this,
  .solution,
  .about,
  .what-you-get,
  .testimonials,
  .faq,
  .final-cta,
  .bonus-cta {
    padding: 4rem 2rem;
  }

  .problem h2,
  .who-is-this h2,
  .solution h2,
  .about h2,
  .what-you-get h2,
  .testimonials h2,
  .faq h2 {
    font-size: 2.5rem;
  }

  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .criteria-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .solution-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .about-content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 3rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }

  .benefit-item.bonus {
    grid-column: span 2;
  }

  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .faq-container {
    max-width: 900px;
  }
}
