:root {
  --pink: #ec1958;
  --pink-dark: #d91250;
  --pink-light: #ff4d85;
  --navy: #0b2036;
  --navy-2: #0f2a43;
  --teal: #12a99b;
  --teal-dark: #0e8a7f;
  --teal-light: #2dd4bf;
  --text-dark: #1b2733;
  --text-gray: #667180;
  --border: #e7eaee;
  --bg-light: #f7f8fa;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   PRELOADER
   ===================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), #0a1a2e);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
}

@keyframes preloaderPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(236, 25, 88, 0.5),
      0 0 0 0 rgba(18, 169, 155, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 20px rgba(236, 25, 88, 0),
      0 0 0 40px rgba(18, 169, 155, 0);
    transform: scale(1.05);
  }
}

.preloader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-l1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--pink);
  letter-spacing: 2px;
  animation: preloaderTextFade 0.8s ease forwards;
  opacity: 0;
}

.preloader-l2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 4px;
  margin-top: 4px;
  animation: preloaderTextFade 0.8s ease 0.2s forwards;
  opacity: 0;
}

@keyframes preloaderTextFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  border-radius: 2px;
  animation: preloaderProgress 2s ease-in-out forwards;
}

@keyframes preloaderProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

/* =====================================================
   ANIMATED GRADIENT TEXT FOR HEADINGS
   ===================================================== */
.eyebrow {
  color: var(--pink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.eyebrow-teal {
  color: var(--teal);
  background: linear-gradient(
    90deg,
    var(--teal),
    var(--teal-light),
    var(--teal)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* =====================================================
   GRADIENT ANIMATED HEADINGS
   ===================================================== */
h1,
h2,
h3,
h4 {
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    var(--teal) 50%,
    var(--pink) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Exception: white headings on dark backgrounds */
.hero-text h1,
.cta-banner h3,
.stat-item .num,
footer h5 {
  -webkit-text-fill-color: #fff;
  background: none;
  animation: none;
}

.about-content h2 span {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s ease infinite;
  background-size: 200% auto;
}

/* =====================================================
   ANIMATED GRADIENT BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-pink {
  background: linear-gradient(
    135deg,
    var(--pink),
    var(--pink-dark),
    var(--pink-light)
  );
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 15px rgba(236, 25, 88, 0.4);
  animation: gradientShift 3s ease infinite;
}

.btn-pink:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(236, 25, 88, 0.6);
  background-position: 100% 100%;
}

.btn-teal {
  background: linear-gradient(
    135deg,
    var(--teal),
    var(--teal-dark),
    var(--teal-light)
  );
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 15px rgba(18, 169, 155, 0.4);
  animation: gradientShift 3s ease infinite;
}

.btn-teal:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(18, 169, 155, 0.6);
  background-position: 100% 100%;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--navy), var(--navy)),
    linear-gradient(135deg, var(--pink), var(--teal));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  overflow: hidden;
}

.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -2;
}

.btn-outline:hover::after {
  opacity: 1;
}

.btn-outline:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(236, 25, 88, 0.3);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn .icon {
  transition: transform 0.3s ease;
}

.btn:hover .icon {
  transform: translateX(4px);
}

/* =====================================================
   ICONS
   ===================================================== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  line-height: 0;
  vertical-align: middle;
}
.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.icon-sm {
  width: 15px;
  height: 15px;
}
.icon-lg {
  width: 48px;
  height: 48px;
  color: #9aa5b1;
}
.teal-ic svg {
  stroke: var(--teal) !important;
}
.pink-ic svg {
  stroke: var(--pink) !important;
}

/* =====================================================
   TOPBAR
   ===================================================== */
.topbar {
  background: #081522;
  color: #cfd8e3;
  font-size: 13px;
  position: relative;
  z-index: 100;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-left span,
.topbar-mid span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-left .icon svg,
.topbar-mid .icon svg {
  stroke: var(--pink);
}
.topbar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar-right a {
  width: 26px;
  height: 26px;
  border: 1px solid #33465a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd8e3;
  transition: 0.25s;
}
.topbar-right a .icon {
  width: 13px;
  height: 13px;
}
.topbar-right a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-2px) scale(1.1);
}

/* =====================================================
   STICKY HEADER WRAPPER
   ===================================================== */
.sticky-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* =====================================================
   HEADER
   ===================================================== */
header {
  background: #fff;
  position: relative;
  z-index: 90;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  position: relative;
}

/* Header Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  animation: pulseBadge 2s ease-in-out infinite;
}

.header-logo-icon .icon {
  width: 22px;
  height: 22px;
}

.header-logo-icon .icon svg {
  stroke: #fff;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hl1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--pink);
  letter-spacing: 0.5px;
}

.hl2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: var(--teal);
  letter-spacing: 2px;
}

/* Desktop: hide header logo, show overlapping badge */
@media (min-width: 961px) {
  .header-logo {
    display: none;
  }
}

/* Mobile: show header logo, hide overlapping badge */
@media (max-width: 960px) {
  .header-logo {
    display: flex;
  }
}

/* =====================================================
   NAV
   ===================================================== */
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav.main-nav > ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
nav.main-nav > ul > li {
  position: relative;
}
nav.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark);
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}
nav.main-nav > ul > li > a.active,
nav.main-nav > ul > li:hover > a {
  color: var(--pink);
}
.nav-close {
  display: none;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
  z-index: 100;
}
nav.main-nav > ul > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}
.dropdown li a:hover {
  color: var(--pink);
  background: var(--bg-light);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.burger {
  display: none;
  color: var(--text-dark);
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   OVERLAPPING BRAND BADGE - DESKTOP ONLY
   ===================================================== */
.brand-badge {
  position: absolute;
  top: 0;
  left: 24px;
  z-index: 95;
  width: 132px;
  background: #fff;
  border-radius: 0 0 46px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  padding: 0px 12px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--pink), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 8px;
  flex-shrink: 0;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(236, 25, 88, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(236, 25, 88, 0);
  }
}
.badge-icon .icon {
  width: 26px;
  height: 26px;
}
.badge-icon .icon svg {
  stroke: #fff;
}
.badge-text .l1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--pink);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.badge-text .l2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 2px;
  margin-top: 3px;
}

