:root {
  --primary: #c9252c;
  --primary-dark: #a01e24;
  --secondary: #58585a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #fff;
  color: #1a1a1a;
  margin: 0;
}

/* ── Scroll-triggered animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}

/* ── Header ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.3s,
    padding 0.3s,
    background 0.3s;
  padding: 18px 0;
  font-family: "DM Sans", sans-serif;
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  backdrop-filter: blur(8px);
}
#scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #c9252c, #e85a60);
  width: 0%;
  transition: width 0.1s linear;
}
.nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #58585a;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #c9252c;
  border-radius: 9999px;
  margin-top: 2px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover {
  color: #c9252c;
}
.nav-link:hover::after {
  width: 100%;
}

/* dropdown */
.dropdown-wrap {
  position: relative;
}
.dropdown-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #58585a;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.dropdown-trigger::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #c9252c;
  border-radius: 9999px;
  margin-top: 2px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dropdown-trigger:hover,
.dropdown-wrap:hover .dropdown-trigger {
  color: #c9252c;
}
.dropdown-trigger:hover::after,
.dropdown-wrap:hover .dropdown-trigger::after {
  width: 100%;
}
.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 8px;
  min-width: 210px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px) scaleY(0.93);
  transform-origin: top;
  transition:
    opacity 0.22s,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.dropdown-panel::before {
  content: "";
  display: block;
  height: 3px;
  margin: -8px -8px 8px;
  background: linear-gradient(90deg, #c9252c, #e85a60);
  border-radius: 16px 16px 0 0;
}
.dropdown-wrap:hover .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scaleY(1);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #58585a;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.dropdown-item:hover {
  background: rgba(201, 37, 44, 0.06);
  color: #c9252c;
}
.dropdown-item .di-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.15s,
    transform 0.15s;
  margin-left: auto;
}
.dropdown-item:hover .di-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 12px;
  transition: background 0.15s;
}
.hamburger:hover {
  background: rgba(0, 0, 0, 0.04);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #58585a;
  border-radius: 999px;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
#mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  animation: mobileSlide 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#mobile-menu.open {
  display: block;
}
@keyframes mobileSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-link {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #58585a;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.mobile-link:hover {
  background: rgba(201, 37, 44, 0.05);
  color: #c9252c;
}
.mobile-sub {
  display: none;
  padding-left: 12px;
}
.mobile-sub.open {
  display: block;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
  .desktop-nav {
    display: none;
  }
}

/* ── Hero slider ── */
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
  height: calc(100vh);
  min-height: 560px;
  max-height: 900px;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: none;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    transparent 100%
  );
}
.slide-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .slide-content {
    padding-bottom: 96px;
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 1024px) {
  .slide-content {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(88, 88, 90, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}
.slide-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 58px);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.slide-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .slide-subtitle {
    font-size: 16px;
  }
}

.slide-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9252c;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 37, 44, 0.45);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.slide-cta-primary:hover {
  background: #a01e24;
  box-shadow: 0 8px 30px rgba(201, 37, 44, 0.55);
  transform: translateY(-2px);
}
.slide-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.slide-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* slide enter animation */
.slide-enter .slide-badge,
.slide-enter .slide-title,
.slide-enter .slide-subtitle,
.slide-enter .slide-ctas {
  opacity: 0;
  transform: translateY(28px);
}
.slide-enter.anim .slide-badge {
  animation: contentUp 0.55s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.slide-enter.anim .slide-title {
  animation: contentUp 0.55s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.slide-enter.anim .slide-subtitle {
  animation: contentUp 0.55s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.slide-enter.anim .slide-ctas {
  animation: contentUp 0.55s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes contentUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* slider media transition */
.slide-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide.fade-in {
  animation: slideFadeIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.slide.fade-out {
  animation: slideFadeOut 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: scale(1.04) translateX(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}
@keyframes slideFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(0.97) translateX(-30px);
  }
}

/* arrow buttons */
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}
.arrow-btn:active {
  transform: scale(0.95);
}

/* stat pills */
.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 9999px;
}

/* ── About ── */
.stats-card {
  transition: all 0.3s;
  cursor: default;
}
.stats-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 37, 44, 0.3) !important;
  box-shadow: 0 12px 40px rgba(201, 37, 44, 0.12);
}
.focus-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(201, 37, 44, 0.2);
  color: #1a1a1a;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
  cursor: default;
}
.focus-pill:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 37, 44, 0.4);
  background: rgba(201, 37, 44, 0.03);
}

