/* ============================================================
   ARMautomation — Premium 3D Modern Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:      #0a1628;
  --navy-mid:  #0f2140;
  --navy-light:#1a3160;
  --red:       #e11d2e;
  --red-dark:  #b8152a;
  --red-glow:  rgba(225,29,46,.35);
  --gold:      #f59e0b;
  --gold-light:rgba(245,158,11,.15);
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-700:  #334155;
  --dark:      #06090f;
  --text:      #1e293b;

  --nav-h:     76px;
  --topbar-h:  40px;
  --total-h:   116px;

  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(.22,.68,0,1.2);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.18);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.24);
  --shadow-red: 0 8px 32px rgba(225,29,46,.3);
  --shadow-glow:0 0 60px rgba(225,29,46,.15);

  --radius:    10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family:'Inter','Segoe UI',system-ui,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
}
body.loading { overflow:hidden; }
a { text-decoration:none; transition:color .25s; }
img { display:block; max-width:100%; height:auto; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }

/* ── Loader ─────────────────────────────────────────────────── */
#loader {
  position:fixed; inset:0;
  background:var(--dark);
  z-index:99999;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  transition:opacity .7s ease, visibility .7s ease;
}
.loader-logo {
  font-size:clamp(18px, 4.5vw, 40px);
  font-weight:900;
  color:#fff;
  letter-spacing:clamp(1px, 0.8vw, 6px);
  text-transform:uppercase;
  text-align:center;
  padding:0 20px;
  max-width:100%;
  overflow:hidden;
  white-space:nowrap;
}
.loader-logo span { color:var(--red); }
.loader-bar {
  width:min(220px, 60vw); height:3px;
  background:rgba(255,255,255,.1);
  border-radius:2px;
  overflow:hidden;
}
.loader-fill {
  height:100%;
  background:linear-gradient(90deg,var(--red),var(--gold));
  border-radius:2px;
  animation:load-fill 1.8s ease forwards;
}
@keyframes load-fill { from{width:0} to{width:100%} }
.loader-text { color:rgba(255,255,255,.4); font-size:clamp(9px, 2vw, 12px); letter-spacing:clamp(1.5px, 0.5vw, 3px); text-transform:uppercase; }

/* ── Scroll Progress ────────────────────────────────────────── */
#scroll-progress {
  position:fixed;
  top:0; left:0;
  height:3px;
  background:linear-gradient(90deg,var(--red),var(--gold),var(--red));
  background-size:200% 100%;
  z-index:99998;
  width:0%;
  transition:width .1s linear;
  animation:gradientShift 3s linear infinite;
}
@keyframes gradientShift { to { background-position: 200% 0; } }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width:1240px; margin:0 auto; padding:0 28px; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  position:fixed;
  top:0; left:0; width:100%;
  height:var(--topbar-h);
  background:var(--dark);
  border-bottom:1px solid rgba(255,255,255,.05);
  z-index:1002;
  transition:transform .35s ease;
}
.topbar .container { height:100%; display:flex; align-items:center; justify-content:space-between; }
.topbar-left, .topbar-right { display:flex; align-items:center; gap:24px; }
.topbar-left a, .topbar-right a {
  font-size:12.5px;
  color:rgba(255,255,255,.6);
  display:inline-flex;
  align-items:center;
  gap:7px;
  transition:.2s;
}
.topbar-left a:hover, .topbar-right a:hover { color:#fff; }
.topbar-left a i { color:var(--gold); }
.btn-top {
  background:linear-gradient(135deg,var(--red),var(--red-dark)) !important;
  color:#fff !important;
  padding:5px 16px;
  border-radius:6px;
  font-weight:700;
  font-size:12px;
  letter-spacing:.3px;
  transition:all .2s !important;
  box-shadow:0 4px 12px rgba(225,29,46,.3);
}
.btn-top:hover { transform:translateY(-1px); box-shadow:0 6px 18px rgba(225,29,46,.4) !important; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position:fixed;
  top:var(--topbar-h);
  left:0; width:100%;
  height:var(--nav-h);
  background:#ffffff;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  border-bottom:1px solid rgba(0,0,0,.06);
  z-index:1001;
  transition:all .35s ease;
}
.navbar.scrolled {
  top:0;
  height:64px;
  background:#ffffff;
  box-shadow:0 4px 30px rgba(0,0,0,.1);
  border-bottom-color:rgba(0,0,0,.08);
}
.navbar .container { height:100%; display:flex; align-items:center; justify-content:space-between; }

/* Logo */
.navbar-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.navbar-logo img { height:44px; object-fit:contain; }
.logo-text { font-size:21px; font-weight:900; color:var(--navy); letter-spacing:1px; }
.navbar.scrolled .logo-text { font-size:18px; }

/* Nav Items */
.nav-menu { display:flex; align-items:center; height:100%; gap:2px; }
.nav-menu li { position:relative; height:100%; display:flex; align-items:center; }
.nav-menu li > a {
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:8px 14px;
  font-size:13.5px;
  font-weight:600;
  color:var(--gray-700);
  border-radius:8px;
  transition:all .2s;
  white-space:nowrap;
}
.nav-menu li > a i { font-size:9px; transition:transform .2s; }
.nav-menu li:hover > a i, .nav-menu li > a.active i { transform:rotate(180deg); }
.nav-menu li > a:hover, .nav-menu li > a.active { color:var(--red); background:rgba(225,29,46,.06); }

/* Dropdown */
.has-dropdown { position:relative; }
.has-dropdown .dropdown {
  position:absolute;
  top:100%;
  left:0;
  min-width:230px;
  background:#fff;
  border-radius:0 0 14px 14px;
  box-shadow:0 20px 60px rgba(0,0,0,.15);
  border:1px solid rgba(0,0,0,.06);
  border-top:3px solid var(--red);
  opacity:0;
  pointer-events:none;
  transform:translateY(0) scale(0.97);
  transform-origin:top left;
  transition:all .25s var(--ease);
  overflow:hidden;
  z-index:500;
  padding-top:10px;
}
.has-dropdown:hover .dropdown { opacity:1; pointer-events:all; transform:translateY(0) scale(1); }
.has-dropdown::after { content:''; position:absolute; bottom:-10px; left:0; width:100%; height:20px; }
.dropdown a {
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  font-size:13px;
  color:var(--gray-700);
  font-weight:500;
  border-bottom:1px solid var(--gray-100);
  transition:all .2s;
}
.dropdown a:last-child { border-bottom:none; }
.dropdown a i { color:var(--red); width:16px; text-align:center; flex-shrink:0; }
.dropdown a:hover { background:var(--gray-50); color:var(--navy); padding-left:22px; }

/* Mega Dropdown */
.has-mega { position:relative; }
.has-mega .mega-dropdown {
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%) translateY(0) scale(0.97);
  transform-origin:top center;
  width:660px;
  background:#fff;
  border-radius:0 0 18px 18px;
  box-shadow:0 20px 60px rgba(0,0,0,.15);
  border:1px solid rgba(0,0,0,.06);
  border-top:3px solid var(--red);
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  opacity:0;
  pointer-events:none;
  transition:all .28s var(--ease);
  overflow:hidden;
  z-index:500;
  padding-top:10px;
}
.has-mega:hover .mega-dropdown { opacity:1; pointer-events:all; transform:translateX(-50%) translateY(0) scale(1); }
.has-mega::after { content:''; position:absolute; bottom:-10px; left:0; width:100%; height:20px; }
.mega-col { padding:22px 20px; border-right:1px solid var(--gray-100); }
.mega-col:last-child { border-right:none; }
.mega-col h5 {
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--red);
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:1px solid var(--gray-100);
}
.mega-col a {
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 4px;
  font-size:13px;
  color:var(--gray-700);
  font-weight:500;
  transition:.2s;
  border-radius:6px;
}
.mega-col a i { color:var(--red); width:14px; text-align:center; font-size:11px; flex-shrink:0; }
.mega-col a:hover { color:var(--red); background:rgba(225,29,46,.05); padding-left:10px; }
.mega-highlight { background:linear-gradient(135deg,var(--gray-50),#fff); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; border-radius:8px; transition:.2s; }
.hamburger:hover { background:var(--gray-100); }
.hamburger span { display:block; width:24px; height:2.5px; background:var(--navy); border-radius:2px; transition:all .3s; }
.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 ────────────────────────────────────────────── */
.mobile-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,.65);
  z-index:2000;
  opacity:0; visibility:hidden;
  transition:.3s;
  backdrop-filter:blur(6px);
}
.mobile-overlay.open { opacity:1; visibility:visible; }
.mobile-menu {
  position:fixed;
  top:0; right:-320px;
  width:300px; height:100vh;
  background:#fff;
  z-index:2001;
  transition:.35s var(--ease);
  overflow-y:auto;
  box-shadow:-20px 0 60px rgba(0,0,0,.2);
  display:flex;
  flex-direction:column;
}
.mobile-menu.open { right:0; }
.mobile-menu-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px;
  background:var(--navy);
}
.mobile-menu-close { color:#fff; font-size:26px; cursor:pointer; line-height:1; }
.mobile-menu a {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 20px;
  font-size:14px;
  font-weight:600;
  color:var(--text);
  border-bottom:1px solid var(--gray-100);
  transition:.2s;
}
.mobile-menu a:hover { color:var(--red); background:var(--gray-50); }
.mobile-has-sub > a i { font-size:11px; color:var(--gray-400); transition:.25s; }
.mobile-has-sub.open > a i { transform:rotate(180deg); }
.mobile-sub { display:none; background:var(--gray-50); }
.mobile-has-sub.open .mobile-sub { display:block; }
.mobile-sub a { padding-left:36px; font-size:13px; font-weight:500; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--dark);
  padding-top:var(--total-h);
  width:100%;
  max-width:100vw;
}

