/* === HERO — Full-Screen Image Slider === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Background slides */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s ease;
  will-change: opacity, transform;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

/* Content container */
.hero__container {
  position: relative;
  z-index: 2;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
}

.hero__content {
  max-width: 680px;
}

.hero__label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.3s forwards;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 8vw, 72px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.5s forwards;
}

.hero__headline span {
  color: var(--gold);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.7s forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.9s forwards;
}

/* Trust bar at bottom */
.hero__trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 32px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: heroFadeUp 0.7s 1.1s forwards;
}

/* ============================================
   HERO — MOBILE & TABLET REDESIGN
   ============================================ */
@media (max-width: 768px) {
  /* Make the whole hero a scrollable flex column */
  .hero {
    height: auto !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  /* Full-screen background taking up ~55% viewport height */
  .hero__slides {
    position: relative !important;
    inset: auto !important;
    height: 55vh;
    min-height: 300px;
    width: 100%;
    flex-shrink: 0;
    z-index: 0;
  }

  .hero__slide {
    position: absolute !important;
    inset: 0 !important;
    transition: none !important;
    animation: none !important;
  }
  
  /* Disable sliding on mobile - purely static first slide */
  .hero__slide:first-child {
    opacity: 1 !important;
    z-index: 2 !important;
    border-radius: 0 !important; /* Ensure no rounded corners */
  }

  /* Overlay stays inside slides */
  .hero__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.55) 100%
    ) !important;
    z-index: 3 !important;
  }

  /* Content box below the image */
  .hero__container {
    position: relative !important;
    height: auto !important;
    min-height: unset !important;
    padding: 28px 20px 0 !important; /* Trust bar margin handles the gap */
    z-index: 4;
    background: var(--charcoal-dark);
  }

  .hero__content {
    max-width: 100% !important;
    text-align: center;
  }

  .hero__label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    margin-bottom: 10px !important;
  }

  .hero__headline {
    font-size: clamp(28px, 9vw, 46px) !important;
    line-height: 1.15 !important;
    margin-bottom: 14px !important;
  }

  .hero__sub {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
    color: rgba(255,255,255,0.7) !important;
  }

  .hero__ctas {
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap;
  }

  .hero__ctas .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    font-size: 13px !important;
    padding: 12px 16px !important;
  }

  /* Trust bar becomes a 2x2 grid */
  .hero__trust {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 48px !important; /* Critical spacing below CTA buttons */
    margin-left: -20px !important; /* Negate container padding to go full bleed */
    margin-right: -20px !important; /* Negate container padding to go full bleed */
    width: calc(100% + 40px) !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    background: #111 !important;
    backdrop-filter: none !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    opacity: 1 !important;
    animation: none !important;
    margin-bottom: 30px !important; /* Spacing added at the bottom of the box */
  }

  .hero__trust-item {
    padding: 18px 12px !important;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .hero__trust-item:nth-child(even) {
    border-right: none;
  }

  .hero__trust-item:last-child,
  .hero__trust-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .hero__trust-item strong {
    font-size: 20px !important;
  }

  .hero__trust-item span {
    font-size: 10px !important;
    letter-spacing: 0.5px !important;
  }

  /* Hide dividers — grid lines take care of it */
  .hero__trust-divider {
    display: none !important;
  }

  /* Remove slide dot indicators for mobile */
  .hero__dots {
    display: none !important;
  }

  .hero__dot {
    pointer-events: auto;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  /* Tablet: keep image slightly taller */
  .hero__slides {
    height: 50vh;
    min-height: 350px;
  }
  .hero__dots {
    height: 50vh !important;
  }
}

/* Desktop trust bar items */
.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}

.hero__trust-item strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.hero__trust-item span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Desktop slide dot indicators */
.hero__dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__dot {

  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero__dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

.hero__dot:hover {
  border-color: var(--white);
}

/* === STATS === */
.stats {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 48px 0;
}

@media (max-width: 768px) {
  .stats { display: none !important; } /* hide redundant stats on mobile in favor of hero trust bar */
}

.stats__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.stats__item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 16px 32px;
  position: relative;
}

@media (max-width: 768px) {
  .stats__item {
    flex: 1 1 50%;
    padding: 24px 16px;
  }
  .stats__item:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats__item {
    flex: 1 1 100%;
  }
  .stats__item::after {
    display: none;
  }
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gray-light), transparent);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 42px; /* Slightly larger for impact */
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  display: block;
  letter-spacing: -0.02em;
}

.stats__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* === APPLICATIONS (Sectors) === */
.applications { background: var(--cream); }

.applications__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--sp-5);
}

.app-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  perspective: 800px;
}

.app-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.app-tile:hover .app-tile__bg {
  transform: scale(1.1);
}

.app-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  transition: background 0.4s ease;
}

.app-tile:hover .app-tile__overlay {
  background: linear-gradient(180deg, rgba(212,175,55,0.05) 30%, rgba(0,0,0,0.8) 100%);
}

.app-tile__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  z-index: 2;
  transition: color 0.3s ease;
}

.app-tile:hover .app-tile__label { color: var(--gold); }

/* === ABOUT === */
.about { background: var(--white); overflow: hidden; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.about__img-large {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-large img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about__img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  border: 8px solid var(--white);
}

.about__img-small img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.about__experience-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--gold);
  color: var(--white);
  padding: 24px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.about__badge-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about__badge-text {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.about__content { padding-left: 20px; }

.about__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.about__feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* === WHY CHOOSE US === */
.why-us { background: var(--cream); }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--sp-5);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: var(--transition-slow);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(212,175,55,0.2);
}

.why-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sp-2);
  border-radius: 50%;
  overflow: hidden;
}

