:root {
  --navy: #264460;
  --navy-rgb: 38, 68, 96;
  --red: #da3831;
  --red-light: #ee5850;
  --red-light-rgb: 238, 88, 80;
  --cream: #f2efe6;
  --beige: #e4e2de;
  --sky: #cee0e9;
  --green: #1f473e;
  --maroon: #771913;
  --text: #1d1d1f;
  --text-light: #666666;
  --border: #e5e5e5;
  --white: #ffffff;
  --radius: 16px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(32px, 4.2vw, 48px); line-height: 1.12; }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.18; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

em { font-style: italic; color: var(--red); }

p { margin: 0 0 12px; color: var(--text-light); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.eyebrow-light { color: var(--sky); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(218, 56, 49, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(218, 56, 49, 0.38);
  background: #c22e28;
}
.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-lg { padding: 18px 42px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ---------- Mascot Peek ---------- */
.mascot-peek {
  position: fixed;
  left: -78px;
  top: 55%;
  width: 150px;
  height: auto;
  z-index: 60;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(29,29,31,0.18));
  transform: translateY(-50%) rotate(30deg);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo-img { display: block; height: 38px; width: auto; }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-banner-full { position: relative; width: 100%; }
.hero-split {
  display: flex;
  width: 100%;
  aspect-ratio: 2.3749 / 1;
  overflow: hidden;
}
.hero-img {
  display: block;
  height: 100%;
  width: auto;
  flex: 0 0 auto;
}
.hero-img-left {
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 2.2s cubic-bezier(0.22,1,0.36,1), opacity 1.8s ease;
}
.hero-img-right {
  transform: translateX(100vw);
  opacity: 0;
  transition: transform 2.2s cubic-bezier(0.22,1,0.36,1) 0.9s, opacity 1.8s ease 0.9s;
}
.hero-banner-full.in-view .hero-img-left,
.hero-banner-full.in-view .hero-img-right {
  transform: translateX(0);
  opacity: 1;
}

/* Lead form nestled in the empty space of the right banner image (large screens) */
.hero-lead {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: 31.9%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-lead-form,
.hero-lead-success { width: 86%; max-width: 300px; }
.hero-lead-form { display: flex; flex-direction: column; gap: 6px; }
.hero-lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.hero-lead-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 16px);
  color: var(--navy);
  text-align: center;
  margin: 0 0 1px;
}
.hero-lead input,
.hero-lead select {
  width: 100%;
  padding: 8px 11px;
  border: 1.5px solid rgba(38,68,96,0.22);
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(11.5px, 0.85vw, 13.5px);
  color: var(--text);
  background: rgba(255,255,255,0.94);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-lead input::placeholder { color: var(--text-light); }
.hero-lead input:focus,
.hero-lead select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(38,68,96,0.12);
}
.hero-lead .btn { padding: 9px; font-size: clamp(12px, 0.9vw, 14px); margin-top: 1px; }
.hero-lead-success {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  font-size: 13px;
  color: var(--text);
}
/* Mobile-only elements — hidden on desktop */
.hero-lead-close { display: none; }
.mobile-lead { display: none; }

/* Mobile / tablet: portrait video shown in full, offer badge as an overlapping
   card, form as a scroll-triggered bottom popup with a close button. */
@media (max-width: 991px) {
  .hero-split {
    position: relative;
    flex-direction: column;
    align-items: center;
    aspect-ratio: auto;
    height: auto;
    overflow: visible;
    padding-bottom: 8px;
  }
  /* Whole portrait video visible — natural aspect, no cropping */
  .hero-img-left {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }
  /* Offer badge: centered card overlapping the bottom of the video */
  .hero-img-right {
    display: block;
    position: relative;
    width: min(46%, 380px);
    height: auto;
    aspect-ratio: 480 / 330;   /* crop off the empty cream below the badge */
    object-fit: cover;
    object-position: top center;
    transform: none;
    margin: -80px auto 0;
    z-index: 2;
    border-radius: 16px;
    border: 3px solid var(--white);
  }

  /* Mobile: the hero popup form is replaced by a static form in the second
     fold (.mobile-lead), so hide the in-banner form entirely here. */
  .hero-lead { display: none; }

  /* Static lead form — second fold on mobile */
  /* Banner + form section share one white background on mobile so there's
     no colored band/seam between the hero and the lead form. */
  .hero { background: var(--white); }
  .mobile-lead {
    display: block;
    background: var(--white);
    padding: 40px 0 48px;
  }
  .mobile-lead-card {
    max-width: 640px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .mobile-lead-card .hero-lead-form,
  .mobile-lead-card .hero-lead-success { width: 100%; max-width: none; }
  /* Two-column form on tablets; collapses to one column at 650px */
  .mobile-lead-card .hero-lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
  }
  .mobile-lead-card input[type="email"],
  .mobile-lead-card .hero-lead-row,
  .mobile-lead-card .btn { grid-column: 1 / -1; }
  .mobile-lead-card .hero-lead-row { gap: 12px 14px; }
  .mobile-lead-card .hero-lead-title { grid-column: 1 / -1; font-size: 22px; text-align: center; margin: 0 0 6px; }
  .mobile-lead-card input,
  .mobile-lead-card select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(38,68,96,0.22);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    text-align: center;
    text-align-last: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .mobile-lead-card input::placeholder { color: var(--text-light); }
  .mobile-lead-card input:focus,
  .mobile-lead-card select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(38,68,96,0.12);
  }
  .mobile-lead-card .btn { padding: 12px; font-size: 14px; }
  .mobile-lead-card .hero-lead-success { text-align: center; }
}
.hero-form-overlay {
  position: absolute;
  top: 42%;
  right: 5%;
  width: 26%;
  max-width: 300px;
  transform: translateY(-50%);
}
.hero-form-overlay .lead-form { padding: 10px; }
.hero-form-overlay .field { margin-bottom: 6px; }
.hero-form-overlay .field-row { grid-template-columns: 1fr; }
.hero-form-overlay .field label { font-size: 9px; margin-bottom: 2px; }
.hero-form-overlay .field input,
.hero-form-overlay .field select { padding: 6px 8px; font-size: 11px; }
.hero-form-overlay .lead-form .btn { padding: 8px 14px; font-size: 12px; margin-top: 2px; }
.hero-form-overlay .form-note { font-size: 9px; margin: 5px 0 0; }
.hero-form-overlay .form-success { padding: 14px 12px; }
.hero-form-overlay .success-icon { width: 30px; height: 30px; font-size: 14px; margin: 0 auto 8px; }
.hero-form-overlay .form-success p { font-size: 11px; }

.lead-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(38,68,96,0.08);
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(38,68,96,0.1);
}
.lead-form .btn { margin-top: 6px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin: 12px 0 0;
}
.form-success {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(38,68,96,0.08);
}
.success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* ---------- Section shared ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-sub { font-size: 15px; }