/* ── Video Hero ─────────────────────────────────────────────── */
.hero-video-wrap {
  position:absolute;
  inset:0;
  width:100%; height:100%;
  z-index:0;
  overflow:hidden;
}

.hero-vslide {
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease;
  pointer-events:none;
}
.hero-vslide.active {
  opacity:1;
  pointer-events:auto;
}
.hero-vslide video {
  position:absolute;
  inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.vslide-fallback {
  position:absolute;
  inset:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:-1;
}
/* Hide fallback when video loads */
.hero-vslide video:not([error]) ~ .vslide-fallback { z-index:-1; }

/* Mute button */
.hero-mute-btn {
  position:absolute;
  bottom:110px; right:32px;
  width:46px; height:46px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10;
  transition:all .25s;
  cursor:pointer;
}
.hero-mute-btn:hover {
  background:rgba(225,29,46,.6);
  border-color:var(--red);
  transform:scale(1.1);
}

/* Video label */
.hero-video-label {
  position:absolute;
  bottom:118px; left:50%;
  transform:translateX(-50%);
  background:rgba(10,22,40,.7);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.85);
  font-size:12px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  padding:7px 22px;
  border-radius:30px;
  z-index:10;
  white-space:nowrap;
  transition:opacity .4s ease;
  opacity:1;
}

/* Navigation dots + arrows */
.hero-nav {
  position:absolute;
  bottom:60px; left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:14px;
  z-index:10;
}
.hero-dots { display:flex; align-items:center; gap:8px; }
.hero-dot {
  width:8px; height:8px;
  border-radius:50%;
  background:rgba(255,255,255,.35);
  border:none;
  cursor:pointer;
  transition:all .3s;
  padding:0;
}
.hero-dot.active {
  background:#fff;
  width:28px;
  border-radius:4px;
}
.hero-dot:hover { background:rgba(255,255,255,.7); }
.hero-prev, .hero-next {
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .25s;
}
.hero-prev:hover, .hero-next:hover {
  background:var(--red);
  border-color:var(--red);
  transform:scale(1.1);
}

/* Progress bar */
.hero-progress-bar {
  position:absolute;
  bottom:0; left:0;
  width:100%; height:3px;
  background:rgba(255,255,255,.1);
  z-index:10;
}
.hero-progress-fill {
  height:100%;
  width:0%;
  background:linear-gradient(90deg,var(--red),var(--gold));
  transition:width .1s linear;
}

/* Three.js canvas (kept for non-index pages) */
#hero-canvas {
  position:absolute;
  inset:0;
  width:100%; height:100%;
  z-index:0;
}

/* Hero overlay gradient */
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    135deg,
    rgba(10,22,40,.97) 0%,
    rgba(10,22,40,.80) 50%,
    rgba(10,22,40,.40) 100%
  );
  z-index:1;
}

/* Hero text side */
.hero-content {
  position:relative;
  z-index:2;
  padding:80px 0;
  max-width:720px;
  overflow:hidden;
  word-wrap:break-word;
}
.hero-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.3);
  color:var(--gold);
  font-size:clamp(9px, 2vw, 11.5px);
  font-weight:700;
  letter-spacing:clamp(1px, 0.3vw, 2px);
  text-transform:uppercase;
  padding:7px 18px;
  border-radius:50px;
  margin-bottom:28px;
  animation:fadeSlideUp .8s ease both;
  max-width:100%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.hero-eyebrow i { font-size:9px; }
.hero-content h1 {
  font-size:clamp(28px,5.5vw,68px);
  font-weight:900;
  color:#fff;
  line-height:1.08;
  letter-spacing:-1.5px;
  margin-bottom:24px;
  animation:fadeSlideUp .8s .15s ease both;
  overflow-wrap:break-word;
}
.hero-content h1 .accent {
  background:linear-gradient(135deg,var(--red),#ff6b6b);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  position:relative;
}
.hero-content p {
  font-size:clamp(13px, 2.5vw, 17px);
  color:rgba(255,255,255,.65);
  line-height:1.75;
  max-width:560px;
  margin-bottom:40px;
  animation:fadeSlideUp .8s .3s ease both;
}
.hero-actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:56px;
  animation:fadeSlideUp .8s .45s ease both;
}
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Hero Stats */
.hero-stats {
  display:flex;
  gap:40px;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:36px;
  animation:fadeSlideUp .8s .6s ease both;
}
.hstat { text-align:left; }
.hstat-num {
  font-size:36px;
  font-weight:900;
  color:#fff;
  line-height:1;
  margin-bottom:5px;
}
.hstat-num span { color:var(--red); }
.hstat-lbl { font-size:12px; color:rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:1.5px; font-weight:600; }

