:root {
  --ink: #15191f;
  --muted: #5f6976;
  --line: #dfe4ea;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --charcoal: #242932;
  --yellow: #f7c600;
  --yellow-dark: #c39200;
  --teal: #087b83;
  --green: #2c8f55;
  --blue: #315a99;
  --danger: #af3f3a;
  --shadow: 0 18px 45px rgba(16, 24, 40, .12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(8, 123, 131, .35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -42px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  transition: top .18s ease;
}

.skip-link:focus {
  top: 14px;
}

.top-strip {
  background: #14181f;
  color: #f6f7f8;
  font-size: .88rem;
}

.top-strip .container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.top-strip strong {
  color: var(--yellow);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(21, 25, 31, .08);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow), #fff4a6 48%, var(--teal) 49%, #0d6872);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-title {
  display: block;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--charcoal);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--soft);
}

.nav .nav-cta {
  background: var(--yellow);
  color: #111;
}

.nav .nav-cta:hover {
  background: #e9b900;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 41%, rgba(255, 255, 255, .54) 56%, rgba(255, 255, 255, .08) 100%),
    var(--hero-image) center right / cover no-repeat;
}

.hero-grid {
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: minmax(0, 560px) minmax(260px, 1fr);
  gap: 34px;
  padding: 70px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: #29313c;
  font-size: .84rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 7vw, 5.1rem);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.lead {
  max-width: 64ch;
  color: #3d4651;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.small {
  color: var(--muted);
  font-size: .92rem;
}

.fine-print {
  color: #687280;
  font-size: .84rem;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 8px 24px rgba(247, 198, 0, .32);
}

.button.secondary {
  border-color: #bac2cc;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
}

.button.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-item {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: .98rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding: 46px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: #181e27;
  color: #fff;
}

.section.dark .lead,
.section.dark .small,
.section.dark .fine-print {
  color: #d8dde5;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 56ch;
  margin-bottom: 0;
  color: var(--muted);
}

.section.dark .section-heading p {
  color: #d8dde5;
}

.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));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(16, 24, 40, .02);
}

.card.pad {
  padding: 24px;
}

.card.featured {
  border-color: rgba(247, 198, 0, .86);
  box-shadow: var(--shadow);
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.product-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border-radius: 8px;
  background: #edf7f6;
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 900;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff7cc;
  color: #6f5200;
  font-size: .78rem;
  font-weight: 800;
}

.product-card ul,
.check-list,
.plain-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #3f4853;
}

.product-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #dff1e7;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  flex-wrap: wrap;
}

.price-note {
  color: var(--muted);
  font-size: .88rem;
}

.image-band {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eef3f5;
  box-shadow: var(--shadow);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 38px;
}

.notice {
  border-left: 5px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fffbea;
  padding: 18px 20px;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: #f7f9fb;
  color: #222a33;
  font-size: .88rem;
  text-transform: uppercase;
}

tbody tr:last-child td,
tbody tr:last-child th {
  border-bottom: 0;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #38424f;
  font-size: .9rem;
  font-weight: 700;
}

.page-hero {
  background:
    linear-gradient(110deg, #15191f 0%, #242d3a 48%, #0c6870 100%);
  color: #fff;
}

.page-hero .container {
  padding-top: 62px;
  padding-bottom: 58px;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.page-hero .lead {
  color: #e6ebf2;
}

.breadcrumb {
  margin-bottom: 16px;
  color: #d6dde7;
  font-size: .9rem;
}

.breadcrumb a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
}

.contact-method {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
}

.contact-method strong {
  display: block;
}

.contact-method span {
  color: var(--muted);
}

.policy-content {
  max-width: 860px;
}

.policy-content h2 {
  margin-top: 36px;
  font-size: 1.55rem;
}

.policy-content h3 {
  margin-top: 24px;
}

.policy-content a {
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  background: #11161d;
  color: #eef2f6;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding: 52px 0 38px;
}

.footer-main h2,
.footer-main h3 {
  font-size: 1rem;
}

.footer-main p,
.footer-main a,
.footer-bottom {
  color: #c8d0da;
}

.footer-main a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
}

.footer-main a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0 26px;
  font-size: .86rem;
}

.footer-bottom p {
  margin-bottom: 8px;
}

.logo-note {
  color: #8f9aa8;
  font-size: .78rem;
}

@media (max-width: 940px) {
  .top-strip .container,
  .header-inner,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 48%, rgba(255, 255, 255, .35) 100%),
      var(--hero-image) center bottom / cover no-repeat;
  }

  .hero-grid {
    min-height: 730px;
    align-items: start;
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .trust-row,
  .grid.four,
  .grid.three,
  .grid.two,
  .split,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav a {
    padding-inline: 9px;
    font-size: .88rem;
  }

  h1 {
    max-width: 11ch;
  }

  .section {
    padding: 54px 0;
  }

  .card.pad,
  .product-card {
    padding: 18px;
  }

  .button {
    width: 100%;
  }
}
