/* ============================================================
   MICO COOLING CORP — Website Design System
   Colors: #03125e (navy), #9797b4 (mid), #e2e2f0 (light)
   Accent: #1a56db (electric blue CTA)
   Dark mode only
   ============================================================ */

/* ── Google Fonts loaded via <link> in HTML head for better performance ── */

/* ── CSS Variables ── */
:root {
  /* Brand */
  --navy:         #03125e;
  --navy-mid:     #1a2d7a;
  --mid:          #9797b4;
  --light:        #e2e2f0;
  --accent:       #1a56db;
  --accent-hover: #1440b0;
  --accent-light: rgba(26,86,219,0.18);

  /* Surfaces */
  --bg:          #06091a;
  --bg-alt:      #0c1232;
  --bg-section:  #0e163d;
  --bg-dark:     #03125e;
  --surface:     #0c1232;
  --surface-mid: #111840;

  /* Text */
  --text:        #eef0ff;
  --text-sub:    #a8aace;
  --text-muted:  #6a6e9a;
  --text-inv:    #ffffff;
  --text-inv-sub: rgba(255,255,255,0.75);

  /* Borders */
  --border:      rgba(151,151,180,0.15);
  --border-mid:  rgba(151,151,180,0.25);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,8,0.3);
  --shadow:      0 4px 16px rgba(0,0,8,0.4);
  --shadow-lg:   0 12px 40px rgba(0,0,8,0.5);
  --shadow-xl:   0 24px 64px rgba(0,0,8,0.6);

  /* Radius */
  --r-sm:  6px;
  --r:     10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 999px;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Nav */
  --nav-h: 84px;

  /* Transitions */
  --t-fast:  0.15s ease;
  --t:       0.25s ease;
  --t-slow:  0.45s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: background var(--t), color var(--t);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
.display-1 { font-size: clamp(52px, 7vw, 96px);  font-weight: 900; line-height: 1.0;  letter-spacing: -0.04em; }
.display-2 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -0.035em; }
.h1        { font-size: clamp(32px, 4vw, 56px);   font-weight: 800; line-height: 1.1;  letter-spacing: -0.03em; }
.h2        { font-size: clamp(26px, 3vw, 42px);   font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
.h3        { font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; line-height: 1.2;  letter-spacing: -0.02em; }
.h4        { font-size: 18px; font-weight: 600; line-height: 1.3; }
.h5        { font-size: 15px; font-weight: 600; line-height: 1.4; letter-spacing: 0.02em; }
.lead      { font-size: clamp(17px, 1.6vw, 21px); font-weight: 400; line-height: 1.65; }
.body      { font-size: 16px; line-height: 1.7; }
.small     { font-size: 14px; line-height: 1.5; }
.label     { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.mono      { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 14px; }

/* ── Layout ── */
.container      { max-width: 1160px; margin: 0 auto; padding: 0 var(--sp-6); }
.container-sm   { max-width: 760px;  margin: 0 auto; padding: 0 var(--sp-6); }
.container-lg   { max-width: 1360px; margin: 0 auto; padding: 0 var(--sp-6); }
.section        { padding: var(--sp-24) 0; }
.section-sm     { padding: var(--sp-16) 0; }
.section-lg     { padding: var(--sp-32) 0; }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
.nav.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow);
  height: 60px;
}
.nav.scrolled.nav--dark-bg {
  background: rgba(3,18,94,0.97);
  backdrop-filter: blur(20px);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: 0 var(--sp-6);
  max-width: 1360px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-full);
  color: var(--text-inv);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.12); }
.nav-links a.active { background: rgba(255,255,255,0.15); }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover { background: var(--bg-alt); }
.nav.scrolled .nav-links a.active { background: var(--bg-alt); color: var(--accent); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-full);
  color: var(--text-inv);
  transition: background var(--t-fast);
  cursor: pointer;
}
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav.scrolled .nav-dropdown-toggle { color: var(--text); }
.nav-dropdown-toggle:hover { background: rgba(255,255,255,0.12); }
.nav.scrolled .nav-dropdown-toggle:hover { background: var(--bg-alt); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  padding-top: 10px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  transform: translateX(-50%) translateY(-4px);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text) !important;
  border-radius: var(--r);
  background: transparent !important;
  transition: background var(--t-fast);
}
.nav-dropdown-menu a:hover { background: var(--bg-alt) !important; color: var(--accent) !important; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--r-full);
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  border-radius: var(--r);
  color: var(--text-inv);
  transition: background var(--t-fast);
}
.nav.scrolled .nav-hamburger { color: var(--text); }
.nav-hamburger:hover { background: rgba(255,255,255,0.15); }
.nav.scrolled .nav-hamburger:hover { background: var(--bg-alt); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: calc(var(--nav-h) + var(--sp-6)) var(--sp-6) var(--sp-8);
  flex-direction: column;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a, .nav-mobile button {
  display: block;
  font-size: 22px;
  font-weight: 700;
  padding: var(--sp-4) 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: none;
  text-align: left;
  width: 100%;
  letter-spacing: -0.02em;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .mobile-sub {
  padding-left: var(--sp-4);
}
.nav-mobile .mobile-sub a {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-sub);
}
.nav-mobile-cta {
  margin-top: var(--sp-6);
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r-full);
  border-bottom: none !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050b14;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.40;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,11,20,0.82) 0%,
    rgba(5,11,20,0.55) 50%,
    rgba(5,11,20,0.30) 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,197,245,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,197,245,1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-20);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-sm);
  background: rgba(26,86,219,0.2);
  color: #94c5f5;
}
.hero h1 {
  color: #fff;
  margin-bottom: var(--sp-6);
}
.hero h1 em {
  font-style: normal;
  color: #fff;
  opacity: 0.55;
}
.hero-lead {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: var(--sp-10);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,86,219,0.35); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; }

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-pad { padding: var(--sp-8); }
.card-pad-sm { padding: var(--sp-6); }

