/* ========================
   CSS VARIABLES & RESET
======================== */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3260;
  --navy-border: #1e3a5f;
  --gold: #f0a500;
  --gold-light: #ffc107;
  --gold-dim: #c4870a;
  --gold-pale: rgba(240,165,0,0.08);
  --white: #ffffff;
  --off-white: #f4f6fb;
  --gray-light: #e8ecf4;
  --gray: #8fa0b8;
  --gray-dark: #4a5e78;
  --text-dark: #0d1f3c;
  --text-body: #3a4f6a;
  --shadow-card: 0 4px 30px rgba(10,22,40,0.12);
  --shadow-hover: 0 12px 50px rgba(10,22,40,0.22);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ========================
   UTILITY
======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 96px 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-offwhite { background: var(--off-white); }
.gold { color: var(--gold); }
.text-center { text-align: center; }

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label-tag::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 580px;
}
.section-sub.light { color: var(--gray); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,165,0,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* chevron icon */
.chevron::after {
  content: '→';
  font-size: 15px;
}

/* ========================
   TOPBAR
======================== */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-border);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
}
.topbar-social { text-decoration: none; transition: color 0.2s; }
.topbar-social:hover { color: var(--gold); }
.topbar-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.topbar-divider { width: 1px; height: 16px; background: var(--navy-border); }

/* ========================
   NAV
======================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,22,40,0.1);
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; color: var(--gold); }
.logo-text-group { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 1px;
}
.logo-name span { color: var(--gold); }
.logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-pale); }

.nav-link .arrow {
  font-size: 10px;
  transition: transform 0.2s;
}
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(10,22,40,0.18);
  border-radius: 8px;
  border-top: 3px solid var(--gold);
  min-width: 280px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
}
.dropdown-item:hover { background: var(--off-white); }
.dd-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dd-icon svg { width: 18px; height: 18px; color: var(--gold); }
.dd-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.dd-desc { font-size: 11px; color: var(--gray-dark); line-height: 1.4; }

.nav-cta {
  margin-left: 16px;
  font-size: 12px !important;
  padding: 10px 22px !important;
}

/* ========================
   HERO
======================== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(240,165,0,0.07) 0%, transparent 60%),
    linear-gradient(135deg, rgba(17,34,64,0.8) 0%, rgba(10,22,40,1) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Animated gear decorations */
.hero-deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 440px; height: 440px;
  opacity: 0.07;
}

.hero-deco-inner {
  position: absolute;
  right: 160px; top: 50%;
  transform: translateY(-50%);
  width: 180px; height: 180px;
  opacity: 0.12;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 90vh;
}

.hero-text { padding: 80px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 32px;
  animation: fade-in-up 0.6s ease both;
}
.hero-badge-dot {
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-dot svg { width: 12px; height: 12px; color: var(--navy); }
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fade-in-up 0.6s 0.1s ease both;
}
.hero-title .accent { color: var(--gold); }

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
  animation: fade-in-up 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.6s 0.3s ease both;
}

.hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--navy-border);
  animation: fade-in-up 0.6s 0.4s ease both;
}

.proof-item { display: flex; flex-direction: column; }
.proof-num {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Hero visual panel */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fade-in-up 0.6s 0.2s ease both;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(240,165,0,0.3);
  transform: translateX(6px);
}

.hc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.hc-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-icon svg { width: 22px; height: 22px; color: var(--gold); }
.hc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.hc-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }
.hc-body {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.hero-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-mini-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 20px;
  transition: var(--transition);
}
.hero-mini-card:hover {
  background: rgba(240,165,0,0.06);
  border-color: rgba(240,165,0,0.2);
}
.hmc-label { font-size: 11px; color: var(--gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.hmc-value { font-size: 22px; font-weight: 800; color: var(--gold); font-family: 'Montserrat Alternates', sans-serif; }
.hmc-unit { font-size: 12px; color: var(--gray); font-weight: 500; margin-top: 2px; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================
   BRANDS STRIP
======================== */
.brands-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 40px 0;
}
.brands-label-row {
  text-align: center;
  margin-bottom: 28px;
}
.brand-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(#4a5e78 );
}
.brands-inner {
  display: grid;
  grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  align-items: center;
  justify-items: center;
}
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--gray-light);
  width: 100%;
  transition: var(--transition);
  background: var(--white);
}
.brand-logo-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.brand-logo-item img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(20%);
  transition: var(--transition);
}