.why-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-card__title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === PRODUCTS 3D SHOWCASE === */
.products-3d {
  background: linear-gradient(135deg, #0a0a0a 0%, #141410 50%, #0a0a0a 100%);
  overflow: visible;
}

.products-3d .section-headline { color: var(--white); }
.products-3d .section-label { color: var(--gold); }
.products-3d .section-sub { color: rgba(255,255,255,0.5); }

.products-3d__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: var(--sp-6);
}

.product-3d {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.product-3d:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.3);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.4),
    0 0 24px rgba(212,175,55,0.06);
}

.product-3d__image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-3d__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-3d:hover .product-3d__image img {
  transform: scale(1.06);
}

.product-3d__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.7s ease;
}

.product-3d:hover .product-3d__shine {
  left: 120%;
}

.product-3d__body {
  padding: 24px;
}

.product-3d__name {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.product-3d__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-2);
  line-height: 1.6;
}

.product-3d__link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.product-3d__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.product-3d:hover .product-3d__link::after { width: 100%; }

/* === GRADES (3D Cards) === */
.grades { background: var(--white); }

.grades__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: var(--sp-5);
}

.grade-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.grade-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 20px rgba(212,175,55,0.04);
  border-color: var(--gold);
}

.grade-card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(212,175,55,0.12);
}

.grade-card__top-bar {
  height: 4px;
  border-radius: 20px 20px 0 0;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
}

.grade-card__ribbon {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  border-radius: 0 0 6px 6px;
}

.grade-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grade-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.grade-card__badge {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 4px;
}

.grade-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.grade-card__standard {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.grade-card__warranty {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.grade-card__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto;
  opacity: 0.3;
}

.grade-card__ideal {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.grade-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  text-align: left;
  padding: 0 4px;
}

.grade-card__features li {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.grade-card__features svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.grade-card__sizes {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.grades__view-all {
  text-align: center;
  margin-top: var(--sp-5);
}

/* === FRANCHISE === */
.franchise {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  position: relative;
  overflow: hidden;
}

.franchise::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 70%);
}

.franchise__badge {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.franchise .section-headline { color: var(--white); }

.franchise__body {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto var(--sp-5);
  line-height: 1.7;
}

.franchise__pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.franchise__pill {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212,175,55,0.2);
}

.franchise__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}

.franchise__note {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* === TESTIMONIALS === */
.testimonials { background: var(--cream); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--sp-5);
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border-left: 3px solid var(--gold);
  position: relative;
  transition: var(--transition-base);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card__name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-card__role {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
}

/* === LEAD CAPTURE === */
.lead-capture { background: var(--charcoal-dark); }

.lead-capture__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.lead-capture__info .section-label { color: var(--gold); }
.lead-capture__info .section-headline { color: var(--white); font-size: 36px; }

.lead-capture__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.lead-capture__contacts { margin-bottom: var(--sp-4); }

.lead-capture__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lead-capture__contact-row svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.lead-capture__contact-row a,
.lead-capture__contact-row span {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.lead-capture__contact-row a:hover { color: var(--gold); }

.lead-capture__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-3);
}

.lead-capture__hours {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* Lead form — glassmorphism */
.lead-form {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.lead-form__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.lead-form__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-4);
}

.lead-form .form-input,
.lead-form .form-textarea,
.lead-form .form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}

.lead-form .form-input::placeholder,
.lead-form .form-textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.lead-form .form-input:focus,
.lead-form .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.lead-form .form-label {
  color: rgba(255,255,255,0.6);
}

.lead-form .pill-option {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.lead-form .pill-option:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lead-form .pill-option.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.lead-form__privacy svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.3);
}


/* === BLOG PREVIEW === */
.blog-preview { background: var(--white); }

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--sp-5);
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.2);
}

.blog-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--charcoal), var(--brown-rich));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(0,0,0,0.4);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.blog-card__body { padding: 24px; }

.blog-card__tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card__title { color: var(--gold); }

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-preview__view-all {
  text-align: center;
  margin-top: var(--sp-5);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__headline { font-size: 44px; }
  .hero__3d-wrapper { width: 340px; height: 430px; }
  .products-3d__grid { grid-template-columns: repeat(3, 1fr); }
  .applications__grid { grid-template-columns: repeat(3, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .grades__grid { gap: 20px; }
  .lead-capture__grid { gap: 40px; }
}

@media (max-width: 768px) {
  .hero { padding-top: 64px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__headline { font-size: 36px; }
  .hero__sub { max-width: 100%; margin: 0 auto var(--sp-5); }
  .hero__ctas { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__visual { margin-top: var(--sp-5); }
  .hero__3d-wrapper { width: 280px; height: 360px; transform: rotateY(-8deg) rotateX(3deg); }

  .stats__grid { flex-direction: column; gap: 16px; }
  .stats__item:not(:last-child)::after { display: none; }

  .applications__grid { grid-template-columns: repeat(2, 1fr); }
  .app-tile { aspect-ratio: 4/3; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__images { padding-right: 20px; padding-bottom: 20px; max-width: 480px; margin: 0 auto; }
  .about__content { padding-left: 0; text-align: center; }
  .about__features { text-align: left; }
  .about__experience-badge { top: 20px; left: -10px; width: 110px; height: 110px; padding: 16px; }
  .about__badge-num { font-size: 24px; }
  .about__badge-text { font-size: 9px; }

  .why-us__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .products-3d__grid { grid-template-columns: repeat(2, 1fr); }

  .grades__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto; margin-right: auto;
  }

  .franchise__ctas { flex-direction: column; align-items: center; }
  .franchise__ctas .btn { width: 100%; max-width: 320px; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .lead-capture__grid { grid-template-columns: 1fr; }
  .lead-form__row { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 30px; }
  .applications__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .products-3d__grid { grid-template-columns: 1fr; }
}