/* Service card */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--navy-mid));
  opacity: 0;
  transition: opacity var(--t);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--accent); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  transition: background var(--t);
}
.service-icon svg { width: 26px; height: 26px; color: var(--accent); }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-icon svg { color: #fff; }

/* Stats */
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stats-strip {
  background: var(--navy);
  padding: var(--sp-16) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  text-align: center;
}
.stats-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* Testimonial */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-8);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
}
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: var(--sp-4); }
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sub);
  margin-bottom: var(--sp-6);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 14px; font-weight: 700; color: var(--text); }
.author-title { font-size: 12px; color: var(--text-muted); }

/* Team card */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-section), var(--light));
  display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.team-info { padding: var(--sp-6); }
.team-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── BRANDS MARQUEE ── */
.marquee-section {
  padding: var(--sp-12) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: var(--sp-12);
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.marquee-item:hover { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION DARK ── */
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-dark .section-label { color: rgba(255,255,255,0.5); }
.section-dark .section-label::before { background: rgba(255,255,255,0.5); }


/* ── BLOG ── */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: block;
}
.blog-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb-placeholder svg { width: 48px; height: 48px; color: rgba(255,255,255,0.2); }
.blog-body { padding: var(--sp-6); }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.blog-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--sp-3);
}
.blog-excerpt {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 12px;
  color: var(--text-muted);
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-meta svg { width: 13px; height: 13px; }

/* Blog post */
.post-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
}
.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-sub);
}
.post-content h2 { color: var(--text); margin: var(--sp-10) 0 var(--sp-4); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.post-content h3 { color: var(--text); margin: var(--sp-8) 0 var(--sp-3); font-size: 22px; font-weight: 700; }
.post-content p { margin-bottom: var(--sp-5); }
.post-content ul, .post-content ol { margin: var(--sp-4) 0 var(--sp-5) var(--sp-6); }
.post-content li { margin-bottom: var(--sp-2); }
.post-content img { border-radius: var(--r-lg); margin: var(--sp-8) 0; width: 100%; }
.post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: var(--sp-4) var(--sp-6);
  background: var(--bg-alt);
  border-radius: 0 var(--r) var(--r) 0;
  margin: var(--sp-8) 0;
  font-style: italic;
  color: var(--text);
}

/* ── CONTACT ── */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
}
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 580px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand .footer-logo { margin-bottom: var(--sp-5); }
.footer-brand .footer-logo img { height: 36px; width: auto; }
.footer-tagline { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: var(--sp-6); }
.footer-socials { display: flex; gap: var(--sp-3); }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--t-fast);
}
.footer-social:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: var(--sp-5); }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── CONTACT INFO BLOCK ── */
.info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; color: var(--accent); }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.info-value { font-size: 15px; font-weight: 600; color: var(--text); }

/* ── MAP ── */
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── BADGE / PILL ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
}
.badge-blue  { background: var(--accent-light); color: var(--accent); }
.badge-navy  { background: var(--navy); color: #fff; }
.badge-green { background: #dcfce7; color: #166534; }

/* ── MWBE BANNER ── */
.mwbe-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d7a 100%);
  padding: var(--sp-12) 0;
}
.mwbe-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.mwbe-badge {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  border: 2px solid rgba(255,255,255,0.2);
}

/* ── SEARCH ── */
.search-bar {
  position: relative;
  max-width: 480px;
}
.search-input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  font-size: 15px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-full);
  color: var(--text);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,86,219,0.12); }
.search-btn {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--t-fast);
}
.search-btn:hover { background: var(--accent-hover); }
.search-btn svg { width: 15px; height: 15px; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--t-fast); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── ADMIN STYLES ── */
.admin-bar {
  background: #1e1e2e;
  color: #fff;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-body {
  max-width: 900px;
  margin: 48px auto;
  padding: 0 24px;
}
.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  margin-bottom: var(--sp-6);
}
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: var(--sp-3);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r) var(--r) 0 0;
}
.toolbar-btn {
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-sm);
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--t-fast);
}
.toolbar-btn:hover { background: var(--border); }
.editor-area {
  min-height: 320px;
  padding: var(--sp-6);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  outline: none;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-sub { color: var(--text-sub); }
.text-white { color: #fff; }
.text-navy { color: var(--navy); }
.fw-900 { font-weight: 900; }
.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-dropdown, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .container, .container-sm, .container-lg { padding: 0 var(--sp-5); }
  .contact-form-card { padding: var(--sp-6); }
  .stats-divider { display: none; }
  .mwbe-inner { flex-direction: column; text-align: center; }
  .hero-scroll { display: none; }
  /* Hero mobile */
  .display-1 { font-size: clamp(34px, 9vw, 52px); }
  .hero h1 br { display: none; }
  .hero-bg { background-position: center top; }
  .hero-bg-overlay { background: linear-gradient(to bottom, rgba(5,11,20,0.80) 0%, rgba(5,11,20,0.60) 50%, rgba(5,11,20,0.40) 100%); }
  .hero-content { padding-top: calc(var(--nav-h) + var(--sp-8)); padding-bottom: var(--sp-12); }
  /* Reduce section spacing */
  .section { padding: var(--sp-16) 0; }
  /* Careers mobile grid */
  .careers-role-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .display-1 { font-size: 32px; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { padding: 14px 28px; font-size: 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