.brand-logo-item:hover img {
  filter: grayscale(0%);
}

/* ========================
   SERVICES
======================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 44px 40px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.sc-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.sc-icon svg { width: 28px; height: 28px; color: var(--gold); }

.sc-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.sc-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.sc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.sc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
}
.sc-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.sc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.sc-link:hover { color: var(--gold); gap: 10px; }

/* services header + split layout */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 0;
}

/* ========================
   PRODUCTS
======================== */
.products-section { background: var(--navy); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(240,165,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.pc-visual {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(17,34,64,0.9), rgba(26,50,96,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.pc-visual svg {
  width: 64px; height: 64px;
  color: var(--gold);
  opacity: 0.6;
  transition: var(--transition);
}
.product-card:hover .pc-visual svg { opacity: 1; transform: scale(1.1); }
.pc-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(240,165,0,0.08), transparent 70%);
}

.pc-body { padding: 20px; }
.pc-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.pc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pc-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ========================
   SECTORS
======================== */
.sectors-tabs {
  margin-top: 56px;
}
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 48px;
}
.tab-btn {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gray-dark);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.tab-btn.active { color: var(--navy); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.tab-text .section-sub { max-width: 100%; }

.sector-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.sector-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.sector-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.sector-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sv-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-border);
}
.sv-stat:last-child { border-bottom: none; padding-bottom: 0; }
.sv-num {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.sv-label { font-size: 13px; color: var(--gray); font-weight: 500; }

/* ========================
   WHY US
======================== */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.why-card {
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.wc-num {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
  /* We'll set opacity low and color bright */
  color: rgba(240,165,0,0.15);
  -webkit-text-stroke: 1px rgba(240,165,0,0.4);
}
.wc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.wc-desc { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ========================
   ABOUT
======================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.about-visual-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 40px solid rgba(240,165,0,0.08);
}
.about-big-text {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.about-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.af-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.af-icon svg { width: 20px; height: 20px; color: var(--gold); }
.af-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.af-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}
.about-stat-box {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: var(--shadow-hover);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.asb-num {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.asb-label { font-size: 11px; color: var(--gray-dark); font-weight: 600; letter-spacing: 0.5px; margin-top: 4px; }


.about-text .label-tag { display: flex; }
.about-body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin: 20px 0 32px;
}
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.cert-badge svg { width: 14px; height: 14px; color: var(--gold); }

/* ========================
   CONTACT
======================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-sub { margin-top: 16px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
}
.ci-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 22px; height: 22px; color: var(--gold); }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 4px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--text-dark); }

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--gray-light);
}
.form-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-sub { font-size: 14px; color: var(--gray-dark); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.06);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; cursor: pointer; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,22,40,0.3);
}

/* ========================
   FOOTER
======================== */
footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 72px 0 56px;
}

.footer-logo-text {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-logo-text span { color: var(--gold); }
.footer-tagline { font-size: 12px; color: var(--gray); margin-top: 2px; letter-spacing: 0.5px; }
.footer-about {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin: 20px 0 28px;
  max-width: 320px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '—'; font-size: 10px; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--gray-dark);
}
.footer-copy span { color: var(--gold); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { font-size: 13px; color: var(--gray-dark); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ========================
   WHATSAPP FLOAT
======================== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 22px 14px 14px;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-wa 2.5s ease infinite;
}
.wa-float:hover {
  background: #1ebe5c;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7); }
}

@media (max-width: 768px) {
  .wa-float {
    padding: 14px;
    bottom: 20px;
    right: 20px;
  }
  .wa-float span {
    display: none;
  }
}
/* ========================
   SCROLL ANIMATIONS
======================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   CONTACT BIG CARDS
======================== */
.contact-big-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.contact-big-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(240,165,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cbc-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.cbc-icon svg { width: 24px; height: 24px; color: var(--gold); }
.cbc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.cbc-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.cbc-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .contact-cards-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .contact-cards-grid { grid-template-columns: 1fr !important; }
}

/* ========================
   MOBILE MENU TOGGLE
======================== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none !important;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 20px 40px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 60px rgba(10,22,40,0.2);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
@media (max-width: 768px) {
  .mobile-drawer {
    display: flex !important;
    transform: translateX(-100%);
  }
  .mobile-drawer.open {
    transform: translateX(0);
  }
}
.mobile-drawer a, .mobile-drawer-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 8px;
  transition: var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}
.mobile-drawer a:hover,
.mobile-drawer-btn:hover { background: var(--off-white); color: var(--navy); }
.mobile-drawer a.gold-link {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  margin-top: 12px;
  justify-content: center;
  border-radius: 8px;
}
.mobile-drawer a.gold-link:hover { background: var(--gold-light); }
.mobile-sub-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  margin: 4px 0 4px 16px;
}
.mobile-sub-menu.open { display: flex; }
.mobile-sub-menu a {
  font-size: 13px;
  color: var(--text-body);
  padding: 10px 12px;
}
.mobile-divider {
  height: 1px;
  background: var(--gray-light);
  margin: 8px 0;
}
.mobile-contact-strip {
  margin-top: 16px;
  padding: 16px;
  background: var(--off-white);
  border-radius: 10px;
}
.mobile-contact-strip p {
  font-size: 12px;
  color: var(--gray-dark);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-contact-strip a {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding: 0;
  background: none;
  display: block;
}

/* ========================
   RESPONSIVE — TABLET (≤1100px)
======================== */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-text { padding: 100px 0 60px; max-width: 680px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-layout { gap: 48px; }
  .tab-panel.active { gap: 40px; }
}

/* ========================
   RESPONSIVE — MOBILE LANDSCAPE / SMALL TABLET (≤900px)
======================== */
@media (max-width: 900px) {
  .services-header { grid-template-columns: 1fr; gap: 8px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .whyus-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { order: 2; }
  .about-text { order: 1; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .sector-visual { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tabs-nav { flex-wrap: wrap; }
  .tab-btn { padding: 12px 20px; font-size: 13px; }
}

/* ========================
   RESPONSIVE — MOBILE (≤768px)
======================== */
@media (max-width: 768px) {
  /* Base */
  .container { padding: 0 16px; }
  section { padding: 56px 0; }
  .section-pad { padding: 56px 0; }

  /* Topbar */
  .topbar { display: none; }

  /* Navbar */
  .navbar-inner { padding: 0 16px; height: 64px; }
  .nav-menu { display: none !important; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  /* Mobile drawer visible — controlled via JS + CSS above */

  /* Hero */
  .hero { min-height: auto; }
  .hero-text { padding: 80px 0 48px; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); line-height: 1.05; }
  .hero-sub { font-size: 15px; }
  .hero-badge span { font-size: 10px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding-top: 28px;
    margin-top: 40px;
  }
  .proof-num { font-size: 26px; }

  /* Brands */
  .brands-strip { padding: 28px 0; }
  .brands-inner { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .brand-logo-item img { height: 32px; }
  .brand-logo-item { padding: 12px 10px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  /* Products */
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .products-header .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pc-visual svg { width: 48px; height: 48px; }
  .pc-body { padding: 14px; }
  .pc-name { font-size: 13px; }
  .pc-desc { font-size: 11px; }

  /* Sectors */
  .tabs-nav { flex-direction: column; border-bottom: none; gap: 4px; margin-bottom: 28px; }
  .tab-btn {
    width: 100%;
    text-align: left;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 12px 16px;
  }
  .tab-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
  .tab-btn::after { display: none; }
  .tab-panel.active { grid-template-columns: 1fr; gap: 28px; }
  .sector-visual { padding: 28px 24px; }
  .sv-num { font-size: 28px; }
  .sector-item { padding: 12px 14px; font-size: 13px; }

  /* Why us */
  .whyus-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px; }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-visual-main { padding: 36px 28px; }
  .about-big-text { font-size: 56px; }
  .about-stats-row { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: -20px; }
  .about-stat-box { padding: 16px 12px; }
  .asb-num { font-size: 22px; }
  .asb-label { font-size: 10px; }
  .cert-badges { gap: 8px; }
  .cert-badge { font-size: 11px; padding: 6px 12px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }

  /* WhatsApp float — icon only on mobile */
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-float span { display: none; }
  .wa-float svg { margin: 0; }
}

/* ========================
   RESPONSIVE — SMALL MOBILE (≤420px)
======================== */
@media (max-width: 420px) {
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 16px; }
  .proof-num { font-size: 22px; }
  .about-stats-row { grid-template-columns: repeat(3, 1fr); }
  .hero-badge span { letter-spacing: 0.5px; font-size: 9px; }
  .contact-form { padding: 24px 16px; }
  .sc-icon { width: 48px; height: 48px; border-radius: 10px; }
  .sc-icon svg { width: 22px; height: 22px; }
  .brands-inner { grid-template-columns: repeat(2, 1fr); }
}