/* ============================================
   Matador Fire — Defense System Sales Page
   Brand: Charcoal / Red / Ember / Bone / Ash
   Fonts: Clarendon (headings) + Cabinet Grotesk (body)
   ============================================ */

/* --- Google Fonts stand-ins --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* --- Custom Properties --- */
:root {
  --charcoal: #0D0B09;
  --red: #EC1B34;
  --ember: #C44A0A;
  --bone: #F0E8DC;
  --ash: #6D6F70;
  --white: #FFFFFF;
  --bone-light: #F7F3ED;
  --charcoal-light: #1A1714;
  --red-dark: #C4162B;
  --font-heading: 'Roboto Slab', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 2px 20px rgba(13,11,9,0.08);
  --shadow-elevated: 0 8px 40px rgba(13,11,9,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--ash); }
.text-bone { color: var(--bone); }
.text-red { color: var(--red); }
.text-ember { color: var(--ember); }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-pad) 0;
}
.section--bone { background: var(--bone-light); }
.section--charcoal { background: var(--charcoal); }
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4 { color: var(--bone); }
.section--charcoal p { color: var(--ash); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 27, 52, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn--bone {
  background: var(--bone);
  color: var(--charcoal);
}
.btn--bone:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 232, 220, 0.4);
}
.btn--large {
  padding: 20px 48px;
  font-size: 18px;
}
.btn--icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition);
}
.nav--transparent {
  background: transparent;
}
.nav--solid {
  background: var(--charcoal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__logo-icon {
  font-size: 1.6rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__cta {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  transition: all var(--transition);
}
.nav__cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--charcoal);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile-menu.active { display: flex; }
.nav__mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,9,0.4) 0%,
    rgba(13,11,9,0.7) 60%,
    rgba(13,11,9,0.95) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: calc(var(--nav-height) + 40px);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title span { color: var(--red); }
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(240, 232, 220, 0.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__video-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}
.hero__video-cta:hover { color: var(--white); }
.hero__video-cta .play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.hero__video-cta:hover .play-icon {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ============================================
   PROOF BAR
   ============================================ */
.proof-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(240,232,220,0.7);
  font-size: 15px;
  font-weight: 500;
}
.proof-bar__number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
}
.proof-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .proof-bar__inner { gap: 20px; }
  .proof-bar__divider { display: none; }
  .proof-bar__item { font-size: 13px; }
}

/* ============================================
   VIDEO PLACEHOLDER
   ============================================ */
.video-section { background: var(--bone-light); }
.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-elevated);
}
.video-placeholder__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.video-placeholder__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.play-btn-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 30px rgba(236,27,52,0.4);
}
.play-btn-large:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 40px rgba(236,27,52,0.5);
}
.play-btn-large svg { width: 32px; height: 32px; fill: var(--white); margin-left: 4px; }
.video-placeholder__label {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem { text-align: center; }
.problem__lead {
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.8;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}
.problem__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.problem__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(236,27,52,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.problem__card-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 2; }
.problem__card h3 { margin-bottom: 10px; }
.problem__card p { font-size: 15px; line-height: 1.7; }
@media (max-width: 768px) {
  .problem__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   3-STEP PROCESS
   ============================================ */
.steps { text-align: center; }
.steps__header { margin-bottom: 64px; }
.steps__header p {
  max-width: 600px;
  margin: 12px auto 0;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  text-align: center;
}
.step__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 8px;
}
.section--bone .step__number { color: rgba(13,11,9,0.06); }
.step__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bone);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ash);
  text-align: center;
  padding: 16px;
  background: var(--bone-light);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; max-width: 300px; margin: 0 auto; }
