/* ========================================
   UINTA SOCCER ACADEMY — FREE TRIAL LANDING PAGE
   Brand Colors from Logo:
   - Navy Blue:    #1B2D5B
   - Forest Green: #2E7D32
   - Sky Blue:     #5BB5E8
   - Light Blue:   #8ED1F0
   - White:        #FFFFFF
   ======================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: #1B2D5B;
  line-height: 1.2;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 3rem;
}

.highlight {
  color: #2E7D32;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: #2E7D32;
  color: #fff;
}

.btn--primary:hover {
  background: #256b29;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.btn--outline {
  background: transparent;
  color: #2E7D32;
  border: 2px solid #2E7D32;
}

.btn--outline:hover {
  background: #2E7D32;
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: #1B2D5B;
}

.btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn--lg {
  padding: 18px 42px;
  font-size: 1.125rem;
}

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

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(27, 45, 91, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: box-shadow 0.3s ease;
}

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

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-img {
  height: 55px;
  width: auto;
}

.header__cta {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  /* PLACEHOLDER: Replace with hero background image */
  background: linear-gradient(135deg, #1B2D5B 0%, #0d1a36 100%);
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 45, 91, 0.75);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero__text {
  text-align: left;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
}

.hero__title .highlight {
  color: #5BB5E8;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.6;
}

/* Hero inline form */
.hero__form-wrap {
  position: relative;
  z-index: 2;
}

.hero__form {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
}

.hero__form-success {
  background: #fff;
  border-radius: 12px;
  padding: 50px 28px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.hero__form-success h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: #1B2D5B;
}

.hero__form-success p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.form-required {
  color: #e53935;
}

/* Hero features bar */
.hero__features {
  position: relative;
  z-index: 2;
  background: rgba(13, 26, 54, 0.6);
  backdrop-filter: blur(6px);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero__features .feature-card {
  text-align: center;
  padding: 20px 16px;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  transition: background 0.3s ease;
}

.hero__features .feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: none;
  box-shadow: none;
}

.hero__features .feature-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero__features .feature-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hero__features .feature-card__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #1B2D5B;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
  color: #333;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #5BB5E8;
  box-shadow: 0 0 0 3px rgba(91, 181, 232, 0.2);
  background: #fff;
}

.form-group input::placeholder {
  color: #aaa;
}

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

.signup__success-icon {
  width: 80px;
  height: 80px;
  background: #2E7D32;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.signup__success h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: #1B2D5B;
}

.signup__success p {
  color: #666;
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* ---------- WHY CHOOSE US ---------- */
.why {
  padding: 100px 0;
  background: #f8f9fa;
}

.why__intro {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.why__card {
  text-align: center;
  padding: 20px 16px;
}

.why__card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.why__card-icon svg {
  width: 100%;
  height: 100%;
}

.why__card h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 8px;
  font-style: italic;
}

.why__card p {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ---------- PROGRAMS ---------- */
.programs {
  padding: 100px 0;
  background: #f8f9fa;
}

.programs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.program-card > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center 50%;
}

.program-card__body {
  padding: 32px;
}

.program-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1B2D5B;
}

.program-card__text {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---------- SCHEDULE ---------- */
.schedule {
  padding: 100px 0;
}

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

.schedule-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2E7D32;
  transition: transform 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
}

.schedule-card__day {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.schedule-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.schedule-card__location svg {
  color: #2E7D32;
  flex-shrink: 0;
}

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

.schedule-card__session {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-card__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #1B2D5B;
}

.schedule-card__time {
  font-size: 0.9375rem;
  color: #2E7D32;
  font-weight: 600;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: #f4b400;
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__author strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1B2D5B;
  font-size: 0.9375rem;
}

.testimonial-card__author span {
  font-size: 0.8125rem;
  color: #888;
}

/* ---------- COACH ---------- */
.coach {
  padding: 100px 0;
}

.coach__card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 3rem;
}

.coach__name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 4px;
}