.footer-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(160deg, var(--pink), var(--pink-dark));
  border-radius: 8px 8px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-mark .icon {
  width: 18px;
  height: 18px;
}
.footer-mark .icon svg {
  stroke: #fff;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.footer-logo .logo-text {
  line-height: 1.05;
}

/* =====================================================
   MOBILE NAV OVERLAY
   ===================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 25, 0.55);
  z-index: -150;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   HERO SLIDER - 16:9 IMAGE SLIDES
   ===================================================== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-viewport {
  overflow: hidden;
  width: 100%;
}

.hero-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}

.hero-img-box {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}

.hero-slide:hover .hero-slide-img {
  transform: scale(1.08);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 32, 54, 0.92) 0%,
    rgba(11, 32, 54, 0.75) 35%,
    rgba(11, 32, 54, 0.4) 70%,
    rgba(11, 32, 54, 0.2) 100%
  );
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 60px 24px 60px 190px;
  z-index: 3;
  max-width: 650px;
}

.hero-text h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-text p {
  color: #c4cedb;
  font-size: 15.5px;
  max-width: 440px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.hero-dots span.active {
  background: var(--pink);
  width: 30px;
  border-radius: 5px;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(236, 25, 88, 0.5);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-arrow .icon svg {
  stroke: #fff;
}

.hero-arrow:hover {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(236, 25, 88, 0.4);
}

.hero-arrow.prev {
  left: 24px;
}
.hero-arrow.next {
  right: 24px;
}

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust-strip {
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.trust-item:hover {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(5deg);
}
.trust-icon .icon svg {
  stroke: #fff;
}
.trust-icon.pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}
.trust-icon.teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  background: linear-gradient(135deg, var(--text-dark), var(--text-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: initial;
  animation: none;
}
.trust-item p {
  font-size: 13px;
  color: var(--text-gray);
}

/* =====================================================
   SECTION HEAD
   ===================================================== */