.featured { padding: 96px 0; background: var(--white); }

.product-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-scroller {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.product-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 28px;
  scrollbar-width: none;
}
.product-grid::-webkit-scrollbar { display: none; }
.product-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
}
.carousel-btn {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(29,29,31,0.12);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease), opacity 0.25s var(--ease);
}
.carousel-btn:hover { background: var(--red); color: var(--white); transform: scale(1.06); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(29,29,31,0.1);
}
.product-card-media { position: relative; }
.product-photo-wrap {
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.product-photo {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
}
.photo-front { opacity: 1; }
.photo-back { opacity: 0; }
.product-card:hover .photo-front { opacity: 0; }
.product-card:hover .photo-back { opacity: 1; }
.discount-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(218,56,49,0.35);
}
.rating-badge {
  position: absolute;
  bottom: -16px; right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1.5px solid var(--red);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(29,29,31,0.12);
}
.rating-star { color: var(--red); }
.rating-count { color: var(--text-light); font-weight: 500; }

.product-card-body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { margin-bottom: 8px; font-size: 19px; }
.product-desc { font-size: 13px; color: var(--text-light); line-height: 1.55; margin: 0 0 16px; }

.product-details { margin-top: 4px; }
.product-details[hidden] { display: none; }
.btn-know-more {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 4px 0;
  margin: auto 0 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-know-more::after {
  content: '';
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1.5 2 6 6.5 10.5 2' fill='none' stroke='%23da3831' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 11px auto;
  transform: translateY(-1px);
  transition: transform 0.25s var(--ease);
}
.btn-know-more[aria-expanded="true"]::after { transform: translateY(-1px) rotate(180deg); }
.btn-know-more:hover { text-decoration: underline; }

.card-feature-list { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.card-feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.feat-icon-sm { width: 26px; height: 26px; border-radius: 7px; flex: none; }
.feat-icon-sm::before { width: 14px; height: 14px; }

.price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.price-now { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); }
.price-was { text-decoration: line-through; color: var(--text-light); font-size: 15px; }
.price-badge {
  background: var(--sky);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

.feature-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list p { margin: 2px 0 0; font-size: 14px; }
.feature-list strong { font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--navy); }
.feat-icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.feat-icon::before {
  content: '';
  width: 24px; height: 24px;
  background: var(--navy);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.feat-icon[data-icon="adaptive"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M3 17 Q7 9 12 13 T21 9'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M3 17 Q7 9 12 13 T21 9'/%3E%3C/svg%3E");
}
.feat-icon[data-icon="pocket"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Ccircle cx='18' cy='12' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Ccircle cx='18' cy='12' r='3'/%3E%3C/svg%3E");
}
.feat-icon[data-icon="antimicrobial"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2 20 6v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2 20 6v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}
.feat-icon[data-icon="orthopaedic"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 3v18M6 8c-2 0-3 2-1.5 3.5S6 14 6 16M18 8c2 0 3 2 1.5 3.5S18 14 18 16'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 3v18M6 8c-2 0-3 2-1.5 3.5S6 14 6 16M18 8c2 0 3 2 1.5 3.5S18 14 18 16'/%3E%3C/svg%3E");
}
.feat-icon[data-icon="isolation"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
}
.feat-icon[data-icon="temperature"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M14 14.76V3.5a2 2 0 0 0-4 0v11.26a4 4 0 1 0 4 0z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M14 14.76V3.5a2 2 0 0 0-4 0v11.26a4 4 0 1 0 4 0z'/%3E%3C/svg%3E");
}
.feat-icon[data-icon="trial"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2 20 6v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2 20 6v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}
.feat-icon[data-icon="latex"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 3c-4.5 0-8 3.3-8 8 0 5.5 4.5 9.5 8 11 3.5-1.5 8-5.5 8-11 0-4.7-3.5-8-8-8z'/%3E%3Cpath d='M8.5 12.5c1.2-2 3-3 5-3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 3c-4.5 0-8 3.3-8 8 0 5.5 4.5 9.5 8 11 3.5-1.5 8-5.5 8-11 0-4.7-3.5-8-8-8z'/%3E%3Cpath d='M8.5 12.5c1.2-2 3-3 5-3'/%3E%3C/svg%3E");
}
.feat-icon[data-icon="check"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- Why Choose ---------- */
.why-choose { padding: 64px 0; background: var(--cream); }

.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 72px;
  max-width: 980px;
  margin: 0 auto;
}
.why-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-left: 3px solid transparent;
  box-shadow: 0 10px 24px rgba(29,29,31,0.07);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--red);
  box-shadow: 0 18px 36px rgba(29,29,31,0.12);
}
.why-card-icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.why-card h4 { font-size: 14px; margin-bottom: 3px; }
.why-card p { font-size: 12px; margin: 0; line-height: 1.5; color: var(--text-light); }