/* ── Services ── */
.service-card {
  transition: box-shadow 0.5s;
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(201, 37, 44, 0.15);
}
.service-img img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}

/* ── Products ── */
.product-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.35s,
    box-shadow 0.35s;
}
.product-card:hover {
  border-color: rgba(201, 37, 44, 0.4);
  box-shadow: 0 20px 56px rgba(201, 37, 44, 0.18);
}
.product-card .pc-img img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .pc-img img {
  transform: scale(1.1);
}
.product-card .pc-glow {
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .pc-glow {
  transform: scaleX(1);
}
.view-details-btn {
  transition: all 0.2s;
}
.view-details-btn:hover {
  border-color: #c9252c;
  background: rgba(201, 37, 44, 0.1);
}
.pc-circle {
  transition: all 0.3s;
}
.product-card:hover .pc-circle {
  border-color: rgba(201, 37, 44, 0.5);
  color: #c9252c;
  background: rgba(201, 37, 44, 0.1);
}

/* ── Testimonials ── */
.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.testi-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .testi-slide {
    flex: 0 0 50%;
  }
}
@media (min-width: 1024px) {
  .testi-slide {
    flex: 0 0 33.333%;
  }
}
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  transition: all 0.5s ease;
}
.testi-card.center {
  border-color: rgba(201, 37, 44, 0.25);
  box-shadow: 0 16px 48px rgba(201, 37, 44, 0.12);
}
.testi-card.side {
  opacity: 0.6;
  transform: scale(0.96);
}

/* ── FAQ ── */
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "DM Sans", sans-serif;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.3s;
  padding: 0 24px;
}
.faq-body.open {
  max-height: 200px;
  padding-bottom: 24px;
}
.faq-icon {
  font-size: 22px;
  color: #c9252c;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ── Footer ── */
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #c9252c;
  transition: width 0.2s;
  flex-shrink: 0;
}
.footer-link:hover {
  color: #fff;
}
.footer-link:hover::before {
  width: 12px;
}
.footer-plink {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-plink::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 37, 44, 0.5);
  flex-shrink: 0;
  margin-top: 6px;
  transition: background 0.2s;
}
.footer-plink:hover {
  color: #fff;
}
.footer-plink:hover::before {
  background: #c9252c;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: #c9252c;
  color: #fff;
  border-color: #c9252c;
}
.contact-row {
  transition: background 0.2s;
}
.contact-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.contact-icon {
  transition: all 0.2s;
}
.contact-row:hover .contact-icon {
  background: #c9252c;
  color: #fff;
  border-color: #c9252c;
}

