.brand-logo {
  display: block;
  width: 190px;
  height: 58px;
  object-fit: contain;
}

:root {
  --navy: #084e79;
  --navy2: #0d5f96;
  --blue: #1c64a0;
  --cyan: #ffd83f;
  --ice: #f5f9fd;
  --text: #123d59;
  --muted: #5f7180;
  --line: #d8e3eb;
}

.site-header {
  background: rgba(255, 255, 255, .97);
  border-bottom: 4px solid #ffd83f;
}

.nav-links { color: #084e79; }
.nav-links a:hover { color: #ef2d35; }
.menu-btn { color: #084e79; }
.btn-small, .btn-primary {
  background: #ffd83f;
  color: #084e79;
  box-shadow: 0 12px 32px rgba(255, 216, 63, .22);
}

.btn-small:hover, .btn-primary:hover { background: #ffe46f; }
.hero {
  background: linear-gradient(135deg, #084e79 0%, #1c64a0 64%, #0d5f96 100%);
}
.hero:after {
  content: "";
  position: absolute;
  right: -6%;
  top: -28%;
  width: 42%;
  height: 165%;
  border: 7px solid rgba(255, 216, 63, .9);
  border-radius: 48%;
  transform: rotate(-13deg);
  pointer-events: none;
}
.hero h1 span, .promo-label, .text-link, .eyebrow { color: #ffd83f; }
.hero-card {
  overflow: hidden;
  padding: 0 0 30px;
  background: #fff;
  color: #084e79;
  border: 0;
}
.hero-brand-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 6px solid #ffd83f;
}
.hero-card .promo-label { color: #1c64a0; margin-top: 24px; }
.hero-card .promo-price strong { color: #084e79; }
.hero-card .promo-price small, .hero-card p { color: #5f7180; }
.hero-card .text-link { color: #ef2d35; }
.services-section, .faq-section { background: #084e79; }
.service-card { background: #1c64a0; }
.badge { color: #084e79; background: #fff5b7; }
.price-card.featured { border-color: #ffd83f; }
.price-card li strong, .why-list b, .coverage-card strong { color: #1c64a0; }
.floating-book { background: #ef2d35; }
.footer { background: #063954; }
.footer-brand {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 7px 12px;
}

.units-section { background: #f4f8fb; }
.placeholder-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -16px 0 24px;
  padding: 13px 16px;
  border: 1px solid #efcf3d;
  border-radius: 12px;
  background: #fff9d9;
  color: #4f4a27;
  font-size: 13px;
}
.placeholder-notice strong { color: #084e79; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(8, 78, 121, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(8, 78, 121, .14);
}
.product-image { position: relative; aspect-ratio: 4 / 3; background: #eef4f8; }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-image span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #ffd83f;
  color: #084e79;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
}
.product-copy { padding: 21px; }
.product-copy small {
  color: #1c64a0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.product-copy h3 { margin: 7px 0 8px; color: #084e79; font-size: 20px; }
.product-copy p { min-height: 70px; margin: 0 0 15px; color: var(--muted); font-size: 14px; }
.product-copy > strong { display: block; margin-bottom: 14px; color: #ef2d35; font-size: 13px; }
.product-inquiry { color: #084e79; font-size: 13px; font-weight: 900; }
.product-inquiry:hover { color: #ef2d35; }

.testimonials-section { overflow: hidden; background: #fff; }
.testimonials-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 16px; }
.testimonials-head h2 { margin: 0; font: 800 clamp(30px, 4vw, 46px)/1.1 Montserrat, sans-serif; color: #084e79; }
.testimonial-controls { display: flex; gap: 8px; }
.testimonial-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #084e79;
  font-size: 22px;
  cursor: pointer;
}
.testimonial-controls button:hover { background: #ffd83f; border-color: #ffd83f; }
.testimonial-disclaimer {
  max-width: 850px;
  margin: 0 0 26px;
  padding: 13px 16px;
  border-left: 4px solid #ef2d35;
  border-radius: 8px;
  background: #fff5f5;
  color: #6e5a5a;
  font-size: 13px;
}
.testimonial-track {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 31%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  padding: 2px 2px 18px;
}
.testimonial-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbfd;
}
.stars { color: #e7b900; letter-spacing: 2px; font-size: 17px; }
.testimonial-card blockquote { flex: 1; margin: 16px 0 22px; color: #30495b; font-size: 15px; font-weight: 600; }
.testimonial-card p { margin: 0; }
.testimonial-card p strong, .testimonial-card p span { display: block; }
.testimonial-card p strong { color: #084e79; font-size: 14px; }
.testimonial-card p span { color: var(--muted); font-size: 12px; }

.coverage-section {
  background: #fff;
  padding-top: 78px;
  padding-bottom: 78px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}

.coverage-section h2 {
  font: 800 clamp(30px, 3.8vw, 44px)/1.12 Montserrat, sans-serif;
  margin: 0 0 18px;
  letter-spacing: -1.2px;
}

.coverage-section p { color: var(--muted); margin: 0; }

.coverage-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.coverage-card > div {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-card > div:nth-child(2n) { border-right: 0; }
.coverage-card > div:nth-last-child(-n+2) { border-bottom: 0; }
.coverage-card strong, .coverage-card span { display: block; }
.coverage-card strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0873cf;
  margin-bottom: 5px;
}
.coverage-card span { font-size: 14px; font-weight: 700; color: #384960; }

.policy-grid {
  max-width: 930px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.policy-grid > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px;
}

.policy-grid strong, .policy-grid span { display: block; }
.policy-grid strong { font-size: 14px; color: var(--navy); margin-bottom: 5px; }
.policy-grid span { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) {
  .nav-links { background: #fff; color: #084e79; border-top: 1px solid var(--line); }
  .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-track { grid-auto-columns: minmax(280px, 46%); }
}

@media (max-width: 620px) {
  .brand-logo { width: 160px; height: 50px; }
  .hero:after { display: none; }
  .coverage-card, .policy-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-copy p { min-height: 0; }
  .placeholder-notice { align-items: flex-start; flex-direction: column; gap: 2px; }
  .testimonials-head { align-items: flex-start; }
  .testimonial-controls { display: none; }
  .testimonial-track { grid-template-rows: 1fr; grid-auto-columns: 87%; }
  .coverage-card > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .coverage-card > div:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .coverage-card > div:last-child { border-bottom: 0; }
}