.why-mascot-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-mascot-stage::before {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sky) 0%, rgba(206,224,233,0) 70%);
  z-index: 0;
}
.why-mascot {
  position: relative;
  z-index: 1;
  width: 140px;
  height: auto;
  animation: whyFloat 5s ease-in-out infinite;
}
@keyframes whyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust numbers ---------- */
.trust-numbers { background: var(--white); padding: 72px 0 40px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-grid-mascot {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}
.stats-mascot-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-mascot-stage::before {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sky) 0%, rgba(206,224,233,0) 70%);
  z-index: 0;
}
.stats-mascot {
  position: relative;
  z-index: 1;
  width: 150px;
  height: auto;
}
.stat-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 14px 30px rgba(29,29,31,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sky);
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.stat-item .stat-line {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}
.stat-item .stat-line strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-item:nth-child(odd) { animation: statFloatUp 4s ease-in-out infinite; }
.stat-item:nth-child(even) { animation: statFloatDown 4s ease-in-out infinite; }
@keyframes statFloatUp {
  0%, 100% { transform: translateY(-14px); }
  50% { transform: translateY(-22px); }
}
@keyframes statFloatDown {
  0%, 100% { transform: translateY(14px); }
  50% { transform: translateY(22px); }
}
.stat-mascot {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: auto;
  pointer-events: none;
}
.stat-item p {
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-num, .stat-suffix {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600;
  color: var(--navy);
}
.stat-suffix { font-size: clamp(14px, 1.8vw, 18px); }

/* ---------- Testimonials ---------- */
.testimonials { padding: 56px 0 100px; background: var(--white); }
/* The scroller reserves 100px of top padding for the hover-mascot (see
   .testimonial-grid). That padding already provides the visual gap under the
   heading, so drop the section-head margin and pull the carousel up over the
   reserved band — otherwise the heading floats with a ~150px void beneath it. */
.testimonials .section-head { margin-bottom: 0; }
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -56px;
}
.testimonial-scroller {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.testimonial-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  /* Top padding reserves room for the mascot PNG that pops up above each
     card on hover — overflow-x:auto forces overflow-y to clip too, so
     without this the mascot gets cut off at its top edge. */
  padding: 100px 4px 28px;
  scrollbar-width: none;
}
.testimonial-grid::-webkit-scrollbar { display: none; }
.testimonial-item {
  position: relative;
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
}
.testimonial-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  text-align: center;
  transition: background 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testimonial-card .quote-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 10px;
  transition: color 0.35s ease;
}
.t-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 10px;
  transition: color 0.35s ease;
}
.testimonial-card p {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
  transition: color 0.35s ease;
}
.t-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; color: var(--navy); transition: color 0.35s ease; }
.t-role { font-size: 12px; color: var(--text-light); margin-top: 2px; transition: color 0.35s ease; }
.t-avatar {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(29,29,31,0.14);
  transition: background 0.35s ease, color 0.35s ease;
}
.testimonial-mascot {
  position: absolute;
  top: -95px;
  left: 50%;
  width: 84px;
  height: auto;
  opacity: 0;
  transform: translateX(-50%) translateY(28px) scale(0.92);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}