.section {
  padding: 70px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-head h2 {
  font-size: 32px;
  font-weight: 700;
}

/* =====================================================
   PRODUCTS - GRADIENT BORDER CARDS
   ===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, var(--pink), var(--teal), var(--pink));
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  animation: borderGradient 3s ease infinite;
  z-index: -1;
}

@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.product-thumb {
  height: 140px;
  background: linear-gradient(135deg, #eef2f6, #dde3e9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-card:hover .product-thumb {
  background: linear-gradient(
    135deg,
    rgba(236, 25, 88, 0.1),
    rgba(18, 169, 155, 0.1)
  );
}

.product-info {
  padding: 20px;
}
.prod-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.product-card:hover .prod-icon {
  transform: scale(1.15) rotate(10deg);
}

.prod-icon .icon svg {
  stroke: #fff;
}
.prod-icon.pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}
.prod-icon.teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.product-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-dark), var(--text-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: initial;
  animation: none;
}

.product-info p {
  font-size: 13px;
  color: var(--text-gray);
}

/* =====================================================
   CTA BANNER - GRADIENT BACKGROUND + ANIMATED ICONS
   ===================================================== */
.cta-banner-wrap {
  max-width: 1240px;
}
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-2) 30%,
    #1a0a2e 70%,
    var(--navy) 100%
  );
  background-size: 400% 400%;
  border-radius: 14px;
  color: #fff;
  padding: 44px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  animation: ctaGradient 8s ease infinite;
}

@keyframes ctaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 25, 88, 0.2), transparent 70%);
  animation: floatOrb 6s ease-in-out infinite;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(18, 169, 155, 0.15),
    transparent 70%
  );
  animation: floatOrb 8s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

.cta-banner-left {
  position: relative;
  z-index: 2;
}

.cta-banner h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  max-width: 340px;
}
.cta-banner p {
  color: #aab6c4;
  font-size: 14px;
  max-width: 340px;
}

.cta-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  min-width: 120px;
}

.cta-stat:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(236, 25, 88, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  animation: iconPulse 2s ease-in-out infinite;
}

.cta-stat:nth-child(2) .cta-stat-icon {
  animation-delay: 0.5s;
}
.cta-stat:nth-child(3) .cta-stat-icon {
  animation-delay: 1s;
}
.cta-stat:nth-child(4) .cta-stat-icon {
  animation-delay: 1.5s;
}

@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(236, 25, 88, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(236, 25, 88, 0);
    transform: scale(1.05);
  }
}

.cta-stat-icon .icon {
  width: 24px;
  height: 24px;
  color: #fff;
}

.cta-stat-icon .icon svg {
  stroke: #fff;
}

.cta-stat span {
  font-size: 13px;
  font-weight: 600;
  display: block;
  max-width: 100px;
  margin: 0 auto;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, #132f4d, #0a1e33);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.about-video:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about-video .ct-ring-sm {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 30px solid #dfe4e9;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: slowSpin 20s linear infinite;
}
@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.play-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(236, 25, 88, 0.5);
  z-index: 2;
  transition: all 0.3s ease;
  animation: pulsePlay 2s ease-in-out infinite;
}
@keyframes pulsePlay {
  0%,
  100% {
    box-shadow: 0 10px 25px rgba(236, 25, 88, 0.5);
  }
  50% {
    box-shadow: 0 10px 35px rgba(236, 25, 88, 0.8);
  }
}
.play-btn:hover {
  transform: scale(1.15);
}
.play-btn .icon {
  width: 22px;
  height: 22px;
}
.play-btn .icon svg {
  stroke: #fff;
  fill: #fff;
}