.coach__role {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #2E7D32;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.coach__bio {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  padding: 100px 0;
  /* PLACEHOLDER: Replace with background image */
  background: linear-gradient(135deg, #1B2D5B 0%, #2E7D32 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 45, 91, 0.8);
  z-index: 1;
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.final-cta__benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.final-cta__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
}

.final-cta__benefit-icon {
  font-size: 1.25rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0d1a36;
  padding: 40px 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  height: 60px;
  width: auto;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ---------- PLACEHOLDER IMAGES ---------- */
.placeholder-img {
  width: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #e8ecf1 0%, #d0d8e4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px dashed #bbb;
}

.placeholder-img::after {
  content: attr(data-label);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #888;
  text-align: center;
  padding: 20px;
}

.placeholder-img--tall {
  min-height: 250px;
}

.placeholder-img--square {
  width: 350px;
  min-height: 350px;
  border-radius: 12px;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.features__grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.features__grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.features__grid .animate-in:nth-child(4) { transition-delay: 0.3s; }

.why__points .animate-in:nth-child(2) { transition-delay: 0.1s; }
.why__points .animate-in:nth-child(3) { transition-delay: 0.15s; }
.why__points .animate-in:nth-child(4) { transition-delay: 0.2s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero__text {
    text-align: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__form {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

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

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

  .coach__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .placeholder-img--square {
    width: 280px;
    min-height: 280px;
  }

  .final-cta__title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero__container {
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__form {
    padding: 24px 20px;
  }

  .hero__features .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero__features .feature-card {
    padding: 14px 10px;
  }

  .hero__features .feature-card__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .hero__features .feature-card__title {
    font-size: 0.8125rem;
  }

  .hero__features .feature-card__text {
    font-size: 0.75rem;
  }

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

  .final-cta__benefits {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .final-cta__title {
    font-size: 1.5rem;
  }

  .header__logo-img {
    height: 42px;
  }

  .btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .coach__card {
    gap: 30px;
  }

  .placeholder-img--square {
    width: 220px;
    min-height: 220px;
  }
}

/* ========================================
   PRICING PAGE
   ======================================== */

/* Accessibility skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #2E7D32;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Header nav (only on pricing page, but safe everywhere) */
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.header__nav-link:hover {
  color: #fff;
}

.header__nav-link:focus-visible {
  outline: 2px solid #5BB5E8;
  outline-offset: 4px;
  border-radius: 2px;
}

.header__nav-link--active {
  color: #fff;
}

.header__nav-link--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #2E7D32;
  border-radius: 2px;
}

/* Ghost button variant */
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Disabled button (Stripe link not yet configured) */
.btn--disabled {
  background: #b8b8b8 !important;
  color: #fff !important;
  cursor: not-allowed !important;
  pointer-events: auto;
}
.btn--disabled:hover {
  background: #b8b8b8 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ---------- PRICING HERO ---------- */
.pricing-hero {
  position: relative;
  background: linear-gradient(135deg, #1B2D5B 0%, #0d1a36 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.pricing-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(46, 125, 50, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(91, 181, 232, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-hero__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #5BB5E8;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 6px 14px;
  border: 1px solid rgba(91, 181, 232, 0.4);
  border-radius: 4px;
  background: rgba(91, 181, 232, 0.08);
}

.pricing-hero__title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.pricing-hero__title .highlight {
  color: #5BB5E8;
}

.pricing-hero__sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ---------- PRICING SECTIONS ---------- */
.pricing-section {
  padding: 90px 0;
  background: #fff;
}

.pricing-section--alt {
  background: #f8f9fa;
}

.pricing-section__head {
  margin-bottom: 3rem;
}

/* ---------- PLAN CARDS (Monthly) ---------- */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.plan-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.plan-card--featured {
  border-top-color: #2E7D32;
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.2);
  transform: scale(1.03);
}

.plan-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.28);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2E7D32;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

.plan-card__head {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eee;
}

.plan-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.plan-card__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: #1B2D5B;
  line-height: 1;
}

.plan-card__per {
  font-size: 0.9375rem;
  color: #777;
  font-weight: 500;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}

.plan-card__features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #444;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.plan-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: #2E7D32;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.plan-card__btn {
  margin-top: auto;
}

/* ---------- PLAN ROWS (Two-Payment) ---------- */
.plan-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #2E7D32;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-row:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.plan-row__info {
  min-width: 0;
}

.plan-row__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #1B2D5B;
  margin: 0 0 4px;
}

.plan-row__detail {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.plan-row__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  white-space: nowrap;
}

.plan-row__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #2E7D32;
  line-height: 1;
}

.plan-row__per {
  font-size: 0.8125rem;
  color: #777;
  font-weight: 500;
}

.plan-row__btn {
  white-space: nowrap;
}

.plan-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #555;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.plan-note strong {
  color: #1B2D5B;
}

/* ---------- PRICING PAGE RESPONSIVE ---------- */
@media (max-width: 900px) {
  .pricing-hero {
    padding: 120px 0 70px;
  }
  .pricing-hero__title {
    font-size: 2.25rem;
  }
  .pricing-hero__sub {
    font-size: 1rem;
  }
  .plan-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    gap: 36px;
  }
  .plan-card--featured {
    transform: none;
  }
  .plan-card--featured:hover {
    transform: translateY(-6px);
  }
  .plan-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }
  .plan-row__price {
    justify-content: center;
  }
  .plan-row__btn {
    justify-self: stretch;
  }
  .header__nav {
    gap: 14px;
  }
  .header__nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 600px) {
  .pricing-hero__title {
    font-size: 1.85rem;
  }
  .pricing-hero__cta {
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
  }
  .pricing-hero__cta .btn {
    width: 100%;
  }
  .pricing-section {
    padding: 60px 0;
  }
  .plan-card__amount {
    font-size: 2.25rem;
  }
  .header__nav .btn--primary {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* ========================================
   REGISTRATION MODAL
   ======================================== */

.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}

.reg-modal--open {
  display: flex;
  animation: regModalFadeIn 0.25s ease;
}

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

.reg-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 26, 54, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.reg-modal__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 640px;
  margin: 20px auto auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border-top: 5px solid #2E7D32;
  animation: regModalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes regModalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reg-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(27, 45, 91, 0.06);
  color: #1B2D5B;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.reg-modal__close:hover {
  background: rgba(27, 45, 91, 0.14);
  transform: rotate(90deg);
}