@media (max-width: 768px) {
  .steps__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   CALCULATOR EMBED
   ============================================ */
.calculator-embed {
  text-align: center;
}
.calculator-embed__frame {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  background: var(--white);
}
.calculator-embed__frame iframe {
  width: 100%;
  height: 800px;
  border: none;
}
.calculator-embed__alt {
  margin-top: 24px;
}
.calculator-embed__alt a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features { text-align: center; }
.features__header { margin-bottom: 64px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.feature-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bone);
  overflow: hidden;
  position: relative;
}
.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card__body {
  padding: 28px 24px;
  text-align: left;
}
.feature-card__body h3 { margin-bottom: 10px; }
.feature-card__body p { font-size: 15px; line-height: 1.7; }
@media (max-width: 768px) {
  .features__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   SYSTEM SPECS
   ============================================ */
.system-specs {
  text-align: center;
}
.specs__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 48px auto 0;
}
.spec {
  text-align: center;
}
.spec__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.spec__unit {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--red);
}
.spec__label {
  font-size: 14px;
  color: var(--ash);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 600px) {
  .specs__row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-showcase__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.product-showcase__image img {
  width: 100%;
  display: block;
}
.product-showcase__content h2 { margin-bottom: 20px; }
.product-showcase__content p { margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.product-showcase__list {
  margin: 24px 0 32px;
}
.product-showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--charcoal);
}
.product-showcase__list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .product-showcase { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   COMPARISON
   ============================================ */
.comparison-table {
  max-width: 800px;
  margin: 48px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 15px;
}
.comparison-table thead th {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-table thead th:last-child {
  color: var(--red);
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--bone);
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td { color: var(--ash); }
.comparison-table tbody td:last-child { color: var(--charcoal); font-weight: 600; }
.comparison-table .check { color: var(--red); font-weight: 700; }
.comparison-table .x-mark { color: var(--ash); opacity: 0.4; }

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews { text-align: center; overflow: hidden; }
.reviews__header { margin-bottom: 48px; }
.reviews__stats {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(236,27,52,0.06);
  padding: 12px 28px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.reviews__stars { color: var(--red); font-size: 1.2rem; letter-spacing: 2px; }
.reviews__count { font-weight: 600; font-size: 15px; color: var(--charcoal); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--bone-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-2px); }
.review-card__stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.review-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: 20px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bone);
  overflow: hidden;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__info { text-align: left; }
.review-card__name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.review-card__location { font-size: 12px; color: var(--ash); }
.review-card__verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   RISK CHECKER EMBED
   ============================================ */
.risk-embed { text-align: center; }
.risk-embed__frame {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  background: var(--white);
}
.risk-embed__frame iframe {
  width: 100%;
  height: 700px;
  border: none;
}

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 48px; }
.faq__item {
  border-bottom: 1px solid var(--bone);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--red); }
.faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
  margin-left: 16px;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px;
  height: 2px;
  background: var(--charcoal);
  transform: translate(-50%, -50%);
  transition: all var(--transition);
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.active .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ash);
}

/* ============================================
   RISK CHECKER WIDGET
   ============================================ */
.risk-widget {
  max-width: 700px;
  margin: 0 auto;
}
.risk-widget__search {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.risk-widget__search input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  text-align: center;
  transition: border-color var(--transition);
}
.risk-widget__search input::placeholder { color: var(--ash); letter-spacing: 0; font-weight: 400; font-size: 16px; }
.risk-widget__search input:focus { outline: none; border-color: var(--red); }
.risk-widget__search .btn { white-space: nowrap; padding: 16px 28px; }
.risk-widget__hint {
  text-align: center;
  font-size: 13px;
  color: var(--ash);
  margin-top: 12px;
}
.risk-widget__results {
  text-align: center;
}
.risk-widget__zone {
  margin-bottom: 32px;
}
.risk-widget__zone-badge {
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.risk-widget__zone-badge.zone-moderate { background: rgba(255,165,0,0.15); color: #FFA500; }
.risk-widget__zone-badge.zone-high { background: rgba(236,27,52,0.15); color: var(--red); }
.risk-widget__zone-badge.zone-veryhigh { background: var(--red); color: var(--white); }
.risk-widget__zone-title { font-size: 14px; color: var(--ash); margin-top: 4px; }
.risk-widget__zone-zip { font-size: 14px; color: var(--ash); margin-top: 4px; }
.risk-widget__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.risk-widget__stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
}
.risk-widget__stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.risk-widget__stat-label {
  font-size: 13px;
  color: var(--ash);
}
.risk-widget__message {
  background: rgba(236,27,52,0.06);
  border: 1px solid rgba(236,27,52,0.12);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240,232,220,0.85);
  max-width: 600px;
  margin: 0 auto;
}
.risk-widget__table {
  max-width: 600px;
  margin: 48px auto 0;
}
.risk-widget__table table {
  width: 100%;
  border-collapse: collapse;
}
.risk-widget__table th,
.risk-widget__table td {
  padding: 12px 16px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.risk-widget__table th {
  color: var(--ash);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.risk-widget__table td { color: rgba(240,232,220,0.75); }
.risk-widget__table tr.active-zone td { color: var(--white); font-weight: 600; background: rgba(236,27,52,0.08); }
.risk-zone-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}
.risk-zone-dot--moderate { background: #FFA500; }
.risk-zone-dot--high { background: var(--red); }
.risk-zone-dot--veryhigh { background: #FF2020; }

@media (max-width: 600px) {
  .risk-widget__search { flex-direction: column; }
  .risk-widget__stats { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================
   COST CALCULATOR WIDGET
   ============================================ */
.calc-widget {
  max-width: 800px;
  margin: 0 auto;
}
.calc-widget__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.calc-widget__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.calc-widget__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ash);
  margin-bottom: 8px;
}
.calc-widget__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.calc-widget__value span {
  color: var(--red);
}
.calc-widget__range {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ash);
  margin-top: 8px;
}
/* Slider track styling */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.15s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Results */
.calc-widget__results {
  max-width: 800px;
  margin: 0 auto;
}
.calc-widget__results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.calc-widget__result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.calc-widget__result-card--highlight {
  background: rgba(236,27,52,0.08);
  border-color: rgba(236,27,52,0.2);
}
.calc-widget__result-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ash);
  margin-bottom: 8px;
  font-weight: 600;
}
.calc-widget__result-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.calc-widget__result-card--highlight .calc-widget__result-number {
  color: var(--red);
}
.calc-widget__result-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.5;
}
.calc-widget__explanation {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240,232,220,0.8);
  margin-bottom: 20px;
}
.calc-widget__explanation strong { color: var(--white); }
.calc-widget__context {
  background: rgba(236,27,52,0.06);
  border: 1px solid rgba(236,27,52,0.1);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240,232,220,0.75);
}
.calc-widget__context strong { color: var(--bone); }