.about-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-content > p {
  color: var(--text-gray);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.about-list {
  margin-bottom: 26px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.about-list li:hover {
  background: var(--bg-light);
  transform: translateX(8px);
}
.about-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about-stat-box {
  background: linear-gradient(135deg, var(--bg-light), #fff);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--bg-light), var(--bg-light)),
    linear-gradient(135deg, var(--pink), var(--teal));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
}
.about-stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-stat-box .icon {
  width: 28px;
  height: 28px;
  color: var(--pink);
}
.about-stat-box .icon svg {
  stroke: var(--pink);
}
.about-stat-box .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-stat-box .lbl {
  font-size: 12.5px;
  color: var(--text-gray);
}

/* =====================================================
   PARTNERS SLIDER
   ===================================================== */
.partners-slider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.partners-viewport {
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.partners-track {
  display: flex;
  transition: transform 0.4s ease;
}
.p-slide {
  flex: 0 0 33.3333%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 38px 20px;
  font-weight: 800;
  font-size: 22px;
  color: #333;
  opacity: 0.8;
  text-align: center;
  transition: all 0.3s ease;
}
.p-slide:hover {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(236, 25, 88, 0.05),
    rgba(18, 169, 155, 0.05)
  );
}
.p-slide span {
  font-weight: 700;
  font-size: 13px;
  display: block;
  color: #666;
}
.ge-mark {
  background: linear-gradient(135deg, #00539b, #003d73);
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: #fff;
}
.slider-arrow:hover {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  border-color: transparent;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(236, 25, 88, 0.3);
}
.slider-arrow:hover .icon svg {
  stroke: #fff;
}
.slider-arrow .icon {
  width: 18px;
  height: 18px;
}

.partners-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.partners-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dfe3e8;
  cursor: pointer;
  transition: all 0.3s ease;
}
.partners-dots span.active {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  width: 24px;
  border-radius: 5px;
}

/* =====================================================
   STAT STRIP
   ===================================================== */
.stat-strip {
  background: linear-gradient(90deg, var(--navy), var(--teal-dark));
  padding: 34px 0;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  animation: shine 3s infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item .icon {
  width: 32px;
  height: 32px;
  color: var(--pink);
  transition: all 0.3s ease;
}
.stat-item:hover .icon {
  transform: scale(1.2) rotate(10deg);
}
.stat-item .icon svg {
  stroke: var(--pink);
}
.stat-item .num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.stat-item .lbl {
  font-size: 13px;
  color: #cfe0e9;
}

/* =====================================================
   BLOG
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.blog-card {
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  background: #fff;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, var(--pink), var(--teal), var(--pink));
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  animation: borderGradient 3s ease infinite;
  z-index: -1;
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.blog-thumb {
  height: 190px;
  background: linear-gradient(135deg, #0e2c47, #132f4d 60%, #0a1e33);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.blog-card:hover .blog-thumb {
  background: linear-gradient(135deg, #132f4d, #0e2c47 60%, #0a1e33);
}
.blog-thumb .icon {
  color: #3d5772;
  transition: all 0.3s ease;
}
.blog-card:hover .blog-thumb .icon {
  transform: scale(1.1);
  color: var(--pink);
}
.blog-info {
  padding: 22px;
}
.blog-date {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 10px;
  display: block;
}
.blog-info h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--text-dark), var(--text-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: initial;
  animation: none;
}
.blog-read {
  color: var(--pink);
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
}
.blog-read::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  transition: width 0.3s ease;
}
.blog-read:hover::after {
  width: 100%;
}
.blog-read:hover {
  gap: 10px;
}
.blog-read .icon svg {
  stroke: var(--pink);
}

/* =====================================================
   TESTIMONIALS - SHOW 3, SCROLL 1 BY 1
   ===================================================== */
.testi-slider {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 20px;
}
.testi-viewport {
  flex: 1;
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testi-slide {
  flex: 0 0 calc(33.333% - 10px);
  margin-right: 15px;
  background: var(--bg-light);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.testi-slide:last-child {
  margin-right: 0;
}

.testi-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, var(--pink), var(--teal), var(--pink));
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  animation: borderGradient 3s ease infinite;
  z-index: -1;
}

.testi-slide:hover::before {
  opacity: 1;
}

.testi-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.quote-ic {
  width: 28px;
  height: 28px;
  color: var(--pink);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.testi-slide:hover .quote-ic {
  transform: scale(1.2) rotate(-10deg);
}
.quote-ic svg {
  stroke: var(--pink);
}
.testi-slide p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.testi-slide:hover .testi-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(236, 25, 88, 0.3);
}
.testi-person strong {
  font-size: 14px;
  display: block;
}
.testi-person span {
  font-size: 12.5px;
  color: var(--text-gray);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testi-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dfe3e8;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testi-dots span.active {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  width: 24px;
  border-radius: 5px;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: linear-gradient(180deg, var(--navy), #071828);
  color: #b7c3d1;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #8fa0b3;
  max-width: 280px;
}
footer h5 {
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .flinks li {
  margin-bottom: 11px;
}
footer .flinks a {
  font-size: 13.5px;
  color: #b7c3d1;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
footer .flinks a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  transition: width 0.3s ease;
}
footer .flinks a:hover {
  color: var(--pink);
}
footer .flinks a:hover::after {
  width: 100%;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13.5px;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.footer-contact li:hover {
  transform: translateX(5px);
}
.footer-contact .icon {
  margin-top: 2px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: #8296ac;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .flegal {
  display: flex;
  gap: 20px;
}
.footer-bottom a {
  color: #8296ac;
  transition: all 0.3s ease;
  position: relative;
}
.footer-bottom a:hover {
  color: var(--pink);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .p-slide {
    flex: 0 0 50%;
  }
  .hero-text {
    padding-left: 170px;
  }

  /* Testimonials: 2 per view on tablet */
  .testi-slide {
    flex: 0 0 calc(50% - 8px);
    margin-right: 16px;
  }
}

@media (max-width: 960px) {
  /* Sticky header */
  .sticky-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Fix: only while the mobile menu is open, lift the header's stacking
     context above the overlapping brand badge, so the slide-out menu
     (which lives inside header) isn't covered by the badge. When the
     menu is closed, header keeps its original z-index and the badge
     overlaps the header exactly as in the original design. */
  header.nav-active {
    z-index: 250;
  }

  /* Smaller brand badge on mobile only, so it doesn't overlap the hero
     heading text. Desktop badge size/design is untouched. */
  .brand-badge {
    width: 60px;
    padding: 10px 8px 16px;
    border-radius: 0 0 32px 0;
  }
  .badge-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 5px;
  }
  .badge-icon .icon {
    width: 18px;
    height: 18px;
  }
  .badge-text .l1 {
    font-size: 13px;
  }
  .badge-text .l2 {
    font-size: 7px;
    letter-spacing: 1.4px;
    margin-top: 2px;
  }

  /* Mobile nav */
  nav.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    overflow-y: auto;
    display: flex;
  }
  nav.main-nav.open {
    right: 0;
  }
  nav.main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  nav.main-nav > ul > li {
    width: 100%;
    position: relative;
  }
  nav.main-nav > ul > li > a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Mobile dropdown */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding: 0;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 4px 0 8px;
    border: 1px solid var(--border);
    width: 100%;
    min-width: auto;
    overflow: hidden;
  }

  .has-dropdown.open-sub .dropdown {
    display: block;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 500px;
    }
  }

  .dropdown li {
    width: 100%;
  }
  .dropdown li a {
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
    display: block;
  }
  .dropdown li a:hover {
    background: rgba(236, 25, 88, 0.05);
  }

  /* Chevron rotation */
  .has-dropdown > a .icon[data-icon="chevron-down"] {
    transition: transform 0.3s ease;
  }
  .has-dropdown.open-sub > a .icon[data-icon="chevron-down"] {
    transform: rotate(180deg);
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
  }
  .nav-close:hover {
    background: var(--pink);
    color: #fff;
  }

  .burger {
    display: flex;
  }
  .header-cta .btn-pink {
    display: none;
  }

  /* Hero mobile */
  .hero-img-box {
    height: 450px;
  }
  .hero-text {
    padding: 30px 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 100%;
    padding-left: 20px;
  }
  .hero-text h1 {
    font-size: 28px;
    max-width: 100%;
  }
  .hero-text p {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-arrow.prev {
    left: 10px;
  }
  .hero-arrow.next {
    right: 10px;
  }

  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .stat-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .cta-stats {
    justify-content: center;
  }
  .p-slide {
    flex: 0 0 50%;
  }

  /* Testimonials: 1 per view on mobile */
  .testi-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
  .topbar-left {
    justify-content: center;
  }
  .p-slide {
    flex: 0 0 100%;
  }

  .hero-img-box {
    height: 380px;
  }
  .hero-text h1 {
    font-size: 22px;
  }
  .hero-text p {
    font-size: 13px;
  }

  .section {
    padding: 50px 0;
  }
  .section-head h2 {
    font-size: 24px;
  }

  .stat-strip .container {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
  }

  .trust-strip .container {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 30px 20px;
  }
  .cta-banner h3 {
    font-size: 20px;
  }
  .cta-stats {
    gap: 12px;
  }
  .cta-stat {
    min-width: 100px;
    padding: 15px;
  }

  .about-video {
    height: 280px;
  }
  .about-stat-box {
    width: 100%;
  }

  .blog-grid {
    gap: 20px;
  }

  .testi-slide {
    padding: 20px;
  }

  /* Mobile nav width fix */
  nav.main-nav {
    width: 280px;
  }

  /* Header logo mobile size */
  .header-logo-icon {
    width: 36px;
    height: 36px;
  }
  .header-logo-icon .icon {
    width: 18px;
    height: 18px;
  }
  .hl1 {
    font-size: 15px;
  }
  .hl2 {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .product-card:hover,
  .blog-card:hover,
  .testi-slide:hover {
    transform: none;
  }
  .btn:hover {
    transform: none;
  }
}
