:root {
  --blue: #0063ac;
  --blue-dark: #004d87;
  --blue-light: #e8f3fb;
  --blue-xlight: #f4f9fd;
  --white: #ffffff;
  --border: #d6e6f5;
  --text: #0d1f2d;
  --text-mid: #2c4a60;
  --text-muted: #5d7d97;
  --green: #1db954;
  --red-bar: #c0392b;
  --gold: #e8a020;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0, 99, 172, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--blue-xlight);
  color: var(--text);
}

/* ── ANNOUNCEMENT ── */
.announcement {
  background: var(--red-bar);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── NAV ── */
nav {
  background: var(--blue);
  padding: 0 4%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.logo {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.logo span {
  color: rgba(255, 255, 255, 0.65);
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.nav-cta {
  background: #fff;
  color: var(--blue);
  padding: 9px 20px;
  border-radius: 8px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: #e8f3fb;
}

/* ── HERO STRIP ── */
.page-hero {
  background: var(--blue);
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  padding: 70px 5% 60px;
  text-align: center;
}
.page-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 7px 20px;
  border-radius: 6px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.page-hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 span {
  color: rgba(255, 255, 255, 0.75);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PRODUCTS SECTION ── */
.products-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 32px;
  margin-top: 0;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 99, 172, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 99, 172, 0.18);
}

/* Card top color band */
.card-band {
  height: 6px;
  background: var(--blue);
}
.card-band.gold-band {
  background: linear-gradient(90deg, #e8a020, #f5c842);
}

/* Product Header */
.card-header {
  padding: 32px 32px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}
.card-header-left {
  flex: 1;
}
.product-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.product-tag.gold-tag {
  background: #fff4e0;
  color: #b87a00;
}
.product-name {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.05;
  margin-bottom: 6px;
}
.product-name.gold-name {
  color: #c17f00;
}
.product-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.product-icon {
  width: 72px;
  height: 72px;
  background: var(--blue-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
}
.product-icon.gold-icon {
  background: #fff4e0;
}

/* Pill Visual */
.pill-visual {
  margin: 0 32px 0;
  padding: 24px;
  background: var(--blue-xlight);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 0;
}
.pill-visual.gold-visual {
  background: #fffbf0;
}
.pill-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 99, 172, 0.3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.pill-img::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
.pill-img.gold-pill {
  background: linear-gradient(135deg, #e8a020, #f5c842);
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.35);
}
.pill-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pill-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pill-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 90px;
  flex-shrink: 0;
}
.stat-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(0, 99, 172, 0.12);
  border-radius: 3px;
  overflow: hidden;
}
.stat-bar {
  height: 100%;
  border-radius: 3px;
  background: var(--blue);
}
.stat-bar.gold-bar {
  background: linear-gradient(90deg, #e8a020, #f5c842);
}
.pill-stat-val {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}
.pill-stat-val.gold-val {
  color: #b87a00;
}

/* Highlights row */
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px 32px;
}
.highlight-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-xlight);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
}
.highlight-chip.gold-chip {
  background: #fffbf0;
  border-color: #f0d090;
}
.hc-icon {
  font-size: 18px;
}
.hc-text {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.3;
}
.hc-text strong {
  display: block;
  font-size: 13px;
  color: var(--text);
}

/* Features list */
.features-list {
  padding: 0 32px 8px;
  border-top: 1px solid var(--border);
}
.features-list-title {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 0 10px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--blue-xlight);
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
}
.feat-item:last-child {
  border-bottom: none;
}
.feat-ck {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-ck.gold-ck {
  color: #e8a020;
}

/* Pricing block */
.card-pricing {
  padding: 24px 32px;
  background: var(--blue-xlight);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.card-pricing.gold-pricing {
  background: #fffbf0;
  border-top-color: #f0d090;
}
.pricing-left {
}
.pricing-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pricing-amount {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.pricing-amount.gold-amount {
  color: #b87a00;
}
.pricing-amount sup {
  font-size: 22px;
  vertical-align: super;
}
.pricing-per {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.pricing-savings {
  display: inline-block;
  background: #e8f8ee;
  color: #1a8c45;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 6px;
}

/* CTA Button */
.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 15px 28px;
  border-radius: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(0, 99, 172, 0.3);
  transition: all 0.25s;
  flex-shrink: 0;
}
.btn-card:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 99, 172, 0.4);
}
.btn-card.gold-btn {
  background: linear-gradient(135deg, #e8a020, #f5c842);
  color: #3d2000;
  box-shadow: 0 5px 20px rgba(232, 160, 32, 0.35);
}
.btn-card.gold-btn:hover {
  background: linear-gradient(135deg, #d49015, #e8b530);
  box-shadow: 0 10px 30px rgba(232, 160, 32, 0.5);
}

/* Most Popular badge */
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 10px rgba(232, 160, 32, 0.4);
}

/* Doctor Note */
.doctor-note {
  margin: 0 32px 24px;
  padding: 14px 18px;
  background: #f0f7ff;
  border: 1px solid #c8e0f5;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.6;
}
.doctor-note.gold-note {
  background: #fffbf0;
  border-color: #f0d090;
  border-left-color: #e8a020;
}
.doctor-note strong {
  color: var(--blue);
}
.doctor-note.gold-note strong {
  color: #b87a00;
}

/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 5%;
  background: #fff;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  margin-top: 60px;
}
.ts-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.ts-item .ico {
  font-size: 18px;
}

/* Section head */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Comparison table */
.compare-section {
  padding: 60px 5% 80px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th {
  background: var(--blue);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  text-align: center;
  letter-spacing: 0.04em;
}
.compare-table th:first-child {
  text-align: left;
  background: var(--blue-dark);
}
.compare-table td {
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  background: #fff;
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  background: var(--blue-xlight);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:hover td {
  background: var(--blue-light);
}
.compare-table tr:hover td:first-child {
  background: #dceef9;
}
.ck-yes {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}
.ck-gold {
  color: #e8a020;
  font-size: 16px;
  font-weight: 700;
}

/* Footer simple */
.footer-simple {
  background: var(--blue);
  padding: 32px 5%;
  text-align: center;
}
.footer-simple p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.footer-logo {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.footer-logo span {
  color: rgba(255, 255, 255, 0.55);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeUp 0.7s ease both;
}
.fade-in-2 {
  animation: fadeUp 0.7s ease both 0.15s;
}

@media (max-width: 1050px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .card-header,
  .highlights,
  .features-list,
  .card-pricing,
  .doctor-note,
  .pill-visual {
    padding-left: 20px;
    padding-right: 20px;
  }
  .highlights {
    grid-template-columns: 1fr;
  }
  .card-pricing {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
}