/* ── CTA button ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #c9252c;
  padding: 9px 20px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(201, 37, 44, 0.28);
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #a01e24;
  box-shadow: 0 6px 20px rgba(201, 37, 44, 0.38);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border: 2px solid rgba(26, 26, 26, 0.15);
  padding: 8px 20px;
  border-radius: 9px;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: #c9252c;
  color: #c9252c;
  background: rgba(201, 37, 44, 0.02);
}

/* ── Eyebrow ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow-line {
  width: 48px;
  height: 2px;
  background: #c9252c;
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c9252c;
}

/* misc */
.grid-bg {
  background-image:
    linear-gradient(#58585a 1px, transparent 1px),
    linear-gradient(90deg, #58585a 1px, transparent 1px);
  background-size: 80px 80px;
}
.dot-bg {
  background-image: radial-gradient(circle, #58585a 1px, transparent 1px);
  background-size: 28px 28px;
}

/* about */
/* ── EYEBROW ── */
    .eyebrow {
      display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
    }
    .eyebrow-line { width: 40px; height: 2px; background: var(--primary); }
    .eyebrow-text {
      font-size: 10px; font-weight: 700; letter-spacing: .22em;
      text-transform: uppercase; color: var(--ink-60);
    }

    /* ── REVEAL ANIMATIONS ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay:.1s }
    .reveal.d2 { transition-delay:.2s }
    .reveal.d3 { transition-delay:.3s }
    .reveal.d4 { transition-delay:.4s }
    .reveal.d5 { transition-delay:.5s }
    .reveal-left { opacity:0; transform:translateX(-30px); transition:opacity .7s ease, transform .7s ease; }
    .reveal-left.visible { opacity:1; transform:none; }
    .reveal-scale { opacity:0; transform:scale(.94); transition:opacity .7s ease, transform .7s ease; }
    .reveal-scale.visible { opacity:1; transform:scale(1); }
 
    /* ══════════════════════════════════
       HERO SECTION
    ══════════════════════════════════ */
    #about-hero {
      min-height: 76vh;
      background: var(--ink);
      display: flex; align-items: center;
      padding: 120px 0 80px;
    }
    .hero-grid-bg {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 64px 64px;
    }
    .hero-red-blob {
      position: absolute; top: -80px; right: -80px;
      width: 480px; height: 480px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,37,44,.35) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-red-blob-2 {
      position: absolute; bottom: -60px; left: 10%;
      width: 300px; height: 300px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,37,44,.15) 0%, transparent 70%);
      pointer-events: none;
    }
 
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(201,37,44,.12); border: 1px solid rgba(201,37,44,.3);
      border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 28px;
    }
    .hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
    .hero-eyebrow span { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.75); }
 
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 6vw, 74px);
      font-weight: 900;
      line-height: 1.05;
      color: #ffffff;
      letter-spacing: -.02em;
      margin-bottom: 28px;
    }
    .hero-title em { font-style: italic; color: var(--primary); }
 
    .hero-subtitle {
      font-size: 17px; color: rgba(255,255,255,.6);
      line-height: 1.8; max-width: 640px; margin-bottom: 40px;
    }
 
    .hero-badges {
      display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px; padding: 9px 16px;
      font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
      color: rgba(255,255,255,.8);
    }
    .hero-badge svg { opacity: .7; }
 
    .hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,.07); margin: 40px 0; }
 
    .hero-meta {
      display: flex; flex-wrap: wrap; gap: 40px;
    }
    .hero-meta-item {}
    .hero-meta-item .val {
      font-family: 'Playfair Display', serif;
      font-size: 36px; font-weight: 700; color: var(--primary);
      line-height: 1;
    }
    .hero-meta-item .lbl {
      font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,.4); margin-top: 4px;
    }
 
    /* Hero right image panel */
    .hero-image-panel {
      position: relative;
    }
    .hero-image-wrap {
      border-radius: 24px; overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,.6);
      aspect-ratio: 4/5;
    }
    .hero-image-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .hero-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,.5), rgba(0,0,0,.1), transparent);
    }
    .hero-float-card {
      position: absolute; bottom: -20px; left: -24px;
      background: var(--primary); border-radius: 16px;
      padding: 18px 22px;
      box-shadow: 0 12px 40px rgba(201,37,44,.4);
    }
    .hero-float-card .fc-num {
      font-family: 'Playfair Display', serif;
      font-size: 32px; font-weight: 900; color: white; line-height: 1;
    }
    .hero-float-card .fc-label {
      font-size: 10px; font-weight: 700; letter-spacing: .16em;
      text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 4px;
    }
    .hero-float-iso {
      position: absolute; top: 24px; right: -16px;
      background: white; border-radius: 12px;
      padding: 12px 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,.3);
      display: flex; align-items: center; gap: 10px;
    }
    .hero-float-iso .iso-icon {
      width: 36px; height: 36px; border-radius: 8px; background: var(--primary);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .hero-float-iso .iso-text p:first-child { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .1em; }
    .hero-float-iso .iso-text p:last-child { font-size: 10px; color: var(--ink-40); margin-top: 1px; }
 
    /* grid layout for hero */
    .hero-inner {
      display: grid; grid-template-columns: 1fr 420px;
      gap: 80px; align-items: center;
    }
    @media(max-width:1024px){
      .hero-inner { grid-template-columns: 1fr; }
      .hero-image-panel { display: none; }
    }
 
    /* ══════════════════════════════════
       STORY SECTION
    ══════════════════════════════════ */
    #story {
      padding: 100px 0;
      background: var(--surface);
    }
    .story-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    @media(max-width:900px){ .story-grid{ grid-template-columns:1fr; gap:48px; } }
 
    .story-label {
      display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
    }
    .story-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3.5vw, 46px); font-weight: 800;
      line-height: 1.1; color: var(--ink); margin-bottom: 28px; letter-spacing: -.02em;
    }
    .story-body p {
      font-size: 16px; color: var(--ink-60); line-height: 1.9; margin-bottom: 18px;
    }
    .story-body p strong { color: var(--ink); font-weight: 600; }
 
    .story-highlight {
      margin-top: 32px; padding: 24px 28px;
      background: linear-gradient(135deg, rgba(201,37,44,.06), rgba(201,37,44,.02));
      border-left: 3px solid var(--primary); border-radius: 0 12px 12px 0;
    }
    .story-highlight p {
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-style: italic; color: var(--ink); line-height: 1.6; margin: 0;
    }
    .story-highlight cite {
      display: block; font-family: 'DM Sans', sans-serif;
      font-style: normal; font-size: 12px; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--primary); margin-top: 12px;
    }
 
    /* Right side timeline */
    .story-timeline { display: flex; flex-direction: column; gap: 0; }
    .tl-item {
      display: flex; gap: 20px;
      padding-bottom: 36px; position: relative;
    }
    .tl-item:not(:last-child)::before {
      content: ''; position: absolute;
      left: 17px; top: 34px; bottom: 0; width: 2px;
      background: linear-gradient(to bottom, var(--primary), transparent);
    }
    .tl-dot {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      background: var(--primary); display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(201,37,44,.35); margin-top: 2px;
    }
    .tl-dot svg { display: block; }
    .tl-body {}
    .tl-year {
      font-size: 10px; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 4px;
    }
    .tl-title {
      font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
    }
    .tl-desc { font-size: 14px; color: var(--ink-60); line-height: 1.7; }
 
    /* ══════════════════════════════════
       VALUES SECTION
    ══════════════════════════════════ */
    #values {
      padding: 100px 0;
      background: var(--ink);
    }
    .values-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
    .values-header .eyebrow { justify-content: center; }
    .values-header .eyebrow-line { background: var(--primary); }
    .values-header .eyebrow-text { color: rgba(255,255,255,.4); }
    .values-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
      color: white; line-height: 1.1; margin-top: 6px; letter-spacing: -.02em;
    }
    .values-h2 span { color: var(--primary); }
 
    .values-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media(max-width:900px){ .values-grid{ grid-template-columns: 1fr 1fr; } }
    @media(max-width:540px){ .values-grid{ grid-template-columns: 1fr; } }
 
    .val-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px; padding: 32px 28px;
      transition: transform .3s, background .3s, box-shadow .3s;
      position: relative; overflow: hidden;
    }
    .val-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(201,37,44,.08), transparent);
      opacity: 0; transition: opacity .3s;
    }
    .val-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.06); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
    .val-card:hover::before { opacity: 1; }
 
    .val-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(201,37,44,.18); display: flex; align-items: center;
      justify-content: center; margin-bottom: 20px;
    }
    .val-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 10px; }
    .val-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; }
 
    /* ══════════════════════════════════
       STATS BAND
    ══════════════════════════════════ */
    #stats-band {
      padding: 80px 0;
      background: var(--primary);
      position: relative; overflow: hidden;
    }
    .stats-band-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .stats-band-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; position: relative; z-index: 1;
    }
    @media(max-width:768px){ .stats-band-grid{ grid-template-columns: repeat(2,1fr); } }
 
    .stat-item {
      text-align: center; padding: 24px 20px;
      border-right: 1px solid rgba(255,255,255,.2);
    }
    .stat-item:last-child { border-right: none; }
    @media(max-width:768px){ .stat-item:nth-child(2) { border-right: none; } }
 
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 56px); font-weight: 900; color: white; line-height: 1;
    }
    .stat-suffix { font-size: 0.6em; }
    .stat-label {
      font-size: 10px; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px;
    }
 
    /* ══════════════════════════════════
       PRODUCTS OVERVIEW
    ══════════════════════════════════ */
    #products-overview {
      padding: 100px 0;
      background: var(--surface-2);
    }
    .po-header { max-width: 680px; margin-bottom: 60px; }
    .po-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
      color: var(--ink); line-height: 1.1; letter-spacing: -.02em; margin-top: 6px;
    }
    .po-h2 span { color: var(--primary); }
 
    .products-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }
    @media(max-width:900px){ .products-grid{ grid-template-columns: repeat(2,1fr); } }
    @media(max-width:540px){ .products-grid{ grid-template-columns: 1fr; } }
 
    .prod-card {
      background: white; border: 1px solid var(--border);
      border-radius: 20px; padding: 28px 24px;
      transition: transform .3s, box-shadow .3s;
    }
    .prod-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.1); }
    .prod-cat {
      font-size: 9px; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
    }
    .prod-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
    .prod-desc { font-size: 13px; color: var(--ink-60); line-height: 1.7; margin-bottom: 16px; }
    .prod-tag {
      display: inline-block; font-size: 10px; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      background: rgba(201,37,44,.08); color: var(--primary);
      border-radius: 6px; padding: 4px 10px;
    }
 
    /* ══════════════════════════════════
       WHY CHOOSE US
    ══════════════════════════════════ */
    #why {
      padding: 100px 0;
      background: white;
    }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    @media(max-width:900px){ .why-grid{ grid-template-columns: 1fr; } }
 
    .why-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
      color: var(--ink); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px;
    }
    .why-h2 em { font-style: italic; color: var(--primary); }
    .why-intro { font-size: 16px; color: var(--ink-60); line-height: 1.8; margin-bottom: 36px; }
 
    .why-list { display: flex; flex-direction: column; gap: 18px; }
    .why-item {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .why-check {
      width: 36px; height: 36px; border-radius: 10px;
      background: rgba(201,37,44,.1); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; margin-top: 2px;
    }
    .why-check svg path { stroke: var(--primary); }
    .why-item-body {}
    .why-item-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
    .why-item-desc { font-size: 14px; color: var(--ink-60); line-height: 1.7; }
 
    /* Right panel */
    .why-right { display: flex; flex-direction: column; gap: 20px; }
    .cert-card {
      background: var(--surface-2); border: 1px solid var(--border);
      border-radius: 20px; padding: 28px;
    }
    .cert-card-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
    .cert-card-title::before { content: ''; display: block; width: 4px; height: 16px; background: var(--primary); border-radius: 2px; }
 
    .cert-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .cert-tag {
      font-size: 12px; font-weight: 600; color: var(--ink);
      background: white; border: 1px solid var(--border);
      border-radius: 8px; padding: 7px 14px;
    }
 
    .iso-big-card {
      background: linear-gradient(135deg, var(--ink), #2a2a2a);
      border-radius: 20px; padding: 32px;
      display: flex; align-items: center; gap: 20px;
    }
    .iso-big-icon {
      width: 64px; height: 64px; border-radius: 16px;
      background: var(--primary); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
      box-shadow: 0 8px 24px rgba(201,37,44,.4);
    }
    .iso-big-text .t1 { font-size: 14px; font-weight: 700; color: white; letter-spacing: .06em; margin-bottom: 4px; }
    .iso-big-text .t2 { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
 
    /* ══════════════════════════════════
       LEADERSHIP
    ══════════════════════════════════ */
    #leadership {
      padding: 100px 0;
      background: var(--surface-2);
    }
    .lead-header { max-width: 600px; margin: 0 auto 60px; text-align: center; }
    .lead-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
      color: var(--ink); line-height: 1.1; letter-spacing: -.02em; margin-top: 6px;
    }
    .lead-h2 span { color: var(--primary); }
 
    .leaders-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto;
    }
    @media(max-width:640px){ .leaders-grid{ grid-template-columns: 1fr; } }
 
    .leader-card {
      background: white; border: 1px solid var(--border);
      border-radius: 24px; padding: 36px 32px;
      position: relative; overflow: hidden;
    }
    .leader-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: var(--primary);
    }
    .leader-avatar {
      width: 72px; height: 72px; border-radius: 20px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      font-family: 'Playfair Display', serif;
      font-size: 28px; font-weight: 700; color: white;
    }
    .leader-name {
      font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px;
    }
    .leader-role {
      font-size: 11px; font-weight: 700; letter-spacing: .16em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
    }
    .leader-desc { font-size: 14px; color: var(--ink-60); line-height: 1.75; }
 
    /* ══════════════════════════════════
       SERVICE AREA
    ══════════════════════════════════ */
    #service-area {
      padding: 100px 0;
      background: white;
    }
    .area-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    @media(max-width:900px){ .area-grid{ grid-template-columns: 1fr; } }
 
    .area-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
      color: var(--ink); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px;
    }
    .area-h2 span { color: var(--primary); }
    .area-body { font-size: 16px; color: var(--ink-60); line-height: 1.85; margin-bottom: 32px; }
 
    .region-tags { display: flex; flex-wrap: wrap; gap: 10px; }
    .region-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--surface-2); border: 1px solid var(--border);
      border-radius: 100px; padding: 8px 16px;
      font-size: 13px; font-weight: 600; color: var(--ink);
    }
    .region-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
 
    /* Map placeholder */
    .map-card {
      background: var(--ink); border-radius: 24px;
      padding: 40px; min-height: 360px;
      display: flex; flex-direction: column; justify-content: space-between;
      position: relative; overflow: hidden;
    }
    .map-dots {
      position: absolute; inset: 0; opacity: .08;
      background-image: radial-gradient(circle, white 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .map-label {
      font-size: 10px; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: rgba(255,255,255,.4);
      position: relative;
    }
    .map-india {
      font-family: 'Playfair Display', serif;
      font-size: clamp(52px, 8vw, 100px); font-weight: 900;
      color: rgba(255,255,255,.08); line-height: 1;
      letter-spacing: -.04em; position: relative;
    }
    .map-bottom {
      display: flex; align-items: center; justify-content: space-between; position: relative;
    }
    .map-hq {
      display: flex; align-items: center; gap: 10px;
    }
    .map-hq-dot {
      width: 12px; height: 12px; border-radius: 50%; background: var(--primary);
      box-shadow: 0 0 0 4px rgba(201,37,44,.3), 0 0 0 8px rgba(201,37,44,.1);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100%{ box-shadow: 0 0 0 4px rgba(201,37,44,.3), 0 0 0 8px rgba(201,37,44,.1); }
      50%{ box-shadow: 0 0 0 6px rgba(201,37,44,.2), 0 0 0 12px rgba(201,37,44,.05); }
    }
    .map-hq-text p:first-child { font-size: 13px; font-weight: 700; color: white; }
    .map-hq-text p:last-child { font-size: 11px; color: rgba(255,255,255,.4); }
 
    .map-coverage {
      text-align: right;
    }
    .map-coverage .num {
      font-family: 'Playfair Display', serif;
      font-size: 28px; font-weight: 700; color: var(--primary);
    }
    .map-coverage .txt { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }
 
    /* ══════════════════════════════════
       CTA SECTION
    ══════════════════════════════════ */
    #cta {
      padding: 100px 0;
      background: var(--primary);
      text-align: center; position: relative; overflow: hidden;
    }
    #cta .bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .cta-inner { position: relative; z-index: 1; }
    .cta-tag {
      display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: rgba(255,255,255,.7);
      background: rgba(255,255,255,.12); border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
    }
    .cta-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 5vw, 58px); font-weight: 900; color: white;
      line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px;
    }
    .cta-sub { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 40px; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
 
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; color: var(--primary);
      font-size: 14px; font-weight: 700; letter-spacing: .04em;
      padding: 15px 32px; border-radius: 100px;
      text-decoration: none; transition: transform .2s, box-shadow .2s;
      box-shadow: 0 8px 32px rgba(0,0,0,.2);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
 
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid rgba(255,255,255,.5); color: white;
      font-size: 14px; font-weight: 700; letter-spacing: .04em;
      padding: 13px 30px; border-radius: 100px;
      text-decoration: none; transition: border-color .2s, background .2s;
    }
    .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); }
 
    /* ══════════════════════════════════
       SCHEMA RICH CONTENT (visually hidden but SEO-meaningful)
    ══════════════════════════════════ */
    .seo-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
 
    /* ══════════════════════════════════
       SCROLLBAR
    ══════════════════════════════════ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--surface); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }