@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --blue-900: #0a1628;
  --blue-800: #0d2144;
  --blue-700: #0f3460;
  --blue-600: #1a4a8a;
  --blue-500: #1e5fad;
  --blue-400: #2979d4;
  --blue-300: #5b9de8;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --gold:       #c9972a;
  --gold-light: #e8b84b;
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.20);
  --shadow-blue: 0 8px 32px rgba(30,95,173,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --nav-h: 80px;
  --transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
.display-font { font-family: 'Playfair Display', serif; }

/* ===== UTILITIES ===== */
.container     { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad   { padding: 90px 0; }
.section-pad-sm{ padding: 60px 0; }
.text-center { text-align: center; }
.text-blue   { color: var(--blue-600); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.bg-white    { background: var(--white); }
.bg-light    { background: var(--gray-50); }
.bg-blue     { background: var(--blue-700); }
.bg-blue-dark{ background: var(--blue-900); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--blue-500);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after { content: ''; width: 28px; height: 2px; background: var(--blue-400); border-radius: 2px; }
.section-title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--blue-900);
  margin-bottom: 16px; line-height: 1.15;
}
.section-desc {
  font-size: clamp(15px, 2vw, 17px); color: var(--gray-500);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-md);
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue-600); color: var(--white); box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(30,95,173,0.35); }
.btn-outline {
  background: transparent; color: var(--blue-600); border-color: var(--blue-600);
}
.btn-outline:hover { background: var(--blue-600); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue-700); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--blue-50); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8861e; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-icon { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 50%; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--blue-900); color: rgba(255,255,255,0.85);
  font-size: 13px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 7px; font-size: 13px; }
.topbar-item svg { opacity: 0.7; flex-shrink: 0; }
.topbar-item a:hover { color: var(--white); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.topbar-social a:hover { background: var(--blue-500); }
.iso-badge {
  background: rgba(201,151,42,0.2); border: 1px solid var(--gold); color: var(--gold-light);
  padding: 2px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(10,22,40,0.12); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}

/* ---- Logo ---- */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 0;
}
.nav-logo-img {
  height: 80px; width: auto; display: block; object-fit: contain; max-width: 190px;
}


/* ---- Nav Menu ---- */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item  { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif; font-size: 13.5px; font-weight: 600;
  color: var(--gray-700); transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue-600); background: var(--blue-50); }
.nav-link svg { transition: transform 0.3s ease; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); pointer-events: none;
}
.nav-item:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--gray-700); transition: var(--transition);
}
.dropdown-item:hover { background: var(--blue-50); color: var(--blue-600); }
.dropdown-item-icon {
  width: 32px; height: 32px; background: var(--blue-50); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--blue-500);
}
.nav-cta { margin-left: 12px; }

/* ---- Hamburger ---- */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: transparent;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--blue-700);
  border-radius: 2px; transition: var(--transition);
}
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger span:nth-child(3) { width: 22px; }

/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ===== HERO SLIDER ===== */
.hero { position: relative; height: 640px; overflow: hidden; }
.hero-slides { position: relative; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.9s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.03);
  transition: transform 6s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.78) 40%,
    rgba(10,22,40,0.60) 70%,
    rgba(10,22,40,0.45) 100%
  );
}
.hero-content { position: relative; z-index: 3; max-width: 620px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,42,0.18); border: 1px solid rgba(201,151,42,0.45);
  color: var(--gold-light); padding: 6px 16px; border-radius: 30px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; backdrop-filter: blur(10px);
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 18px;
}
.hero-title span { color: var(--gold-light); }
.hero-desc {
  font-size: clamp(15px, 2vw, 17px); color: rgba(255,255,255,0.82);
  line-height: 1.7; margin-bottom: 32px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Dots */
.hero-nav {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5); background: transparent;
  cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--white); border-color: var(--white); width: 28px; border-radius: 4px; }

/* Arrows */
.hero-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between; padding: 0 24px;
  z-index: 10; pointer-events: none;
}
.hero-arrow {
  width: 48px; height: 48px; border-radius: 50%; pointer-events: all;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.hero-arrow:hover { background: var(--blue-600); border-color: var(--blue-600); }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--blue-700); padding: 0; position: relative; z-index: 5; }
.stats-grid  { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }
.stat-number {
  font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 4vw, 36px);
  font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-number span { color: var(--gold-light); }
