@font-face {
  font-family: 'Gascogne Serial';
  src: url('fonts/Gascogne Serial.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gascogne Serial Light';
  src: url('fonts/gascogne-serial-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Whyte Book';
  src: url('fonts/Whyte-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Whyte Bold';
  src: url('fonts/Whyte-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Whyte Thin';
  src: url('fonts/Whyte-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

body {
      font-family: 'Whyte Book', sans-serif;
      background-color: rgba(255,255,250,1);
      margin: 0;
    line-height: 2.2rem;
      padding-bottom: 80px;
      color: black;
    }
    .container {
      max-width: 960px;
      margin: auto;
      padding: 2rem;
    }
    .hero {
      text-align: center;
      padding: 3rem 1rem;
    }
    .hero h1 {
        font-family: 'Gascogne Serial', serif;
      font-size: 2.6rem;
      color: black;
        line-height:3.6rem;
        max-width: 690px;
        margin: 0 auto;
    }
    .hero p {
      font-size: 1.25rem;
      color: black;
      max-width: 600px;
      margin: auto;
        margin-top: 1rem;
    }
    .urgency {
      text-align: center;
      margin-top: 1rem;
      font-weight: 600;
      color: #e53e3e;
    }
    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }
.plan h2 {
    font-family: 'Whyte Bold',sans-serif;
}

    .plan {
      background: #FAFAFA;      
      border-radius: 16px;
      padding: 2rem;
      flex: 1;
      max-width: 280px;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      position: relative;
      transition: transform 0.3s ease;
    }

    .plan:hover {
      transform: translateY(-5px);
    }
    .plan.popular {
      border: 2px solid #ad86c4;
      background: #f6f2f9;
    }
    .plan.popular::before {
      content: 'Most Popular';
      position: absolute;
      top: -24px;
      left: 50%;
      transform: translateX(-50%);
      background: #ad86c4;
      color: #fff;
      font-size: 0.8rem;
      padding: 0.4rem 1.2rem 0.2rem;
      border-radius: 6px;
    }
    .plan h2 {
      margin: 0 0 0.5rem;
      font-size: 1.75rem;
      color: #1a202c;
    }
    .badge {
      display: inline-block;
      background: clear;
      color: #2c5282;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 1rem;
      margin-bottom: 0.75rem;
    }
    .price {
      font-size: 1.5rem;
      margin: 0.5rem 0;
      color: #2d3748;
    }
    .price span {
      position: relative;
      color: dimgrey;
      font-size: 1rem;
      margin-left: 0.5rem;
    }
    .cta-button {
      display: inline-block;
      background: black;
      color: #fff;
        padding: 1rem 1.5rem 0.8rem;
        border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 1rem;
      transition: background 0.3s;
        line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    }
    .plan.popular .cta-button {
      background: #fc9046;
    }
    .microproof {
      margin-top: 0.5rem;
      font-size: 0.75rem;
      color: #4a5568;
    }
    .cta-button:hover {
      background: #2c5282;
    }
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255,255,250,1);
      border-top: 1px solid black;
      text-align: center;
      padding: 1rem 0.8rem 0.8rem;
      box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
    }
    .sticky-cta a {
      background: #40A1BF;
      color: white;
      padding: 1.2rem 1rem 0.9rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
    }
    .features, .comparison {
      margin-top: 3rem;
      text-align: center;
    }
    .features h3, .comparison h3 {
        font-family: 'Gascogne Serial',serif;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      color: #0a2540;
    }
    .features ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
      justify-content: center;
    }
    .features li {
      background: transparent;
      border-radius: 12px;
        border: 1px solid black;
      padding: 1.5rem;
      font-size: 1rem;
      color: #2d3748;
      text-align: left;
    }
    .features li strong {
      display: block;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #1a202c;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background: transparent;
      margin-top: 2rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    th, td {
      padding: 1rem;
      border: 1px solid #edede3;
      text-align: center;
    }
    th {
      background: rgba(64,161,191,0.1);
      font-weight: 600;
    }
    .testimonials {
      margin-top: 4rem;
      background: rgba(64,161,191,0.1);
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    }
    .testimonials blockquote {
      font-style: italic;
      color: #4a5568;
      font-size: 1.1rem;
      margin: 0;
    }
    .faq {
      margin-top: 4rem;
    }
    .faq h3 {
        font-family: 'Gascogne Serial', serif;
      font-size: 1.6rem;
      color: #0a2540;
      margin-bottom: 1rem;
    }
    .faq details {
      background: rgba(255,255,250,1);
      border: 1px solid #ddd6cc;
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
    }
    .faq summary {
      font-weight: 600;
      cursor: pointer;
      color: black;
    }
    .faq p {
      padding-top: 0.5rem;
      color: black;
    }

.hero-logo {
  max-width: 150px;
  margin: 0 auto 1.5rem;
  display: block;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 0rem;
  align-items: stretch;
}

.plan-card {
  background: transparent;
  border: 1px solid black;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0.5rem 0 1rem;
}

.plan-card.highlight {
  background: rgba(64, 161, 191,0.0);
  border-color: black;
}

.plan-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.plan-icon {
  font-size: 1.2rem;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.2rem 0 0.5rem;
}

.old-price {
  font-size: 1rem;
  color: #888;
  margin-left: 0.3rem;
}

.note {
  font-size: 0.85rem;
  color: #B2B2B2;
  margin-bottom: 1rem;
    margin-top: 0px;
}

.plan-body {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.cta {
  display: inline-block;
  padding: 0.8rem 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cta.outline {
  border: 1.5px solid black;
  color: #40A1BF;
  background: transparent;
}

.cta.filled {
  background: #40A1BF;
  color: white;
}

.more-link {
  font-size: 0.85rem;
  color: #40A1BF;
  text-decoration: underline;
  margin-top: 0.5rem;
  display: inline-block;
}

.features-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-list li {
  font-size: 0.9rem;
  margin: 0.4rem 0;
    line-height: 1.6rem;
}

.check-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.check-icon {
  width: 18px;
  height: 18px;
  stroke: black;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  display: block;
}

.recommended-badge {
  position: absolute;
  top: 10px;
  left: 10%;
  transform: translateX(-10%);
  background-color: #40A1BF;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.1rem 0.3rem 0rem 0.3rem;
  border-radius: 0.2rem;
  width: fit-content;
    line-height: 1.4rem;
}

.plan-card {
  position: relative;
}

.strike {
    font-family:sans-serif;
    font-weight: 400;
  text-decoration: line-through;
  color: #888;
  margin-left: 0.4rem;
  font-size: 0.9rem;
    vertical-align: middle;
}
.top-banner {
  background: #000;
  color: #fff;
  padding: 0.5rem 0.5rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
    line-height: 10px;
}

.top-banner a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 1023px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
    .hero p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
    
  .plans {
    grid-template-columns: 1fr;
  }
}