.reg-modal__close:focus-visible {
  outline: 2px solid #5BB5E8;
  outline-offset: 2px;
}

.reg-modal__close svg {
  width: 18px;
  height: 18px;
}

.reg-modal__header {
  padding: 32px 32px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.reg-modal__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 2px;
  color: #2E7D32;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.reg-modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.reg-modal__title #regModalPlanName {
  color: #2E7D32;
}

.reg-modal__sub {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.reg-modal__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1B2D5B;
  font-size: 1.125rem;
  margin: 0;
}

/* ---------- REGISTRATION FORM ---------- */
.reg-form {
  padding: 24px 32px 32px;
}

.reg-form__group {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.reg-form__group:last-of-type {
  margin-bottom: 16px;
}

.reg-form__legend {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: #1B2D5B;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2E7D32;
  width: 100%;
}

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

.reg-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  background: #fafafa;
  color: #333;
  resize: vertical;
  min-height: 80px;
}

.reg-form textarea:focus {
  outline: none;
  border-color: #5BB5E8;
  box-shadow: 0 0 0 3px rgba(91, 181, 232, 0.2);
  background: #fff;
}

.reg-form__terms {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
}

.reg-form__terms p {
  margin: 0 0 8px;
  font-weight: 600;
  color: #1B2D5B;
}

.reg-form__terms ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}

.reg-form__terms li {
  margin-bottom: 4px;
}

.reg-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.4;
  padding: 12px 14px;
  background: rgba(46, 125, 50, 0.06);
  border: 2px solid rgba(46, 125, 50, 0.25);
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.reg-form__checkbox:hover {
  background: rgba(46, 125, 50, 0.1);
  border-color: rgba(46, 125, 50, 0.5);
}

.reg-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #2E7D32;
  cursor: pointer;
  flex-shrink: 0;
}

.reg-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.reg-form__actions .btn {
  flex: 1;
}

.reg-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.reg-form__footnote {
  text-align: center;
  font-size: 0.8125rem;
  color: #777;
  margin-top: 14px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 640px) {
  .reg-modal {
    padding: 0;
  }

  .reg-modal__panel {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
    max-width: none;
  }

  .reg-modal__header {
    padding: 56px 22px 16px;
  }

  .reg-modal__title {
    font-size: 1.25rem;
  }

  .reg-form {
    padding: 20px 22px 32px;
  }

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

  .reg-form__actions {
    flex-direction: column-reverse;
  }
}

/* ========================================
   TERMS & CONDITIONS PAGE
   ======================================== */

.terms-hero {
  position: relative;
  background: linear-gradient(135deg, #1B2D5B 0%, #0d1a36 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.terms-hero__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #5BB5E8;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 6px 14px;
  border: 1px solid rgba(91, 181, 232, 0.4);
  border-radius: 4px;
  background: rgba(91, 181, 232, 0.08);
}

.terms-hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.terms-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.terms {
  padding: 70px 0 90px;
  background: #fff;
}

.terms__container {
  max-width: 820px;
}

.terms__intro {
  font-size: 1rem;
  color: #2E7D32;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.terms__section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}

.terms__heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #2E7D32;
}

.terms__section p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms__section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}

.terms__section li {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.terms__section a {
  color: #2E7D32;
  text-decoration: underline;
  font-weight: 600;
}

.terms__section a:hover {
  color: #256b29;
}

.terms__section strong {
  color: #1B2D5B;
  font-weight: 700;
}

.terms__back {
  margin-top: 3rem;
  text-align: center;
}

/* ---------- FOOTER NAV ---------- */
.footer__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.footer__nav a:hover {
  color: #fff;
}

/* ---------- MODAL TERMS LINK STYLES ---------- */
.reg-form__terms a,
.reg-form__checkbox a {
  color: #2E7D32;
  text-decoration: underline;
  font-weight: 600;
}

.reg-form__terms a:hover,
.reg-form__checkbox a:hover {
  color: #256b29;
}

/* ---------- TERMS PAGE MOBILE ---------- */
@media (max-width: 600px) {
  .terms-hero {
    padding: 110px 0 50px;
  }
  .terms-hero__title {
    font-size: 1.75rem;
  }
  .terms {
    padding: 50px 0 70px;
  }
  .terms__heading {
    font-size: 1.0625rem;
  }
  .terms__section p,
  .terms__section li {
    font-size: 0.9375rem;
  }
}

/* ========================================
   INTERNAL TEST PLAN BOX (?test=1)
   ======================================== */
.pricing-test {
  padding: 30px 0 60px;
  background: #fff;
}

.pricing-test__box {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 28px 24px;
  border: 2px dashed #2E7D32;
  border-radius: 14px;
  background: #f4faf5;
  text-align: center;
}

.pricing-test__label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2E7D32;
  background: rgba(46, 125, 50, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.pricing-test__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 6px;
}

.pricing-test__sub {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