.stat-label {
  font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-img-wrap {
  position: relative;
  height: 490px;
}
.about-img-main {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); aspect-ratio: 4/3; object-fit: cover;
  background: var(--gray-200);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--blue-700); color: var(--white);
  border-radius: var(--radius-lg); padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-xl);
}
.about-badge-num { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; line-height: 1; }
.about-badge-num span { color: var(--gold-light); }
.about-badge-text { font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-content .section-header { text-align: left; margin-bottom: 28px; }
.about-content .section-header .section-label { justify-content: flex-start; }
.about-content .section-header .section-label::before { display: none; }
.about-desc { font-size: 16px; color: var(--gray-500); line-height: 1.8; margin-bottom: 24px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about-feature  { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 40px; height: 40px; background: var(--blue-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--blue-600);
}
.about-feature-text h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.about-feature-text p  { font-size: 14px; color: var(--gray-500); }
.cert-row  { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.cert-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue-700); padding: 6px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 600;
}
.about-images-collage {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-img-main-pane {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 85%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.about-img-main-pane img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.about-img-main-pane:hover img { transform: scale(1.05); }

.about-img-sub-pane {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--white);
  z-index: 3;
}
.about-img-sub-pane img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.about-img-sub-pane:hover img { transform: scale(1.05); }

/* ===== FLOATING STATS ===== */
.ac-float {
  position: absolute;
  z-index: 10;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.16);
}

/* 500+ Dealers — top-right offset */
.ac-float-dealers {
  top: 30px; right: 10px;
  padding: 14px 20px;
  border-left: 4px solid var(--blue-600);
}
.ac-flt-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-weight: 900;
  color: var(--blue-700); line-height: 1;
}
.ac-flt-num span { color: var(--gold); }
.ac-flt-lbl {
  font-size: 10px; color: var(--gray-500); text-transform: uppercase;
  letter-spacing: 0.6px; margin-top: 4px; font-weight: 600;
}

/* ISO pill — left floating */
.ac-float-iso {
  display: flex; align-items: center; gap: 7px;
  bottom: 120px; left: -10px;
  padding: 10px 18px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 30px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  box-shadow: 0 10px 28px rgba(30, 95, 173, 0.42);
}

/* Keep existing about-badge, just adjust position */
.about-img-wrap .about-badge {
  bottom: 20px;
  right: -10px;
  z-index: 10;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-img-wrap { height: 420px; max-width: 500px; margin: 0 auto; }
  .ac-flt-num { font-size: 22px; }
  .about-img-sub-pane { bottom: -20px; }
}

@media (max-width: 600px) {
  .about-img-wrap { height: 350px; max-width: 350px; margin: 0 auto; margin-bottom: 24px; position: relative; }
  .about-images-collage { height: 100%; width: 100%; position: relative; }
  .ac-float-dealers { padding: 10px 14px; top: -10px; left: auto; right: -10px; z-index: 20; }
  .ac-flt-num { font-size: 20px; }
  .ac-flt-lbl { font-size: 9px; }
  .ac-float-iso { left: -10px; bottom: 60px; transform: none; padding: 8px 14px; font-size: 11px; z-index: 20; }
  .about-img-sub-pane { width: 55%; height: 50%; border-width: 5px; bottom: 0; right: 0; z-index: 5; }
  .about-img-main-pane { width: 80%; height: 80%; z-index: 1; }
}