/* Float cards on right */
.hero-float-cards {
  position:absolute;
  right:5%;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.float-card {
  display:flex;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:16px 22px;
  color:#fff;
  width:210px;
  animation:floatAnim 4s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay:1.3s; }
.float-card:nth-child(3) { animation-delay:2.6s; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.float-icon {
  width:44px; height:44px; min-width:44px;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; color:#fff;
  box-shadow:var(--shadow-red);
}
.float-info strong { display:block; font-size:22px; font-weight:900; line-height:1; margin-bottom:3px; }
.float-info span { font-size:10.5px; opacity:.55; text-transform:uppercase; letter-spacing:.8px; }

/* Hero nav */
.hero-nav {
  position:absolute;
  bottom:32px;
  left:50%;
  transform:translateX(-50%);
  z-index:4;
  display:flex;
  align-items:center;
  gap:16px;
}
.hero-dots { display:flex; gap:8px; align-items:center; }
.hero-dot {
  width:8px; height:8px;
  border-radius:50%;
  background:rgba(255,255,255,.25);
  cursor:pointer;
  transition:.35s;
  border:none;
}
.hero-dot.active { width:28px; border-radius:4px; background:var(--red); }
.hero-prev, .hero-next {
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
  cursor:pointer;
  transition:.25s;
}
.hero-prev:hover, .hero-next:hover { background:var(--red); border-color:var(--red); }

/* Scroll down indicator */
.scroll-indicator {
  position:absolute;
  bottom:80px;
  left:50%;
  transform:translateX(-50%);
  z-index:4;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.4);
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:600;
  animation:bounce 2s ease infinite;
}
.scroll-indicator i { font-size:18px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 32px;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  color:#fff;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.3px;
  transition:all .3s var(--ease-spring);
  box-shadow:var(--shadow-red);
  border:none;
  cursor:pointer;
}
.btn-primary:hover { color:#fff; transform:translateY(-3px) scale(1.02); box-shadow:0 16px 40px rgba(225,29,46,.4); }
.btn-hero-primary {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 38px;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  color:#fff;
  border-radius:10px;
  font-size:15px;
  font-weight:700;
  box-shadow:var(--shadow-red);
  transition:all .3s var(--ease-spring);
}
.btn-hero-primary:hover { color:#fff; transform:translateY(-3px); box-shadow:0 20px 50px rgba(225,29,46,.45); }
.btn-hero-outline {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 38px;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(10px);
  color:#fff;
  border-radius:10px;
  font-size:15px;
  font-weight:700;
  border:1.5px solid rgba(255,255,255,.2);
  transition:all .3s ease;
}
.btn-hero-outline:hover { color:#fff; background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.4); transform:translateY(-3px); }
.btn-outline {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 28px;
  background:transparent;
  color:var(--navy);
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  border:2px solid var(--gray-200);
  transition:all .25s;
}
.btn-outline:hover { border-color:var(--red); color:var(--red); transform:translateY(-2px); }
.btn-red {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 18px;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  color:#fff;
  border-radius:8px;
  font-size:12.5px;
  font-weight:700;
  transition:all .25s;
  box-shadow:0 4px 14px rgba(225,29,46,.25);
}
.btn-red:hover { color:#fff; transform:translateY(-2px); box-shadow:0 8px 22px rgba(225,29,46,.38); }
.btn-red.btn-sm { padding:7px 14px; font-size:12px; }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding:100px 0; }

.section-header { text-align:center; margin-bottom:64px; }
.section-tag {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:14px;
}
.section-tag::before, .section-tag::after {
  content:'';
  display:block;
  width:28px; height:2px;
  background:linear-gradient(90deg,var(--red),var(--gold));
  border-radius:1px;
}
.section-header h2 {
  font-size:clamp(28px,4vw,46px);
  font-weight:900;
  color:var(--navy);
  margin-bottom:16px;
  line-height:1.12;
  letter-spacing:-1px;
}
.section-header p { font-size:16px; color:var(--gray-500); max-width:600px; margin:0 auto; line-height:1.75; }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-section {
  background:var(--navy);
  padding:0;
  position:relative;
  overflow:hidden;
}
.stats-section::before {
  content:'';
  position:absolute; inset:0;
  background:url('../images/banner1.webp') center/cover;
  opacity:.05;
}
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  position:relative; z-index:1;
}
.stat-item {
  padding:48px 28px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.07);
  transition:.3s;
  position:relative;
  overflow:hidden;
}
.stat-item:last-child { border-right:none; }
.stat-item::before {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg,var(--red),var(--gold));
  transform:scaleX(0);
  transition:.4s;
}
.stat-item:hover::before { transform:scaleX(1); }
.stat-number {
  font-size:clamp(38px,4vw,52px);
  font-weight:900;
  color:#fff;
  display:block;
  line-height:1;
  margin-bottom:10px;
  background:linear-gradient(135deg,#fff,rgba(255,255,255,.8));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.stat-label { font-size:11.5px; color:rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:2px; font-weight:600; }

/* ── Intro Section ──────────────────────────────────────────── */
.intro-section { background:#fff; }
.intro-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.intro-text .section-tag { display:inline-flex; margin-bottom:14px; }
.intro-text .section-tag::before { display:none; }
.intro-text h2 {
  font-size:clamp(26px,3.5vw,42px);
  font-weight:900;
  color:var(--navy);
  line-height:1.15;
  letter-spacing:-.8px;
  margin-bottom:20px;
}
.intro-text p { font-size:19px; color:var(--gray-500); line-height:1.75; margin-bottom:18px; }
.intro-checks { display:grid; grid-template-columns:1fr 1fr; gap:10px 24px; margin:28px 0 36px; }
.intro-checks div { display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:var(--navy); }
.intro-checks i { color:var(--red); font-size:14px; flex-shrink:0; }
.intro-image { position:relative; }
.intro-image img { border-radius:var(--radius-xl); width:100%; box-shadow:0 30px 80px rgba(0,0,0,.14); }
.intro-badge {
  position:absolute;
  bottom:-24px;
  left:-24px;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  color:#fff;
  padding:22px 28px;
  border-radius:var(--radius-lg);
  text-align:center;
  box-shadow:var(--shadow-red);
}
.intro-badge strong { display:block; font-size:32px; font-weight:900; line-height:1; }
.intro-badge span { font-size:11px; opacity:.75; text-transform:uppercase; letter-spacing:1.2px; display:block; margin-top:4px; }

/* ── Features (Why Choose Us) ───────────────────────────────── */
.why-section { background:var(--gray-50); }
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.feature-card {
  padding:36px 28px;
  background:#fff;
  border-radius:var(--radius-lg);
  border:1px solid var(--gray-200);
  transition:all .35s var(--ease);
  position:relative;
  overflow:hidden;
  cursor:default;
}
.feature-card::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(225,29,46,.03),rgba(245,158,11,.03));
  opacity:0;
  transition:.35s;
}
.feature-card::after {
  content:'';
  position:absolute;
  top:0; left:0;
  width:100%; height:4px;
  background:linear-gradient(90deg,var(--red),var(--gold));
  transform:scaleX(0);
  transform-origin:left;
  transition:.4s var(--ease);
}
.feature-card:hover { box-shadow:var(--shadow-lg); border-color:transparent; }
.feature-card:hover::before { opacity:1; }
.feature-card:hover::after { transform:scaleX(1); }
.feature-card .feature-icon {
  width:68px; height:68px;
  margin-bottom:22px;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(225,29,46,.08),rgba(245,158,11,.05));
  display:flex; align-items:center; justify-content:center;
  transition:.4s var(--ease-out);
}
.feature-card:hover .feature-icon { transform:scale(1.1) rotateY(15deg); background:linear-gradient(135deg,var(--red),var(--red-dark)); }
.feature-card .feature-icon img { width:42px; height:42px; object-fit:contain; filter:none; }
.feature-card:hover .feature-icon img { filter:brightness(10); }
.feature-card h4 { font-size:17px; font-weight:800; color:var(--navy); margin-bottom:10px; line-height:1.3; }
.feature-card p { font-size:14px; color:var(--gray-500); line-height:1.75; }

/* ── Products Section ───────────────────────────────────────── */
.products-section { background:#fff; }
.tab-controls {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:48px;
  padding:6px;
  background:var(--gray-100);
  border-radius:14px;
  width:fit-content;
  margin-left:auto;
  margin-right:auto;
}
.tab-btn {
  padding:10px 24px;
  font-size:13.5px;
  font-weight:700;
  color:var(--gray-500);
  background:transparent;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:.25s;
}
.tab-btn:hover { color:var(--navy); background:rgba(255,255,255,.6); }
.tab-btn.active {
  color:#fff;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  box-shadow:var(--shadow-red);
}
.tab-pane { display:none; }
.tab-pane.active { display:block; animation:fadeIn .35s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.products-grid, .products-grid-full { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.product-card {
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--gray-200);
  transition:all .35s var(--ease);
  cursor:default;
}
.product-card:hover { box-shadow:var(--shadow-lg); border-color:transparent; transform:translateY(-8px) scale(1.02); }
.product-card .img-wrap i { transition:transform .4s var(--ease); }
.product-card:hover .img-wrap i { transform:scale(1.3) rotate(10deg); }
.product-card .img-wrap { position:relative; height:210px; overflow:hidden; background:var(--gray-50); }
.product-card .img-wrap img { width:100%; height:100%; object-fit:cover; }
.product-card .overlay { display:none; }
.product-card .card-body { padding:18px 20px; }
.product-card .card-body h5 { font-size:14.5px; font-weight:800; color:var(--navy); margin-bottom:6px; line-height:1.35; }
.product-cat { font-size:10.5px; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:1.2px; display:block; margin-bottom:12px; }

/* ── Solutions Section ──────────────────────────────────────── */
.solutions-section { background:var(--gray-50); }
.solutions-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.solution-card {
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:3/4;
  transition:transform .4s var(--ease);
}
.solution-card:hover { transform:scale(1.02); }
.solution-card img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.solution-card:hover img { transform:scale(1.12); }
.sol-overlay {
  position:absolute; inset:0;
  background:linear-gradient(0deg,rgba(10,22,40,.92) 0%,rgba(10,22,40,.3) 60%,transparent 100%);
  display:flex; flex-direction:column;
  justify-content:flex-end;
  padding:26px 22px;
  transition:.4s;
}
.solution-card:hover .sol-overlay {
  background:linear-gradient(0deg,rgba(225,29,46,.9) 0%,rgba(225,29,46,.4) 60%,rgba(225,29,46,.1) 100%);
}
.sol-overlay i { font-size:32px; color:rgba(255,255,255,.4); margin-bottom:12px; transition:.35s; }
.solution-card:hover .sol-overlay i { color:#fff; transform:scale(1.1) translateY(-4px); }
.sol-overlay h4 { font-size:17px; font-weight:800; color:#fff; margin-bottom:8px; }
.sol-overlay p { font-size:12.5px; color:rgba(255,255,255,.65); line-height:1.55; margin-bottom:12px; }
.sol-overlay a { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.5px; transition:.2s; }
.solution-card:hover .sol-overlay a { color:#fff; }
.sol-overlay a i { font-size:10px; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline-section { background:var(--gray-50); }
.timeline { position:relative; max-width:860px; margin:0 auto; }
.timeline::before { content:''; position:absolute; left:50%; top:0; bottom:0; width:2px; background:linear-gradient(180deg,var(--red),transparent); transform:translateX(-50%); }
.timeline-item { position:relative; width:46%; margin-bottom:52px; }
.timeline-item::after {
  content:'';
  position:absolute;
  top:8px;
  right:-10%;
  width:16px; height:16px;
  background:#fff;
  border:3px solid var(--red);
  border-radius:50%;
  box-shadow:0 0 0 4px rgba(225,29,46,.15);
  transition:.3s;
}
.timeline-item:hover::after { background:var(--red); box-shadow:0 0 0 6px rgba(225,29,46,.2); }
.timeline-item.right { margin-left:54%; }
.timeline-item.right::after { left:-10%; right:auto; }
.timeline-year { font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--red); margin-bottom:8px; }
.timeline-content {
  background:#fff;
  border-radius:var(--radius);
  padding:22px 26px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--gray-200);
  transition:all .35s;
}
.timeline-content:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.timeline-content h4 { font-size:16px; font-weight:800; color:var(--navy); margin-bottom:8px; }
.timeline-content p { font-size:13.5px; color:var(--gray-500); line-height:1.7; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 40%,rgba(225,29,46,.8) 100%);
  padding:90px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-banner::before { content:''; position:absolute; inset:0; background:url('../images/banner2.webp') center/cover; opacity:.07; }
.cta-banner .container { position:relative; z-index:1; }
.cta-banner h2 { font-size:clamp(28px,4.5vw,52px); font-weight:900; color:#fff; margin-bottom:18px; line-height:1.15; letter-spacing:-.8px; }
.cta-banner p { font-size:17px; color:rgba(255,255,255,.65); margin-bottom:40px; max-width:600px; margin-left:auto; margin-right:auto; }
.cta-banner div { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── News Section ───────────────────────────────────────────── */
.news-section { background:#fff; }
.news-grid { display:grid; grid-template-columns:1fr 360px; gap:36px; align-items:start; }
.news-card { background:#fff; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--gray-200); transition:all .35s; }
.news-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-5px); }
.news-card.featured { border:none; box-shadow:none; }
.news-card.featured:hover { transform:none; box-shadow:none; }
.news-card.featured .news-img { height:340px; overflow:hidden; border-radius:var(--radius-lg); margin-bottom:24px; }
.news-card.featured .news-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.news-card.featured:hover .news-img img { transform:scale(1.05); }
.news-card.mini { display:flex; height:120px; }
.news-card.mini + .news-card.mini { margin-top:14px; }
.news-card.mini img { width:120px; flex-shrink:0; object-fit:cover; }
.news-card.mini .news-body { padding:14px 16px; }
.news-body h3 { font-size:21px; font-weight:900; color:var(--navy); margin-bottom:12px; line-height:1.3; }
.news-body h3 a { color:inherit; }
.news-body h3 a:hover { color:var(--red); }
.news-card.mini .news-body h4 { font-size:13px; font-weight:700; color:var(--navy); margin-bottom:6px; line-height:1.4; }
.news-card.mini .news-body h4 a { color:inherit; }
.news-card.mini .news-body h4 a:hover { color:var(--red); }
.news-body p { font-size:14.5px; color:var(--gray-500); line-height:1.78; margin-bottom:14px; }
.news-tag { display:inline-block; background:linear-gradient(135deg,var(--red),var(--red-dark)); color:#fff; font-size:10.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:4px 12px; border-radius:6px; margin-bottom:12px; }
.news-meta { font-size:12px; color:var(--gray-400); margin-bottom:14px; display:flex; align-items:center; gap:5px; flex-wrap:wrap; }
.news-meta i { color:var(--red); }
.news-side { display:flex; flex-direction:column; }
.read-more { display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:700; color:var(--red); transition:.2s; }
.read-more i { transition:transform .2s; }
.read-more:hover i { transform:translateX(4px); }

/* ── Partners ───────────────────────────────────────────────── */
.partners-section { background:var(--gray-50); }
.partner-scroll-wrap { overflow:hidden; margin-top:16px; }
.partner-track { display:flex; gap:20px; align-items:center; width:max-content; will-change:transform; }
.partner-logo {
  padding:12px 24px;
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  height:70px;
  transition:.3s;
}
.partner-logo img { max-height:44px; max-width:120px; width:auto; object-fit:contain; filter:grayscale(100%); opacity:0.6; transition:.3s; }
.partner-logo:hover img { filter:grayscale(0%); opacity:1; }
.partner-logo:hover { border-color:var(--navy); }

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section {
  background:linear-gradient(135deg,var(--navy),var(--navy-mid));
  padding:72px 0;
  position:relative;
  overflow:hidden;
}
.newsletter-section::before { content:''; position:absolute; inset:0; background:url('../images/banner3.webp') center/cover; opacity:.05; }
.newsletter-inner { position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.newsletter-inner h3 { font-size:26px; font-weight:900; color:#fff; margin-bottom:8px; }
.newsletter-inner p { font-size:14.5px; color:rgba(255,255,255,.55); }
.newsletter-form { display:flex; gap:10px; flex:1; max-width:480px; }
.newsletter-form input {
  flex:1;
  padding:13px 18px;
  border-radius:10px;
  border:1.5px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.07);
  color:#fff;
  font-size:14px;
  font-family:inherit;
  outline:none;
  transition:.25s;
}
.newsletter-form input::placeholder { color:rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color:rgba(255,255,255,.3); background:rgba(255,255,255,.1); }
.newsletter-form .btn-red { flex-shrink:0; padding:13px 26px; font-size:13.5px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background:var(--dark);
  color:rgba(255,255,255,.55);
  padding:80px 0 0;
  position:relative;
  background-size:cover;
  background-position:center;
}
.footer-overlay { position:absolute; inset:0; background:rgba(6,9,15,.93); pointer-events:none; }
.footer .container { position:relative; z-index:1; }
.footer-grid { display:grid; grid-template-columns:300px 1fr 1fr 1fr; gap:52px; margin-bottom:60px; }
.footer-logo-text { font-size:30px; font-weight:900; color:#fff; letter-spacing:2px; margin-bottom:18px; }
.footer-logo-text span { background:linear-gradient(135deg,var(--red),#ff6b6b); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.footer-brand p { font-size:13.5px; line-height:1.8; color:rgba(255,255,255,.45); margin-bottom:24px; }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.45); font-size:14px; transition:.25s; }
.footer-social a:hover { background:var(--red); border-color:var(--red); color:#fff; transform:translateY(-3px); }
.footer-links h5, .footer-contact-col h5 { font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:#fff; margin-bottom:22px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,.06); }
.footer-links ul { list-style:none; }
.footer-links li { margin-bottom:12px; }
.footer-links a { font-size:13.5px; color:rgba(255,255,255,.45); display:flex; align-items:center; gap:8px; transition:.25s; }
.footer-links a::before { content:''; width:5px; height:5px; background:var(--red); border-radius:50%; flex-shrink:0; opacity:.5; }
.footer-links a:hover { color:rgba(255,255,255,.9); padding-left:6px; }
.footer-links a:hover::before { opacity:1; }
.footer-contact-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:16px; font-size:13.5px; }
.footer-contact-item i { color:var(--gold); margin-top:3px; width:16px; flex-shrink:0; }
.footer-contact-item a { color:rgba(255,255,255,.45); }
.footer-contact-item a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.05); padding:22px 0; display:flex; justify-content:space-between; align-items:center; font-size:12.5px; flex-wrap:wrap; gap:10px; }
.footer-bottom a { color:rgba(255,255,255,.35); }
.footer-bottom a:hover { color:var(--gold); }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position:fixed;
  bottom:90px; right:28px;
  width:54px; height:54px;
  background:#25d366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:28px;
  z-index:990;
  box-shadow:0 6px 24px rgba(37,211,102,.5);
  transition:all .3s var(--ease-spring);
}
.whatsapp-float:hover { background:#1ca854; color:#fff; transform:scale(1.12) translateY(-4px); }

/* ── Scroll to Top ──────────────────────────────────────────── */
.scroll-top {
  position:fixed;
  bottom:28px; right:28px;
  width:46px; height:46px;
  background:var(--navy);
  border:1.5px solid rgba(255,255,255,.1);
  border-radius:50%;
  display:none; align-items:center; justify-content:center;
  color:#fff; font-size:16px;
  z-index:990;
  transition:all .3s var(--ease-spring);
  box-shadow:var(--shadow-md);
}
.scroll-top.visible { display:flex; }
.scroll-top:hover { background:var(--red); border-color:var(--red); transform:translateY(-4px); box-shadow:var(--shadow-red); }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox-overlay { position:fixed; inset:0; background:rgba(0,0,0,.94); z-index:9000; display:none; align-items:center; justify-content:center; backdrop-filter:blur(12px); }
.lightbox-overlay.open { display:flex; }
.lightbox-overlay img { max-width:90vw; max-height:86vh; border-radius:var(--radius-lg); box-shadow:var(--shadow-xl); }
.lightbox-close { position:absolute; top:20px; right:28px; color:#fff; font-size:34px; cursor:pointer; opacity:.6; transition:.2s; background:none; border:none; line-height:1; }
.lightbox-close:hover { opacity:1; transform:scale(1.2); }

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero { padding-top:var(--total-h); position:relative; min-height:300px; display:flex; align-items:flex-end; overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(0deg,rgba(10,22,40,.95) 0%,rgba(10,22,40,.6) 100%); }
.page-hero-content { position:relative; z-index:1; padding:64px 0 52px; color:#fff; }
.page-hero-content h1 { font-size:clamp(28px,4.5vw,52px); font-weight:900; margin-bottom:12px; line-height:1.08; letter-spacing:-.8px; }
.page-hero-content p { font-size:16.5px; color:rgba(255,255,255,.6); max-width:600px; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb-wrap { background:#fff; border-bottom:1px solid var(--gray-200); padding:14px 0; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:13.5px; }
.breadcrumb a { color:var(--gray-500); font-weight:600; }
.breadcrumb a:hover { color:var(--red); }
.breadcrumb .sep { color:var(--gray-200); }
.breadcrumb .current { color:var(--navy); font-weight:700; }

/* ── Content with Sidebar ───────────────────────────────────── */
.content-with-sidebar { display:grid; grid-template-columns:260px 1fr; gap:48px; align-items:start; }
.sidebar-box { background:#fff; border:1px solid var(--gray-200); border-radius:var(--radius-lg); overflow:hidden; margin-bottom:24px; box-shadow:var(--shadow-sm); }
.sidebar-nav { padding:0; }
.sidebar-nav h4 { padding:16px 22px; background:var(--navy); color:#fff; font-size:12px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; margin:0; }
.sidebar-nav a { display:flex; align-items:center; justify-content:space-between; padding:13px 22px; font-size:13.5px; color:var(--gray-700); font-weight:600; border-bottom:1px solid var(--gray-100); transition:.2s; border-left:3px solid transparent; }
.sidebar-nav a:last-child { border-bottom:none; }
.sidebar-nav a:hover, .sidebar-nav a.active { color:var(--red); border-left-color:var(--red); background:var(--gray-50); padding-left:28px; }
.sidebar-cta { background:linear-gradient(135deg,var(--red),var(--red-dark)); border-radius:var(--radius-lg); padding:30px 24px; text-align:center; color:#fff; }
.sidebar-cta h4 { font-size:18px; font-weight:900; margin-bottom:10px; }
.sidebar-cta p { font-size:13px; opacity:.8; margin-bottom:18px; }

/* ── FAQs ───────────────────────────────────────────────────── */
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item { border:1px solid var(--gray-200); border-radius:12px; overflow:hidden; transition:.25s; }
.faq-item.open { border-color:var(--red); box-shadow:0 0 0 3px rgba(225,29,46,.07); }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 22px; cursor:pointer; font-size:15px; font-weight:700; color:var(--navy); background:#fff; gap:16px; transition:.2s; user-select:none; }
.faq-item.open .faq-q { background:var(--red); color:#fff; }
.faq-q i { flex-shrink:0; transition:transform .3s; }
.faq-item.open .faq-q i { transform:rotate(45deg); color:#fff; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-item.open .faq-a { max-height:350px; }
.faq-a p { padding:18px 22px 22px; font-size:14.5px; color:var(--gray-500); line-height:1.8; }

/* ── MVV Cards ──────────────────────────────────────────────── */
.mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.mvv-card { background:#fff; border-radius:var(--radius-lg); padding:40px 32px; text-align:center; border:1px solid var(--gray-200); transition:.35s; cursor:default; }
.mvv-card:hover { box-shadow:var(--shadow-xl); border-color:transparent; }
.mvv-icon { width:68px; height:68px; background:linear-gradient(135deg,var(--red),var(--red-dark)); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:26px; margin:0 auto 22px; box-shadow:var(--shadow-red); }
.mvv-card h4 { font-size:20px; font-weight:900; color:var(--navy); margin-bottom:14px; }
.mvv-card p { font-size:14.5px; color:var(--gray-500); line-height:1.8; }

/* ── Team Grid ──────────────────────────────────────────────── */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card { background:#fff; border-radius:var(--radius-lg); padding:36px 24px; text-align:center; border:1px solid var(--gray-200); transition:.35s; cursor:default; }
.team-card:hover { box-shadow:var(--shadow-xl); border-color:transparent; }
.team-avatar { width:84px; height:84px; background:linear-gradient(135deg,var(--navy),var(--navy-light)); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:32px; margin:0 auto 18px; }
.team-card h4 { font-size:16.5px; font-weight:800; color:var(--navy); margin-bottom:5px; }
.team-card span { font-size:11.5px; color:var(--red); font-weight:700; text-transform:uppercase; letter-spacing:1px; display:block; margin-bottom:14px; }
.team-card p { font-size:13.5px; color:var(--gray-500); line-height:1.7; }

/* ── Cert Grid ──────────────────────────────────────────────── */
.cert-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.cert-card { background:#fff; border-radius:var(--radius); padding:32px 22px; text-align:center; border:1px solid var(--gray-200); transition:.35s; cursor:default; }
.cert-card:hover { border-color:var(--red); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.cert-card i { font-size:36px; color:var(--red); margin-bottom:14px; }
.cert-card h5 { font-size:14.5px; font-weight:800; color:var(--navy); margin-bottom:6px; }
.cert-card p { font-size:12.5px; color:var(--gray-500); }

/* ── Product Detail ─────────────────────────────────────────── */
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.spec-table { border:1px solid var(--gray-200); border-radius:var(--radius); overflow:hidden; }
.spec-row { display:grid; grid-template-columns:180px 1fr; border-bottom:1px solid var(--gray-100); }
.spec-row:last-child { border-bottom:none; }
.spec-row span { padding:12px 18px; font-size:13.5px; }
.spec-row span:first-child { background:var(--gray-50); font-weight:700; color:var(--navy); }
.spec-row span:last-child { color:var(--gray-500); }

/* ── News Grid v2 ───────────────────────────────────────────── */
.news-featured { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; padding:48px; background:var(--gray-50); border-radius:var(--radius-xl); }
.news-featured-img img { width:100%; height:340px; object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); }
.news-featured-body h2 { font-size:clamp(20px,3vw,30px); font-weight:900; color:var(--navy); margin:14px 0; line-height:1.28; }
.news-featured-body h2 a { color:inherit; }
.news-featured-body h2 a:hover { color:var(--red); }
.news-featured-body p { font-size:14.5px; color:var(--gray-500); line-height:1.8; margin-bottom:16px; }
.news-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.news-card-v2 { background:#fff; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--gray-200); transition:.35s; }
.news-card-v2:hover { box-shadow:var(--shadow-lg); transform:translateY(-5px); }
.news-img-wrap { position:relative; height:200px; overflow:hidden; }
.news-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.news-card-v2:hover .news-img-wrap img { transform:scale(1.08); }
.news-tag-abs { position:absolute; top:14px; left:14px; }
.news-body-v2 { padding:20px 22px; }
.news-body-v2 h4 { font-size:15.5px; font-weight:800; color:var(--navy); margin-bottom:9px; line-height:1.4; }
.news-body-v2 h4 a { color:inherit; }
.news-body-v2 h4 a:hover { color:var(--red); }
.news-body-v2 p { font-size:13.5px; color:var(--gray-500); line-height:1.75; margin-bottom:12px; }

/* ── Contact Layout ─────────────────────────────────────────── */
.contact-layout { display:grid; grid-template-columns:1fr 420px; gap:64px; align-items:start; }
.contact-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.contact-form .form-group { margin-bottom:22px; }
.contact-form label { display:block; font-size:13px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.contact-form label.req::after { content:' *'; color:var(--red); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width:100%;
  padding:13px 18px;
  border:1.5px solid var(--gray-200);
  border-radius:10px;
  font-size:14px;
  font-family:inherit;
  color:var(--text);
  background:#fff;
  transition:.25s;
  outline:none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color:var(--red); box-shadow:0 0 0 4px rgba(225,29,46,.07); }
.contact-form textarea { min-height:140px; resize:vertical; }
.form-success { text-align:center; padding:60px 20px; }
.form-success h3 { font-size:24px; font-weight:900; color:var(--navy); margin:16px 0 8px; }
.form-success p { color:var(--gray-500); }
.contact-info-card { background:var(--navy); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.contact-info-header { background:linear-gradient(135deg,var(--red),var(--red-dark)); padding:22px 26px; display:flex; align-items:center; gap:12px; }
.contact-info-header i { font-size:22px; color:#fff; }
.contact-info-header h4 { color:#fff; font-size:18px; font-weight:800; margin:0; }
.contact-info-body { padding:24px 26px; }
.contact-info-row { display:flex; align-items:flex-start; gap:14px; margin-bottom:18px; font-size:13.5px; color:rgba(255,255,255,.65); }
.contact-info-row:last-child { margin-bottom:0; }
.contact-info-row i { color:var(--gold); margin-top:2px; width:16px; flex-shrink:0; }
.contact-info-row a { color:rgba(255,255,255,.65); }
.contact-info-row a:hover { color:var(--gold); }

/* ── Sol Highlight Cards ────────────────────────────────────── */
.sol-highlight-cards { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin:32px 0; }
.sol-h-card { padding:24px; background:var(--gray-50); border-radius:var(--radius); border-left:4px solid var(--red); transition:.25s; }
.sol-h-card:hover { background:#fff; box-shadow:var(--shadow-md); }
.sol-h-card i { font-size:26px; color:var(--red); margin-bottom:14px; }
.sol-h-card h4 { font-size:15.5px; font-weight:800; color:var(--navy); margin-bottom:8px; }
.sol-h-card p { font-size:13.5px; color:var(--gray-500); line-height:1.7; }

/* ── Reveal Animations ──────────────────────────────────────── */
[data-reveal], [data-reveal].revealed { opacity:1; transform:none; }

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet Landscape */
@media (max-width:1199px) {
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .solutions-grid { grid-template-columns:repeat(2,1fr); }
  .products-grid, .products-grid-full { grid-template-columns:repeat(3,1fr); }
  .hero-float-cards { display:none; }
  .mega-dropdown { width:520px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .timeline::before { left:20px; }
  .timeline-item { width:100%; padding-left:54px; margin-left:0 !important; }
  .timeline-item::after { right:auto !important; left:10px !important; }
}

/* Tablet Portrait */
@media (max-width:991px) {
  :root { --total-h:56px; --topbar-h:0px; --nav-h:56px; }
  .topbar { display:none; }
  .navbar { top:0; }
  .nav-menu { display:none; }
  .hamburger { display:flex; }
  .navbar-logo { margin-left:0 !important; gap:6px !important; }
  .navbar-logo img { height:34px !important; }
  .navbar-logo span { height:28px !important; }
  .hero { min-height:85vh; }
  .hero-content { padding:60px 0; }
  .hero-content h1 { font-size:38px; letter-spacing:-1px; }
  .hero-content p { font-size:15px; margin-bottom:28px; }
  .hero-eyebrow { font-size:10px; padding:6px 14px; margin-bottom:20px; }
  .hero-actions { margin-bottom:36px; }
  .hero-stats { gap:28px; padding-top:28px; }
  .hstat-num { font-size:28px; }
  .hero-nav { bottom:20px; }
  .hero-mute-btn { bottom:70px; right:16px; width:38px; height:38px; font-size:14px; }
  .hero-video-label { bottom:78px; font-size:10px; padding:5px 14px; }
  .scroll-indicator { bottom:50px; }
  .intro-grid { grid-template-columns:1fr; gap:40px; }
  .intro-image { display:none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item { padding:32px 20px; }
  .stat-number { font-size:clamp(28px,4vw,40px); }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .solutions-grid { grid-template-columns:repeat(2,1fr); }
  .products-grid, .products-grid-full { grid-template-columns:repeat(2,1fr); }
  .mvv-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .cert-grid { grid-template-columns:repeat(2,1fr); }
  .news-grid { grid-template-columns:1fr; }
  .news-side { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .news-grid-3 { grid-template-columns:repeat(2,1fr); }
  .news-featured { grid-template-columns:1fr; }
  .contact-layout { grid-template-columns:1fr; }
  .contact-form .form-row { grid-template-columns:1fr; }
  .product-detail-grid { grid-template-columns:1fr; }
  .content-with-sidebar { grid-template-columns:1fr; }
  .sol-highlight-cards { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .section { padding:72px 0; }
  .section-header { margin-bottom:48px; }
  .page-hero { min-height:260px; }
  .page-hero-content { padding:48px 0 40px; }
  .page-hero-content h1 { font-size:clamp(26px,4vw,40px); }
  .services-grid { grid-template-columns:repeat(2,1fr); gap:20px; }
  .service-card { padding:28px 22px; }
  .service-card .icon-wrap { width:60px; height:60px; margin-bottom:16px; }
  .service-card .icon-wrap i { font-size:24px; }
  .service-card h5 { font-size:18px; }
}

/* Mobile Large */
@media (max-width:767px) {
  .features-grid, .solutions-grid { grid-template-columns:1fr 1fr; }
  .products-grid, .products-grid-full { grid-template-columns:1fr 1fr; }
  .team-grid, .cert-grid { grid-template-columns:1fr 1fr; }
  .news-grid-3 { grid-template-columns:1fr; }
  .news-side { grid-template-columns:1fr; }
  .newsletter-inner { flex-direction:column; gap:24px; }
  .newsletter-form { max-width:100%; width:100%; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .intro-checks { grid-template-columns:1fr; }
  .intro-text h2 { font-size:26px; }
  .intro-text p { font-size:16.5px; }
  .hero { min-height:75vh; }
  .hero-content { padding:40px 0; }
  .hero-content h1 { font-size:32px; letter-spacing:-.5px; margin-bottom:16px; }
  .hero-content p { font-size:14px; max-width:100%; margin-bottom:24px; line-height:1.7; }
  .hero-actions { gap:10px; margin-bottom:28px; }
  .hero-stats { gap:20px; padding-top:20px; }
  .hstat-num { font-size:24px; }
  .hstat-lbl { font-size:10px; letter-spacing:1px; }
  .btn-primary, .btn-hero-primary { padding:12px 28px; font-size:14px; }
  .btn-hero-outline { padding:12px 28px; font-size:14px; }
  .section { padding:52px 0; }
  .section-header { margin-bottom:36px; }
  .section-header h2 { font-size:24px; letter-spacing:-.5px; }
  .section-header p { font-size:14px; }
  .section-tag { font-size:10px; letter-spacing:2px; }
  .section-tag::before, .section-tag::after { width:20px; }
  .page-hero { min-height:220px; }
  .page-hero-content { padding:36px 0 32px; }
  .page-hero-content h1 { font-size:26px; }
  .page-hero-content p { font-size:13px; }
  .breadcrumb { font-size:13px; }
  .tab-controls { flex-wrap:wrap; gap:6px; padding:4px; border-radius:10px; }
  .tab-btn { font-size:12.5px; padding:8px 16px; border-radius:8px; }
  .product-card .img-wrap { height:150px; }
  .product-card .card-body { padding:14px 16px; }
  .product-card .card-body h5 { font-size:14px; }
  .product-card .card-body .product-cat { font-size:10px; margin-bottom:10px; }
  .product-card .btn-red { font-size:12px; padding:7px 14px; }
  .product-card:hover { transform:translateY(-4px) scale(1.01); }
  .services-grid { grid-template-columns:1fr; gap:16px; }
  .service-card { padding:24px 20px; }
  .service-card .icon-wrap { width:56px; height:56px; margin-bottom:14px; }
  .service-card .icon-wrap i { font-size:22px; }
  .service-card h5 { font-size:17px; margin-bottom:8px; }
  .service-card p { font-size:13.5px; margin-bottom:16px; }
  .solution-card { aspect-ratio:4/3; }
  .sol-overlay { padding:20px 16px; }
  .sol-overlay h4 { font-size:15px; }
  .sol-overlay p { font-size:11.5px; }
  .cta-banner { padding:48px 0; }
  .cta-banner h2 { font-size:22px; }
  .cta-banner p { font-size:13.5px; }
  .feature-card { padding:28px 22px; }
  .feature-card .feature-icon { width:56px; height:56px; margin-bottom:16px; }
  .feature-card h4 { font-size:15px; }
  .feature-card p { font-size:13px; }
  .stat-item { padding:28px 16px; }
  .stat-number { font-size:clamp(24px,5vw,36px); }
  .stat-label { font-size:10px; letter-spacing:1.5px; }
  .footer-brand p { font-size:13.5px; }
  .footer-links ul li a { font-size:14px; }
  .footer-contact-item { font-size:13.5px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; font-size:12px; }
  .spec-table .spec-row { font-size:14px; padding:10px 14px; }
  .product-detail-grid { gap:28px; }
}

/* Mobile Small */
@media (max-width:575px) {
  .container { padding:0 16px; }
  .features-grid, .solutions-grid { grid-template-columns:1fr; }
  .products-grid, .products-grid-full { grid-template-columns:1fr 1fr; }
  .team-grid, .cert-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .loader-logo {
    font-size:24px !important;
    letter-spacing:3px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    line-height:1.2 !important;
  }
  .loader-logo span {
    display:block !important;
    font-size:24px !important;
    letter-spacing:3px !important;
  }
  .loader-text { font-size:8px !important; letter-spacing:1.5px !important; }
  .loader-bar { width:140px !important; }
  #loader { gap:18px; }
  .hero { min-height:70vh; }
  .hero-content { padding:32px 0; }
  .hero-content h1 { font-size:26px; letter-spacing:-.3px; margin-bottom:14px; }
  .hero-content p { font-size:13.5px; margin-bottom:20px; }
  .hero-eyebrow { font-size:9px; padding:5px 12px; letter-spacing:1.5px; margin-bottom:16px; }
  .hero-actions { flex-direction:column; gap:10px; margin-bottom:24px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline { width:100%; justify-content:center; }
  .hero-stats { flex-direction:column; gap:16px; padding-top:20px; }
  .hero-nav { bottom:12px; gap:10px; }
  .hero-dot { width:6px; height:6px; }
  .hero-dot.active { width:22px; }
  .hero-prev, .hero-next { width:30px; height:30px; font-size:11px; }
  .hero-mute-btn { bottom:50px; right:12px; width:34px; height:34px; font-size:12px; }
  .hero-video-label { font-size:9px; padding:4px 10px; bottom:56px; }
  .navbar-logo { margin-left:0 !important; gap:4px !important; }
  .navbar-logo img { height:22px !important; }
  .navbar-logo span[style] { height:16px !important; width:1.5px !important; }
  .navbar-logo span { height:16px !important; }
  .tab-controls { width:100%; justify-content:center; padding:3px; }
  .tab-btn { font-size:11.5px; padding:7px 12px; flex:1; text-align:center; min-width:0; }
  .section { padding:40px 0; }
  .section-header { margin-bottom:28px; }
  .section-header h2 { font-size:21px; margin-bottom:10px; }
  .section-header p { font-size:13px; line-height:1.65; }
  .section-tag { font-size:9.5px; letter-spacing:1.8px; margin-bottom:10px; }
  .page-hero { min-height:180px; }
  .page-hero-content { padding:28px 0 24px; }
  .page-hero-content h1 { font-size:22px; letter-spacing:-.3px; }
  .page-hero-content p { font-size:12.5px; }
  .breadcrumb { font-size:12px; padding:10px 0; }
  .btn-primary, .btn-outline, .btn-hero-primary { font-size:13px; padding:11px 22px; }
  .btn-red { font-size:11.5px; padding:7px 14px; }
  .product-card .img-wrap { height:110px; }
  .product-card .card-body { padding:10px 12px; }
  .product-card .card-body h5 { font-size:12.5px; margin-bottom:4px; }
  .product-card .card-body .product-cat { font-size:9.5px; margin-bottom:8px; }
  .product-card .btn-red { font-size:11px; padding:5px 12px; }
  .product-card:hover { transform:translateY(-2px); }
  .services-grid { gap:14px; }
  .service-card { padding:20px 16px; }
  .service-card .icon-wrap { width:50px; height:50px; margin-bottom:12px; }
  .service-card .icon-wrap i { font-size:20px; }
  .service-card h5 { font-size:16px; margin-bottom:8px; }
  .service-card p { font-size:13px; line-height:1.6; margin-bottom:14px; }
  .solution-card { aspect-ratio:1/1; }
  .sol-overlay h4 { font-size:14px; }
  .sol-overlay p { font-size:11px; }
  .cta-banner { padding:36px 0; }
  .cta-banner h2 { font-size:20px; margin-bottom:10px; }
  .cta-banner p { font-size:13px; margin-bottom:20px; }
  .feature-card { padding:22px 18px; }
  .feature-card .feature-icon { width:48px; height:48px; border-radius:12px; margin-bottom:14px; }
  .feature-card .feature-icon img { width:32px; height:32px; }
  .feature-card h4 { font-size:14.5px; margin-bottom:8px; }
  .feature-card p { font-size:12.5px; }
  .stat-item { padding:22px 12px; }
  .stat-number { font-size:clamp(22px,6vw,32px); margin-bottom:6px; }
  .stat-label { font-size:9px; letter-spacing:1.2px; }
  .intro-badge { bottom:-16px; left:-8px; padding:14px 18px; }
  .intro-badge strong { font-size:24px; }
  .intro-badge span { font-size:9px; }
  .footer-brand p { font-size:13px; line-height:1.6; }
  .footer-links h5, .footer-contact-col h5 { font-size:15px; margin-bottom:12px; }
  .footer-links ul li a { font-size:13.5px; }
  .footer-contact-item { font-size:13px; }
  .footer-bottom { padding:16px 0; font-size:11.5px; }
  .spec-table .spec-row { flex-direction:column; gap:4px; font-size:13px; padding:8px 12px; }
  .product-detail-grid { gap:20px; }
  .product-detail-grid h3 { font-size:clamp(18px,3vw,24px); }
  .product-detail-grid p { font-size:14px; }
  .mobile-menu { width:280px; }
}

/* Very Small Screens */
@media (max-width:380px) {
  .container { padding:0 12px; }
  .navbar-logo { gap:3px !important; }
  .navbar-logo img { height:18px !important; }
  .navbar-logo span { height:14px !important; width:1px !important; }
  .hero-content h1 { font-size:22px; }
  .hero-content p { font-size:13px; }
  .section { padding:32px 0; }
  .section-header h2 { font-size:19px; }
  .page-hero-content h1 { font-size:20px; }
  .products-grid, .products-grid-full { grid-template-columns:1fr; }
  .product-card .img-wrap { height:160px; }
  .product-card .card-body { padding:14px 16px; }
  .product-card .card-body h5 { font-size:14px; }
  .tab-btn { font-size:11px; padding:6px 10px; }
  .stat-item { padding:18px 10px; }
  .cta-banner h2 { font-size:18px; }
  .btn-primary, .btn-outline, .btn-hero-primary { font-size:12.5px; padding:10px 20px; }
}