.testimonial-item:hover .testimonial-card {
  background: var(--red-light);
  transform: translateY(-16px);
  box-shadow: 0 24px 48px rgba(var(--red-light-rgb), 0.35);
}
.testimonial-item:hover .quote-mark { color: var(--white); }
.testimonial-item:hover .t-title { color: var(--white); }
.testimonial-item:hover p { color: rgba(255,255,255,0.95); }
.testimonial-item:hover .t-name { color: var(--white); }
.testimonial-item:hover .t-role { color: rgba(255,255,255,0.8); }
.testimonial-item:hover .t-avatar { background: var(--maroon); color: var(--white); }
.testimonial-item:hover .testimonial-mascot {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.testimonial-cta {
  text-align: center;
  margin-top: 64px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(rgba(20,20,22,0.4), rgba(20,20,22,0.55)), url('../images/footer-bg.jpg') center 58% / cover no-repeat;
  padding: 96px 0;
  text-align: center;
}
.final-cta h2 { color: var(--white); text-shadow: 0 2px 14px rgba(0,0,0,0.55); }
.final-cta-sub { color: var(--sky); font-size: 16px; max-width: none; white-space: nowrap; margin: 0 auto 32px; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-cta .eyebrow-light { text-shadow: 0 2px 10px rgba(0,0,0,0.55); }

/* ---------- Footer strip ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 13px;
}
.footer-copy { color: rgba(255,255,255,0.72); }
@media (max-width: 650px) {
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; gap: 14px; }
}
.footer-link {
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 1px;
  transition: border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.footer-link:hover { border-color: var(--white); opacity: 0.85; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1150px) {
  .hero-form-overlay {
    position: static;
    width: auto;
    max-width: 420px;
    margin: 24px auto 0;
    transform: none;
    padding: 0 24px;
  }
  .hero-form-overlay .field-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
  /* Why Choose Us: mascot on top, cards in a 2×2 grid */
  .why-choose-layout { grid-template-columns: 1fr 1fr; gap: 24px 20px; max-width: 680px; }
  .why-mascot-stage { order: -1; grid-column: 1 / -1; }
  /* Promise stats: mascot on top, cards side by side */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; max-width: 680px; }
  .stats-mascot-stage { order: -1; grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .product-card { flex-basis: calc((100% - 28px) / 2); }
  .stat-item:nth-child(odd), .stat-item:nth-child(even) { animation: none; transform: none; }
  .testimonial-item { flex-basis: calc((100% - 28px) / 2); }
  .main-nav { display: none; }
}
@media (max-width: 700px) {
  /* Allow the festive subline to wrap where one line can't fit */
  .final-cta-sub { white-space: normal; max-width: 420px; }
}
@media (max-width: 650px) {
  /* Hero: portrait video, smaller badge card */
  .hero-img-right { width: min(72%, 300px); margin-top: -56px; }
  /* Lead form back to a single column */
  .mobile-lead { padding: 34px 0 24px; }
  /* Tighten the desktop-scale 96px section rhythm for phones */
  .featured { padding: 40px 0 48px; }
  /* Carousels: one full-width card per view; title sits left with the
     arrows beside it on the right */
  .product-carousel,
  .testimonial-carousel { gap: 0; }
  .product-card,
  .testimonial-item { flex-basis: 100%; }
  .featured .section-head,
  .testimonials .section-head { text-align: left; margin-bottom: 20px; }
  /* Arrows anchor to the carousel (position:relative on .product-carousel /
     .testimonial-carousel is the containing block) */
  .carousel-btn {
    position: absolute;
    z-index: 3;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  /* Testimonials: arrows rise up beside the section title on the right */
  .t-prev { right: 48px; }
  .t-next { right: 0; }
  .testimonials .carousel-btn { top: -60px; }
  /* Featured: arrows float over the product card, hugging the left and right
     edges. Anchor them to the vertical centre of the product photo (which sits
     at the card top with a fixed 4/3 aspect ratio) so they clear the rating
     badge, price and CTA below. Photo height = card width × 3/4, card width =
     container width (100vw − 48px), + 8px grid top-padding. margin-top = -½
     button height keeps :hover scale from fighting a translate. */
  .featured .carousel-btn {
    top: calc(8px + (100vw - 48px) * 0.375);
    bottom: auto;
    margin-top: -20px;
  }
  .featured .carousel-prev { left: 6px; right: auto; }
  .featured .carousel-next { right: 6px; left: auto; }
  /* No hover on touch devices: drop the hover-mascot headroom and the
     desktop-scale gaps around the testimonial cards */
  .testimonials { padding: 48px 0 56px; }
  /* Mobile hides the hover-mascot and drops its reserved padding, so the
     desktop pull-up is no longer needed — reset it to keep normal spacing. */
  .testimonial-carousel { margin-top: 0; }
  .testimonial-grid { padding-top: 16px; }
  .testimonial-mascot { display: none; }
  .testimonial-cta { margin-top: 8px; }
  .mobile-lead-card { max-width: 420px; }
  .mobile-lead-card .hero-lead-form { display: flex; flex-direction: column; gap: 11px; }
  .mobile-lead-card .hero-lead-row { gap: 11px; }
  .mobile-lead-card .hero-lead-title { font-size: 18px; margin: 0 0 4px; }
  /* Why Choose Us back to a single column, and match the tighter phone rhythm
     of the sibling sections (it was still carrying the 96px desktop padding
     and a 48px title margin, leaving odd gaps above/below the heading) */
  .why-choose { padding: 40px 0 48px; }
  .why-choose .section-head { margin-bottom: 24px; }
  .why-choose-layout { grid-template-columns: 1fr; gap: 24px; max-width: 420px; }
  /* Promise stats back to a single column */
  .stats-grid { grid-template-columns: 1fr; gap: 48px; max-width: 320px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .mascot-peek { width: 90px; left: -46px; }
}
@media (max-width: 375px) {
  /* Keep the carousel titles clear of the nav arrows */
  .featured .section-head h2,
  .testimonials .section-head h2 { font-size: 23px; }
  .testimonials .carousel-btn { top: -56px; }
}