/* ===== PRODUCTS ===== */
.products-section { background: var(--gray-50); }
.product-filter {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 30px; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition);
  border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-700);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--blue-600); color: var(--white); border-color: var(--blue-600);
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  overflow: hidden; transition: var(--transition); cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--blue-100); }
.product-card-img {
  height: 200px; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative; overflow: hidden;
}
.product-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-50), transparent);
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-card-img::before { opacity: 1; }
.product-card-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue-600); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.product-card-body { padding: 20px; }
.product-card-name { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; line-height: 1.3; }
.product-card-desc {
  font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.product-card-packing {
  font-size: 12px; color: var(--blue-600); font-weight: 600;
  background: var(--blue-50); padding: 4px 10px; border-radius: 20px;
}

/* ===== WHY CHOOSE ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  text-align: center; transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--blue-600); transform: scaleX(0); transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 72px; height: 72px; background: var(--blue-50); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--blue-600); }
.why-card:hover .why-icon svg { stroke: var(--white); }
.why-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.why-desc  { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 4px;
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl);
}
.gallery-item {
  position: relative; background: var(--blue-900);
  cursor: pointer; overflow: hidden;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
.gallery-item img, .gallery-item video { 
  width: 100%; height: 100%; object-fit: cover; 
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
  filter: brightness(0.75) contrast(1.05);
}
.gallery-item:hover img, .gallery-item:hover video { 
  transform: scale(1.06); filter: brightness(1) contrast(1.05); 
}
.vid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,22,40,0) 40%, rgba(10,22,40,0.9) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; transition: var(--transition);
}
.vid-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,151,42,0.9); color: var(--white); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(201,151,42,0.4);
  opacity: 0; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.vid-play-btn svg { width: 24px; height: 24px; margin-left: 4px; fill: currentColor; }
.gallery-item:hover .vid-play-btn { transform: translate(-50%, -50%) scale(1); opacity: 1; background: var(--gold); }
.vid-info { transform: translateY(14px); transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease; opacity: 0; }
.gallery-item:hover .vid-info { transform: translateY(0); opacity: 1; }
.vid-info h4 { color: var(--white); font-size: 17px; font-weight: 700; margin-bottom: 4px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.vid-info p { color: var(--gold-light); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }

/* Video Modal */
.video-modal-box { max-width: 960px; padding: 0; background: #000; overflow: hidden; position: relative; }
.video-modal-box .modal-close { 
  position: absolute; top: 16px; right: 16px; z-index: 10; 
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); 
}
.video-modal-box .modal-close:hover { background: rgba(0,0,0,0.8); }
.video-container { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.video-container video { width: 100%; height: 100%; object-fit: contain; background: #000; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--blue-900); overflow: hidden; position: relative; }
.testimonials-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,95,173,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-track {
  display: flex; gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 360px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-xl);
  padding: 36px; backdrop-filter: blur(10px);
}
.testimonial-quote  { font-size: 32px; color: var(--gold-light); line-height: 1; margin-bottom: 16px; }
.testimonial-text   { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testimonial-name   { font-size: 15px; font-weight: 700; color: var(--white); }
.testimonial-role   { font-size: 13px; color: rgba(255,255,255,0.55); }
.testimonial-stars  { color: var(--gold-light); font-size: 14px; margin-bottom: 4px; }

/* ===== TRAINING ===== */
.training-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.training-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 4/3; cursor: pointer;
}
.training-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.88));
  padding: 24px 20px 20px; color: var(--white);
  transition: var(--transition);
}
.training-card:hover .training-card-overlay { padding-bottom: 28px; }
.training-card-overlay h4 { font-size: 16px; font-weight: 700; }
.training-card-overlay p  { font-size: 13px; opacity: 0.75; }

/* ===== JOIN / CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cta-content .section-header { text-align: left; }
.cta-content .section-header .section-label { justify-content: flex-start; color: var(--gold-light); }
.cta-content .section-header .section-label::before { background: var(--gold); display: none; }
.cta-content .section-header .section-label::after  { background: var(--gold); }
.cta-content .section-title { color: var(--white); }
.cta-content .section-desc  { color: rgba(255,255,255,0.70); }
.cta-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.cta-point {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85); font-size: 15px;
}
.cta-point-icon {
  width: 28px; height: 28px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold-light);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px; box-shadow: var(--shadow-xl);
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group label span { color: #e53e3e; }
.form-control {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-md);
  border: 2px solid var(--gray-200); font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--gray-900); transition: var(--transition);
  background: var(--white); -webkit-appearance: none; appearance: none;
}
.form-control:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(30,95,173,0.10); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
footer { background: var(--blue-900); color: rgba(255,255,255,0.70); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand-name { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.footer-brand-name span { color: var(--gold-light); }
.footer-tagline { font-size: 12px; color: var(--blue-300); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.60); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--blue-400); font-size: 16px; flex-shrink: 0; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact-icon { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.50); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,22,40,0.80); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: var(--transition); backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white); border-radius: var(--radius-xl);
  max-width: 820px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl); transform: scale(0.95) translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-header {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  padding: 28px 32px; border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-header-text { color: var(--white); }
.modal-cat-badge {
  background: rgba(255,255,255,0.15); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; display: inline-block;
}
.modal-title { font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: var(--white); line-height: 1.2; }
.modal-close {
  width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.30); }
.modal-body { padding: 32px; }
.modal-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; }
.modal-img-wrap {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: center; justify-content: center; min-height: 200px;
}
.modal-img-wrap img { max-height: 180px; width: auto; object-fit: contain; }
.modal-packing-row { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 16px; }
.modal-packing-pill {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue-700); padding: 5px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px;
}
.modal-section { margin-bottom: 20px; }
.modal-section-title {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 10px;
}
.modal-text { font-size: 14px; color: var(--gray-600); line-height: 1.75; }
.modal-features { display: flex; flex-direction: column; gap: 8px; }
.modal-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-700); line-height: 1.5;
}
.modal-feature::before { content: '✓'; color: var(--blue-600); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.modal-footer { padding: 24px 32px; border-top: 1px solid var(--gray-100); display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.40); transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.floating-wa:hover { transform: scale(1.1); background: #128C7E; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.40); }
  50%       { box-shadow: 0 8px 40px rgba(37,211,102,0.65); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal       { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 1000;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue); opacity: 0; visibility: hidden;
  transition: var(--transition); cursor: pointer; border: none;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--blue-900); transform: translateY(-3px); }

/* ===== SMOOTH SECTION TRANSITIONS ===== */
section, .stats-strip, footer { transition: background-color 0.4s ease; }

