:root {
  --navy: #0b2f3a;
  --navy-2: #123f4c;
  --teal: #159a9c;
  --teal-soft: #e6f6f5;
  --orange: #f28c28;
  --orange-soft: #fff2e3;
  --cream: #fbf7ef;
  --white: #ffffff;
  --ink: #1d2a2e;
  --muted: #617076;
  --border: #dce8e8;
  --shadow: 0 24px 60px rgba(11, 47, 58, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fcfb 0%, #ffffff 42%, #fbf7ef 100%);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 232, 232, 0.75);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand strong { display: block; color: var(--navy); line-height: 1.05; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 2px; }

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}
.nav a { text-decoration: none; }
.nav a:hover { color: var(--teal); }
.header-cta {
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(11, 47, 58, 0.18);
}

.section-pad { padding: 88px max(22px, calc((100vw - var(--max)) / 2)); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 56px;
  min-height: 680px;
  background:
    radial-gradient(circle at 14% 18%, rgba(21,154,156,0.14), transparent 34%),
    radial-gradient(circle at 84% 25%, rgba(242,140,40,0.12), transparent 26%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 { color: var(--navy); margin-top: 0; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); line-height: 0.92; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; margin-bottom: 18px; }
h3 { font-size: 1.55rem; margin-bottom: 12px; }
p { line-height: 1.7; }
.hero-text { font-size: 1.22rem; color: #385158; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--teal); color: white; box-shadow: 0 16px 30px rgba(21,154,156,0.25); }
.btn.secondary { background: white; color: var(--navy); border: 1px solid var(--border); }
.btn.secondary.light { background: rgba(255,255,255,0.16); color: white; border-color: rgba(255,255,255,0.45); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span {
  display: inline-flex;
  padding: 9px 13px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-card { position: relative; display: grid; place-items: center; }
.mock-page {
  width: min(100%, 420px);
  min-height: 560px;
  background: white;
  border: 10px solid var(--teal-soft);
  outline: 2px solid var(--teal);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
  transform: rotate(2.5deg);
}
.mock-header {
  background: var(--navy);
  color: white;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: 14px;
  padding: 18px;
  font-size: 1.4rem;
}
.mock-subtitle { color: var(--teal); text-align: center; font-weight: 900; margin: 16px 0 22px; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.mock-grid span, .mock-box {
  display: block;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-soft), #ffffff);
  border: 1px solid var(--border);
  min-height: 110px;
}
.mock-box { margin-top: 14px; min-height: 82px; }
.mock-box.wide { min-height: 120px; }
.exam-pearl { margin-top: 18px; background: var(--orange); color: white; font-weight: 950; text-align: center; border-radius: 14px; padding: 16px; }
.float-badge {
  position: absolute;
  right: 0;
  top: 42px;
  background: var(--orange);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(242,140,40,0.25);
}

.logos-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 22px;
  background: var(--navy);
  color: white;
}
.logos-strip span { opacity: 0.9; font-weight: 800; font-size: 0.95rem; }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 45px rgba(11,47,58,0.07);
}
.product-card.featured { border-color: rgba(21,154,156,0.45); box-shadow: var(--shadow); }
.card-topline { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 22px; }
.tag { background: var(--orange); color: white; padding: 7px 11px; border-radius: 999px; font-size: 0.78rem; font-weight: 950; }
.tag.muted { background: var(--teal-soft); color: var(--teal); }
.tag.free { background: var(--navy); color: white; }
.price { color: var(--navy); font-weight: 950; font-size: 0.88rem; }
.product-card p { color: var(--muted); }
ul { padding-left: 18px; color: #42565c; line-height: 1.7; }
.text-link { color: var(--teal); font-weight: 950; text-decoration: none; }
.text-link:hover { text-decoration: underline; }


.bundles-section { padding-top: 26px; }
.bundle-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
  background:
    radial-gradient(circle at 16% 12%, rgba(242,140,40,0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bundle-card h2, .bundle-card h3 { color: white; }
.bundle-copy p:not(.eyebrow), .bundle-action-card p { color: rgba(255,255,255,0.8); }
.bundle-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.bundle-highlights span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 850;
  font-size: 0.9rem;
}
.bundle-action-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.savings-badge {
  display: inline-flex;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.choose-section { padding-top: 20px; }
.choose-card {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-xl);
  padding: 42px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  box-shadow: var(--shadow);
}
.choose-card h2 { color: white; margin-bottom: 0; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice-grid div {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px;
}
.choice-grid strong, .choice-grid span { display: block; }
.choice-grid span { color: rgba(255,255,255,0.78); margin-top: 6px; line-height: 1.5; }

.preview-section { background: var(--cream); }
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.preview-tile {
  min-height: 300px;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(21,154,156,0.45);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.85), rgba(230,246,245,0.8)),
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(11,47,58,0.04) 19px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  font-weight: 950;
  padding: 24px;
}

.story-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.story-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.values-list { display: grid; gap: 16px; }
.values-list div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(11,47,58,0.06);
}
.values-list strong { display: block; color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
.values-list span { color: var(--muted); line-height: 1.6; }

.disclaimer-section { padding-top: 18px; }
.disclaimer-card {
  background: var(--teal-soft);
  border: 1px solid rgba(21,154,156,0.28);
  border-radius: var(--radius-xl);
  padding: 34px;
}
.disclaimer-card h2 { font-size: 2rem; }
.disclaimer-card p { color: #385158; margin-bottom: 0; }

.faq-list { max-width: 850px; margin: 0 auto; display: grid; gap: 14px; }
details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 10px 26px rgba(11,47,58,0.05);
}
summary { cursor: pointer; color: var(--navy); font-weight: 950; }
details p { color: var(--muted); margin-bottom: 0; }

.final-cta {
  text-align: center;
  background: radial-gradient(circle at 20% 20%, rgba(21,154,156,0.24), transparent 26%), var(--navy);
  color: white;
}
.final-cta h2 { color: white; }
.final-cta p:not(.eyebrow) { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,0.82); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px max(22px, calc((100vw - var(--max)) / 2));
  background: #061e25;
  color: rgba(255,255,255,0.72);
}
.site-footer p { margin: 0; }
.site-footer a { color: white; font-weight: 800; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero, .story-section, .choose-card, .bundle-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .product-grid, .preview-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { align-items: flex-start; }
  .header-cta { display: none; }
  .section-pad { padding: 64px 18px; }
  h1 { font-size: 3.15rem; }
  .product-grid, .preview-grid, .choice-grid { grid-template-columns: 1fr; }
  .choose-card { padding: 28px; }
  .mock-page { min-height: 480px; transform: rotate(0); }
  .float-badge { right: 12px; top: 24px; }
}

/* Updated dropdown navigation + added sections */
.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: " ▾";
  font-size: 0.85em;
}

.dropdown:hover .dropdown-toggle,
.dropdown:focus-within .dropdown-toggle {
  background: rgba(12, 84, 97, 0.08);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid rgba(11, 47, 58, 0.12);
  box-shadow: 0 20px 50px rgba(11, 47, 58, 0.16);
  border-radius: 18px;
  padding: 0.55rem;
  display: none;
  z-index: 50;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  color: #0b2f3a;
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #e9f7f6;
  color: #0c5461;
}

.clean-hero-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.clean-hero-card h2 {
  margin: 0.2rem 0 1rem;
  color: #0b2f3a;
}

.hero-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-list span {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #f4fbfa;
  border: 1px solid rgba(12, 84, 97, 0.12);
  font-weight: 800;
  color: #0b2f3a;
}

.callout-card,
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(11, 47, 58, 0.12);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 18px 40px rgba(11, 47, 58, 0.08);
}

.callout-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.callout-card h2,
.contact-card h2 {
  margin-top: 0.2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 0.25rem;
  }

  .callout-card {
    grid-template-columns: 1fr;
  }
}


/* Shop options section */
.shop-options-section {
  padding-top: 46px;
  padding-bottom: 34px;
}
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.shop-card {
  background: #ffffff;
  border: 1px solid rgba(11, 47, 58, 0.12);
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 16px 38px rgba(11, 47, 58, 0.07);
}
.shop-card.preferred {
  border-color: rgba(21,154,156,0.42);
  box-shadow: 0 22px 54px rgba(11, 47, 58, 0.12);
}
.shop-card h3 {
  margin-top: 1rem;
}
.shop-card p {
  color: var(--muted);
}
.dropdown-label {
  display: block;
  margin: 0.35rem 0 0.15rem;
  padding: 0.6rem 0.85rem 0.3rem;
  border-top: 1px solid rgba(11, 47, 58, 0.1);
  color: #617076;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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