/* ============================================
   MILLENNIUM TECH SOLUTIONS — style.css v3
   Clean · Modern · Professional · Corporate
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0a1628;
  --blue:    #1a56db;
  --blue-lt: #3b82f6;
  --accent:  #0ea5e9;
  --slate:   #475569;
  --muted:   #64748b;
  --light:   #f8fafc;
  --border:  #e2e8f0;
  --white:   #ffffff;
  --gold:    #f59e0b;
  --radius:  8px;
  --shadow:  0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
  --font:    'Manrope', system-ui, sans-serif;
  --font-h:  'Manrope', 'system-ui', sans-serif;
  --trans:   0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 200px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  color: white;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-h); font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.logo-sub  { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-logo-img { height: 200px; width: auto; max-width: 500px; display: block; object-fit: contain; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: #eff6ff; }

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: #1d4ed8 !important; }
.nav-cta.active { background: var(--blue) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--trans), transform var(--trans);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  color: var(--slate);
  border-radius: 6px;
}
.dropdown-menu a:hover { background: #f1f5f9; color: var(--blue); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,.3); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: #eff6ff; transform: translateY(-1px); }

.btn-dark {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-dark:hover { background: #0f2040; transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.btn-gold:hover { background: #d97706; transform: translateY(-1px); }

/* ---- LABELS / TAGS ---- */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.divider {
  width: 48px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 1rem auto;
}

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

/* ---- HERO ---- */
.hero-company-name {
  font-family: var(--font-h);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
.hero {
  padding: 230px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid #bfdbfe;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; color: #22c55e; }

.hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-content h1 .accent { color: var(--blue); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-num span { color: var(--blue); }
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}
.hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hib-icon { font-size: 1.5rem; }
.hib-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.hib-text span { font-size: 0.75rem; color: var(--muted); }

/* ---- LOGOS STRIP ---- */
.logos-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--light);
}
.logos-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  transition: color var(--trans);
}
.logo-item:hover { color: var(--slate); }

/* ---- SECTIONS ---- */
.section { padding: 96px 0; }
.section-alt { background: var(--light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-header p { color: var(--slate); font-size: 1rem; line-height: 1.7; }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #bfdbfe;
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.65; margin-bottom: 1.25rem; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--blue); }
.service-link:hover { text-decoration: underline; }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-image { position: relative; }
.why-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26,86,219,.35);
}
.why-badge-num { font-family: var(--font-h); font-size: 2rem; font-weight: 800; line-height: 1; }
.why-badge-text { font-size: 0.75rem; font-weight: 600; opacity: 0.85; margin-top: 0.25rem; }

.why-content h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.why-content > p { color: var(--slate); margin-bottom: 2rem; line-height: 1.7; }

.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item-icon {
  width: 40px; height: 40px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.why-item-text p { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }

/* ---- INDUSTRIES ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.industry-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.industry-icon {
  font-size: 1.75rem;
  width: 48px; height: 48px;
  background: #f0f7ff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.industry-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.industry-card p { font-size: 0.82rem; color: var(--muted); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-banner .label { color: #60a5fa; }
.cta-banner h2 {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-banner p { color: #94a3b8; font-size: 1rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline { border-color: #475569; color: #94a3b8; }
.cta-banner .btn-outline:hover { border-color: white; color: white; background: transparent; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 130px 0 60px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 700px;
}
.page-hero p { color: var(--slate); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem; top: 8px;
  width: 12px; height: 12px;
  background: var(--blue);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-year {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.timeline-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.88rem; color: var(--slate); line-height: 1.65; }

/* ---- VALUES ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-num {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ---- CARDS (generic) ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ---- HARDWARE PAGE ---- */
.hw-hero-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-lg);
}
.hw-hero-img img { width: 100%; height: 340px; object-fit: cover; }

.product-section { margin-bottom: 5rem; }
.product-section > div:first-child { margin-bottom: 2rem; }
.product-section h2 {
  font-family: var(--font-h);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.product-section > div:first-child p { color: var(--slate); max-width: 640px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #bfdbfe; }
.product-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.product-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.product-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.brand-tag {
  background: white;
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  transition: border-color var(--trans), color var(--trans);
}
.brand-tag:hover { border-color: var(--blue); color: var(--blue); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--blue);
  color: white;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(26,86,219,.3);
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ---- SOFTWARE PAGE ---- */
.solution-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.solution-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.solution-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.solution-header h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.sw-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}
.sw-hero-split p { color: var(--slate); line-height: 1.7; font-size: 0.95rem; }
.sw-img img { width: 100%; border-radius: 10px; object-fit: cover; height: 280px; box-shadow: var(--shadow); }

.feature-list { padding-left: 0; }
.feature-list li {
  font-size: 0.875rem;
  color: var(--slate);
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3, .contact-form-wrap h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p { color: var(--slate); font-size: 0.9rem; margin-bottom: 1.75rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-of-type { border-top: 1px solid var(--border); margin-top: 1.5rem; }
.ci-icon {
  width: 40px; height: 40px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-text { display: flex; flex-direction: column; gap: 0.2rem; }
.ci-text strong { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.ci-text span { font-size: 0.9rem; color: var(--slate); }
.ci-text a { color: var(--blue); }
.ci-text a:hover { text-decoration: underline; }

.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  background: #eff6ff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid #bfdbfe;
}

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--navy);
  background: white;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-success { display: none; padding: 1.5rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); text-align: center; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-sub { color: #64748b; }
.footer-brand p { font-size: 0.875rem; color: #64748b; line-height: 1.65; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: 0.5rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), color var(--trans);
}
.social-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }

.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: white; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: #64748b; transition: color var(--trans); }
.footer-links a:hover { color: #94a3b8; }
.footer-links li { font-size: 0.875rem; color: #64748b; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: #475569; }
.cert-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cert-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-image { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.25rem; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: #f8fafc; margin-top: 0.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .sw-hero-split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 110px 0 60px; }
  .industries-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

.page-hero {
    margin-top: 40px;
}