/* Sections don't hide under sticky nav when anchor-linked */
section[id], div[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

/* ===== OVERFLOW GUARD — targeted, not global ===== */
/* Only media elements and the page body should be constrained */
img, video, iframe, embed, object { max-width: 100%; }
p, li, td, th, dd, dt { overflow-wrap: break-word; word-break: break-word; }

/* ======================================================
   RESPONSIVE BREAKPOINTS
   ====================================================== */

/* ---- 1200px ---- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .about-grid  { gap: 48px; }
  .cta-grid    { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-link    { padding: 7px 10px; font-size: 13px; }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .cta-grid    { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 4px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
  .section-pad { padding: 70px 0; }
  .about-badge { bottom: 12px; right: 12px; padding: 14px 18px; border-radius: var(--radius-md); }
  .about-badge-num { font-size: 28px; }
}

/* ---- 860px — mobile nav trigger ---- */
@media (max-width: 860px) {
  .nav-hamburger { display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 28px;
    gap: 2px;
    box-shadow: 0 12px 40px rgba(10,22,40,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: -1;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-menu.open { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
  }

  .nav-link { padding: 12px 14px; font-size: 15px; border-radius: var(--radius-md); }
  .nav-cta  { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  /* Mobile dropdown — shown inline, not absolute */
  /* NEW — paste this instead */
.dropdown-menu {
  position: static;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: none;
  box-shadow: none;
  border: none;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-top: 0;
  padding: 0 8px;
  pointer-events: none;
  transition: all 0.35s ease;
}

/* Only open when nav-item has .open class */
.nav-item.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 480px;
  margin-top: 4px;
  padding: 8px;
  pointer-events: auto;
}

/* Rotate arrow icon when open */
.nav-item.open > .nav-link svg {
  transform: rotate(180deg);
}

  .hero { min-height: 520px; height: 520px; }
  .hero-content { max-width: 100%; }
  .hero-title   { font-size: clamp(24px, 6vw, 40px); }
  .hero-desc    { font-size: 15px; max-width: 100%; }
  .hero-btns .btn-lg { padding: 13px 22px; font-size: 14px; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .hero        { min-height: 480px; height: auto; }
  .hero-slides { min-height: 480px; }
  .hero-slide  { min-height: 480px; padding: 100px 0 80px; }

  /* Stats: 2×2 grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }

  .testimonial-card { min-width: 280px; }
  .training-grid    { grid-template-columns: 1fr 1fr; }
  .section-pad-sm   { padding: 48px 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-card { padding: 24px 18px; }
  .why-icon { width: 56px; height: 56px; }
}

/* ---- 640px ---- */
@media (max-width: 640px) {
  .modal-grid   { grid-template-columns: 1fr; }
  .modal-body   { padding: 16px; }
  .modal-header { padding: 18px 16px; }
  .modal-title  { font-size: 17px; }
  .modal-footer { padding: 14px 16px; flex-direction: column; }
  .modal-footer .btn { width: 100%; justify-content: center; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 16px; }
  .training-grid{ grid-template-columns: 1fr; }
  .products-grid{ grid-template-columns: 1fr; }
  .product-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .product-card-footer .btn { align-self: stretch; justify-content: center; }
}

/* ---- 600px — core mobile fixes ---- */
@media (max-width: 600px) {
  /* Topbar — stack, prevent overflow */
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 16px;
  }
  .topbar-left {
    flex-wrap: wrap;
    gap: 8px 14px;
    width: 100%;
  }
  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .topbar-item  { font-size: 11px; gap: 5px; }
  /* Hide email on very small screens to prevent overflow */
  .topbar-item:has(a[href^="mailto"]) { display: none; }
  .iso-badge    { font-size: 10px; padding: 2px 8px; }

  /* Sections */
  .section-pad    { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .section-label  { font-size: 10px; letter-spacing: 2px; }
  .section-label::before,
  .section-label::after { width: 18px; }

  /* Hero */
  .hero        { min-height: 440px; height: auto; }
  .hero-slides { min-height: 440px; }
  .hero-slide  { min-height: 440px; padding: 90px 0 72px; align-items: flex-start; }
  .hero-arrows { display: none; }
  .hero-tag    { font-size: 10px; padding: 5px 11px; letter-spacing: 1.5px; }
  .hero-title  { font-size: clamp(22px, 6vw, 34px); margin-bottom: 12px; }
  .hero-desc   { font-size: 14px; margin-bottom: 22px; }
  .hero-btns   { gap: 10px; flex-wrap: wrap; }
  .hero-btns .btn { flex: 1 1 140px; justify-content: center; font-size: 13px; padding: 11px 16px; }
  .hero-nav    { bottom: 16px; gap: 8px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 4px; grid-auto-rows: 240px; border-radius: var(--radius-lg); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }

  /* Stats — 2 column on small mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item  { padding: 20px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }
  .stat-number { font-size: 28px; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 20px 14px; }
  .why-icon { width: 52px; height: 52px; margin-bottom: 14px; }
  .why-title { font-size: 14px; }
  .why-desc  { font-size: 13px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12px; }
  .footer-bottom-links { gap: 14px; }
  footer { padding: 48px 0 0; }

  /* Floating buttons */
  .floating-wa { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .back-top    { bottom: 76px; right: 16px; width: 40px; height: 40px; }

  /* About badge — fixed for small screens */
  .about-badge {
    position: absolute; bottom: -15px; right: -5px;
    padding: 14px 18px; border-radius: var(--radius-md);
    margin-top: 0; display: block; text-align: center;
    background: var(--blue-700); color: var(--white); box-shadow: var(--shadow-lg); z-index: 20;
  }
  .about-badge-num { font-size: 24px; color: var(--white); display: block; }
  .about-badge-num span { color: var(--gold-light); }
  .about-badge-text { font-size: 10px; font-weight: 600; letter-spacing: 0.5px; opacity: 0.9; margin-top: 4px; color: var(--white); }

  /* Testimonials */
  .testimonial-card { min-width: 260px; padding: 24px 20px; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  :root { --nav-h: 64px; }

  .nav-logo-img           { height: 54px; max-width: 190px; }
  .nav-logo-slogan-top    { font-size: 7.5px; letter-spacing: 1.5px; }
  .nav-logo-slogan-bottom { font-size: 10.5px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 20px; }

  .hero-btns .btn { flex: 1 1 100%; text-align: center; justify-content: center; }

  .cert-row  { gap: 8px; }
  .cert-pill { font-size: 12px; padding: 5px 12px; }
}

/* ---- 400px — very small phones ---- */
@media (max-width: 400px) {
  :root { --nav-h: 60px; }

  .container   { padding: 0 14px; }
  .section-pad { padding: 44px 0; }
  .btn-lg      { padding: 11px 16px; font-size: 13px; }

  .hero        { min-height: 400px; }
  .hero-slides { min-height: 400px; }
  .hero-slide  { min-height: 400px; padding: 80px 0 60px; }
  .hero-title  { font-size: clamp(20px, 7vw, 26px); }

  .nav-logo-img           { height: 48px; max-width: 160px; }
  .nav-logo-slogan-top    { font-size: 7px; letter-spacing: 1px; }
  .nav-logo-slogan-bottom { font-size: 9.5px; }
  .nav-logo-wrap          { gap: 2px; }

  /* Stats: single column on the tiniest screens */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-bottom: none; }

  /* Hide topbar to reclaim vertical space */
  .topbar { display: none; }
}