@media (max-width: 768px) {
  .calc-widget__grid { grid-template-columns: 1fr; }
  .calc-widget__results-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(236,27,52,0.08) 0%, transparent 60%);
}
.final-cta__content {
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(240,232,220,0.7);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}
.final-cta__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--bone);
  font-weight: 700;
  margin-bottom: 8px;
}
.final-cta__price span { color: var(--red); font-size: 2rem; }
.final-cta__sub {
  font-size: 14px;
  color: var(--ash);
  margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  color: var(--ash);
  font-size: 14px;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--bone); }
.footer__copy {
  font-size: 13px;
  color: var(--ash);
}
@media (max-width: 768px) {
  .footer__inner { flex-direction: column; text-align: center; }
}

/* ============================================
   PRODUCT PAGE SPECIFIC
   ============================================ */
.product-hero {
  background: var(--charcoal);
  padding: calc(var(--nav-height) + 48px) 0 64px;
}
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-gallery {
  position: relative;
}
.product-gallery__main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-light);
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.product-gallery__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  border: 2px solid transparent;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--red);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info { color: var(--bone); }
.product-info__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.product-info__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}
.product-info__subtitle {
  color: var(--ash);
  font-size: 16px;
  margin-bottom: 24px;
}
.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.product-info__price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
}
.product-info__price-period {
  font-size: 16px;
  color: var(--ash);
}
.product-info__price-note {
  font-size: 14px;
  color: var(--ash);
  margin-bottom: 32px;
}
.product-info__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 24px 0;
}
.product-info__includes h4 {
  color: var(--bone);
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-info__includes ul { margin-bottom: 24px; }
.product-info__includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: rgba(240,232,220,0.8);
}
.product-info__includes li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}
.product-info__qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.product-info__qty label {
  font-size: 14px;
  font-weight: 600;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-selector button {
  width: 40px;
  height: 40px;
  color: var(--bone);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.qty-selector button:hover { background: rgba(255,255,255,0.08); }
.qty-selector input {
  width: 48px;
  height: 40px;
  text-align: center;
  border: none;
  background: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-left: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.add-to-cart {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 700;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin-bottom: 16px;
}
.add-to-cart:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(236,27,52,0.35);
}
.product-info__guarantees {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ash);
}
.guarantee svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; }

@media (max-width: 768px) {
  .product-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-48 { margin-top: 48px; }
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ash);
  text-align: center;
  padding: 16px;
  background: var(--bone-light);
  border: 2px dashed var(--bone);
  border-radius: var(--radius);
}
