:root {
  --bg: #FAFBFC;
  --soft: #F3F7FA;
  --paper: #FFFFFF;
  --navy: #162133;
  --charcoal: #26313D;
  --blue: #1976D2;
  --blue-soft: #EAF4FF;
  --sky: #4DA3E8;
  --muted: #657383;
  --border: #DCE5ED;
  --success: #217A57;
  --gold: #D99A32;
  --shadow: 0 22px 70px rgba(22, 33, 51, .11);
}
* { 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(--charcoal);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
}
body.locked { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.info-bar {
  background: var(--navy);
  color: white;
  font-size: .86rem;
  text-align: center;
  padding: .48rem 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 204px; height: auto; display: block; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: absolute;
}
.menu-toggle { position: relative; }
.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  font-size: .93rem;
  white-space: nowrap;
}
.site-nav a { color: var(--charcoal); font-weight: 700; }
.site-actions { display: flex; align-items: center; gap: 10px; }
.market-selector {
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  padding: 0 34px 0 12px;
  font: inherit;
  font-size: .92rem;
  font-weight: 700;
}
.button, .offer-button, .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}
.button, .offer-button {
  color: white;
  background: linear-gradient(135deg, var(--blue), #105DA8);
  box-shadow: 0 12px 28px rgba(25,118,210,.22);
}
.button:hover, .offer-button:hover { color: white; text-decoration: none; transform: translateY(-1px); }
.ghost-button {
  background: white;
  border-color: var(--border);
  color: var(--navy);
}
.ghost-button:hover { text-decoration: none; border-color: var(--sky); }
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(77,163,232,.24), transparent 28%),
    linear-gradient(180deg, #fff 0%, #F4F8FC 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--border);
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 44px;
  padding: 66px 0 58px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #C9E4FF;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 900;
}
h1, h2, h3 {
  font-family: Manrope, "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(2.65rem, 5vw, 3.5rem); margin-top: 18px; }
h2 { font-size: clamp(2rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); }
.lead { font-size: 1.12rem; max-width: 680px; color: #465464; }
.hero-actions, .action-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.small-note { color: var(--muted); font-size: .88rem; max-width: 620px; margin-top: 14px; }
.fact-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.fact-row li, .pill {
  border: 1px solid var(--border);
  background: white;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: .9rem;
}
.product-stage {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  place-items: center;
  min-height: 430px;
}
.product-stage img { max-height: 430px; object-fit: contain; }
section { padding: 76px 0; }
.soft { background: var(--soft); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 32px; }
.section-head p { max-width: 640px; margin: 0; color: var(--muted); }
.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .price-card, .notice-panel, .article-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(22,33,51,.05);
}
.card h3, .article-card h3 { margin-bottom: 8px; }
.card p, .article-card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.08fr .92fr; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 32px; position: relative; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E9F7F0;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
}
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; gap: 14px; }
.price-card.featured { border-color: #9ED0FF; box-shadow: 0 18px 60px rgba(25,118,210,.16); }
.tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: #FFF5DE;
  color: #82540D;
  font-weight: 900;
  font-size: .75rem;
  text-transform: uppercase;
}
.price { font-size: 2rem; color: var(--navy); font-weight: 900; line-height: 1; }
.price span { display: block; font-size: .82rem; color: var(--muted); font-weight: 700; margin-top: 8px; }
.price-card dl { display: grid; gap: 8px; margin: 0; }
.price-card div.row { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--border); padding-top: 8px; }
.price-card dt { color: var(--muted); }
.price-card dd { margin: 0; color: var(--navy); font-weight: 800; text-align: right; }
.price-card .offer-button { margin-top: auto; width: 100%; }
.review-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.quote { font-size: 1.02rem; color: var(--charcoal); }
.faq-list details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 900; }
.faq-list p { color: var(--muted); margin-bottom: 0; }
.cta-band {
  background: linear-gradient(135deg, #162133, #223D5D);
  color: white;
  border-radius: 8px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 28px;
  align-items: center;
}
.cta-band h2, .cta-band p { color: white; }
.cta-band p { margin: 12px 0 0; opacity: .86; }
.cta-band img { max-height: 210px; justify-self: center; }
.blog-hero { padding: 64px 0 40px; background: white; border-bottom: 1px solid var(--border); }
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.meta { color: var(--muted); font-size: .86rem; font-weight: 800; text-transform: uppercase; }
.article-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 58px 22px 82px;
}
.article-layout h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); }
.article-layout h2 { font-size: 1.75rem; margin-top: 42px; }
.article-layout p, .article-layout li { font-size: 1.05rem; }
.article-layout p { margin: 18px 0; }
.article-layout ul { padding-left: 24px; }
.disclaimer-box {
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
  padding: 18px 20px;
  margin: 28px 0;
  color: #27415B;
}
.footer {
  background: #121C2B;
  color: #D8E4EF;
  padding: 48px 0 100px;
}
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 28px; }
.footer h3 { color: white; font-size: 1.05rem; margin-bottom: 12px; }
.footer a, .footer button {
  color: #D8E4EF;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  display: block;
  margin: 8px 0;
  text-align: left;
  cursor: pointer;
}
.footer small { color: #9BA9B8; display: block; margin-top: 24px; }
.mobile-action {
  position: fixed;
  z-index: 45;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
}
.mobile-action .offer-button { flex: 1; min-height: 50px; padding: 12px 10px; font-size: .9rem; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,28,43,.58);
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.overlay.active { display: flex; }
.legal-modal, .exit-panel {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 720px;
  max-height: min(84vh, 760px);
  overflow: auto;
  padding: 28px;
  position: relative;
}
.exit-panel { display: grid; grid-template-columns: 1fr 170px; gap: 22px; align-items: center; max-width: 760px; }
.exit-panel img { max-height: 210px; }
.close-action {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.3rem;
}
@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .site-nav, .site-actions {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: white;
    border-bottom: 1px solid var(--border);
    display: none;
    padding: 16px 22px;
  }
  .site-nav.open, .site-actions.open { display: grid; }
  .site-nav { gap: 12px; }
  .site-actions { top: 360px; grid-template-columns: 1fr; }
  .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .product-stage { min-height: 330px; }
  .grid.three, .price-grid, .review-strip, .blog-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .header-inner { min-height: 66px; padding: 0 16px; }
  .brand img { width: 170px; }
  .site-nav { top: 66px; }
  .site-actions { top: 352px; }
  .hero-grid { padding: 42px 0 38px; gap: 26px; }
  section { padding: 54px 0; }
  .section-head { display: block; }
  .grid.two, .grid.three, .price-grid, .review-strip, .blog-grid, .footer-grid, .cta-band, .exit-panel { grid-template-columns: 1fr; }
  .cta-band { padding: 28px; }
  .hero-actions .offer-button, .hero-actions .ghost-button, .action-row .offer-button, .action-row .ghost-button { width: 100%; }
  .mobile-action { display: flex; }
  .product-stage { padding: 18px; }
  .article-layout { padding-top: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}