/* ================================================
   MADUMBE IT SOLUTIONS — PROFESSIONAL STYLESHEET
   ================================================ */

:root {
  --primary: #1E5E9E;
  --primary-dark: #153F72;
  --primary-light: #EAF3FB;
  --cyan: #5BA3D8;
  --accent: #8A929E;
  --dark: #050A12;
  --dark-2: #0B1420;
  --dark-3: #132A44;
  --surface: #111827;
  --text: #243244;
  --text-muted: #657386;
  --border: #DDE5EE;
  --border-dark: rgba(255,255,255,0.08);
  --bg: #F6F8FB;
  --white: #FFFFFF;
  --green: #10B981;
  --amber: #F59E0B;
  --whatsapp: #25D366;
  --radius: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 28px rgba(15,35,60,0.08);
  --shadow-lg: 0 18px 48px rgba(15,35,60,0.14);
  --shadow-blue: 0 8px 28px rgba(30,94,158,0.22);
  --t: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CONTAINER ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after { opacity: 0.07; }

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(30,94,158,0.32); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.3); }

.btn-ghost-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-nav {
  background: var(--primary-dark);
  color: white;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: var(--shadow-blue);
}
.btn-nav:hover { background: #0E2C50; transform: translateY(-1px); }

.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION SYSTEM ===== */
.section { padding: 100px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-tag { display: inline-flex; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: all var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 58px; }

.logo { display: flex; align-items: center; }
.logo-mark { width: 194px; height: 50px; flex-shrink: 0; }
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--text-muted);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.active span { background: white; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  background:
    radial-gradient(circle at 78% 28%, rgba(91,163,216,0.22), transparent 34%),
    linear-gradient(112deg, rgba(5,10,18,1) 0%, rgba(7,17,31,0.99) 52%, rgba(12,42,74,0.96) 100%);
  display: flex;
  align-items: center;
  padding: 118px 0 64px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,163,216,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,163,216,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-1 { width: 600px; height: 600px; background: rgba(30,94,158,0.2); top: -150px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: rgba(91,163,216,0.14); bottom: -100px; left: 20%; }
.glow-3 { width: 300px; height: 300px; background: rgba(255,255,255,0.06); top: 30%; left: -50px; }

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  gap: 68px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,94,158,0.18);
  border: 1px solid rgba(91,163,216,0.42);
  color: #9BC7EA;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-left h1 {
  font-size: clamp(2.65rem, 4.25vw, 4.05rem);
  font-weight: 900;
  color: white;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 760px;
}
.gradient-text {
  background: linear-gradient(90deg, #9BC7EA, #5BA3D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 34px;
  line-height: 1.75;
  max-width: 610px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: nowrap; margin-bottom: 20px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.64);
  font-size: 0.8rem;
  font-weight: 650;
}
.hero-proof span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-val {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.stat-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: white;
}
.stat-suffix {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; align-self: center; }

/* HERO RIGHT — Dashboard Card */
.hero-right { position: relative; }
.ops-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  overflow: hidden;
}
.ops-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}
.ops-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.ops-kicker {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ops-header strong {
  display: block;
  color: white;
  font-size: 1.15rem;
  line-height: 1.25;
}
.ops-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.72);
  background: rgba(16,185,129,0.11);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}
.ops-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.ops-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.ops-metrics div {
  padding: 18px 16px;
  background: rgba(255,255,255,0.045);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ops-metrics div:last-child { border-right: none; }
.ops-metrics strong {
  display: block;
  color: white;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 7px;
}
.ops-metrics span,
.ops-row span,
.ops-footer span {
  color: rgba(255,255,255,0.48);
  font-size: 0.78rem;
}
.ops-section {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.ops-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ops-section-title span {
  color: rgba(255,255,255,0.52);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ops-section-title strong {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
}
.ops-list { display: flex; flex-direction: column; }
.ops-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ops-row:last-child { border-bottom: none; }
.ops-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.ops-dot.green { background: var(--green); }
.ops-dot.blue { background: var(--cyan); }
.ops-dot.amber { background: var(--amber); }
.ops-row strong {
  display: block;
  color: white;
  font-size: 0.9rem;
  line-height: 1.2;
  margin-bottom: 3px;
}
.ops-row em {
  justify-self: end;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 750;
}
.ops-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px;
  background: rgba(91,163,216,0.1);
  border: 1px solid rgba(91,163,216,0.18);
  border-radius: 8px;
}
.ops-footer strong {
  display: block;
  color: white;
  font-size: 0.86rem;
  margin-top: 2px;
}
.ops-footer svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}
.hero-card-stack { position: relative; }

.hcard {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hcard-main {
  padding: 28px;
  position: relative;
  z-index: 2;
}
.hcard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.hcard-dot { width: 8px; height: 8px; border-radius: 50%; }
.hcard-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }

.hcard-metric { margin-bottom: 16px; }
.metric-val { font-size: 2.8rem; font-weight: 900; color: white; letter-spacing: -0.04em; }
.metric-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

.hcard-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  margin-bottom: 24px;
  overflow: hidden;
}
.hcard-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  border-radius: 100px;
}

.hcard-services { display: flex; flex-direction: column; gap: 10px; }
.hs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.hs-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hs-dot.green { background: var(--green); }
.hs-dot.amber { background: var(--amber); }

.hcard-float {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  position: absolute;
  animation: float 4s ease-in-out infinite;
}
.hcard-float strong { display: block; font-size: 0.85rem; font-weight: 700; color: white; }
.hcard-float span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.hf-icon {
  width: 34px;
  height: 34px;
  color: var(--cyan);
  background: rgba(91,163,216,0.12);
  border: 1px solid rgba(91,163,216,0.22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hf-icon svg { width: 18px; height: 18px; }

.hcard-f1 { right: 0; top: -24px; animation-delay: 0s; }
.hcard-f2 { left: 0; bottom: -24px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.ticker-bar::before { left: 0; background: linear-gradient(to right, var(--dark-2), transparent); }
.ticker-bar::after { right: 0; background: linear-gradient(to left, var(--dark-2), transparent); }

.ticker-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticker-dot { color: var(--primary) !important; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  opacity: 0;
  transition: opacity var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

.service-card.service-featured {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-color: rgba(91,163,216,0.28);
  color: white;
}
.service-card.service-featured::before { opacity: 1; }
.service-card.service-featured h3 { color: white; }
.service-card.service-featured p { color: rgba(255,255,255,0.6); }
.service-card.service-featured .sc-list li { color: rgba(255,255,255,0.7); }
.service-card.service-featured .sc-number { color: rgba(255,255,255,0.1); }
.service-card.service-featured .sc-icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.service-card.service-featured .sc-icon svg { stroke: var(--cyan); }
.service-card.service-featured .sc-link { color: var(--cyan); }

.sc-featured-label {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sc-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: -8px;
  letter-spacing: -0.05em;
}

.sc-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border: 1px solid rgba(30,94,158,0.16);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sc-icon svg { width: 24px; height: 24px; stroke: var(--primary); }

.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }

.sc-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.sc-list li {
  font-size: 0.83rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.sc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.sc-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.service-card.service-featured .sc-footer { border-color: rgba(255,255,255,0.1); }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--t), color var(--t);
}
.sc-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-us { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left .section-tag { display: inline-flex; }
.why-left h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.why-left > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; line-height: 1.75; }

.why-pillars { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.pillar { display: flex; gap: 18px; align-items: flex-start; }
.pillar-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 20px; height: 20px; stroke: var(--primary); }
.pillar-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pillar-content p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

/* WHY RIGHT — Visual */
.why-right { position: relative; height: 500px; }
.why-visual { position: relative; width: 100%; height: 100%; }

.wv-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wv-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(30,94,158,0.22);
  animation: spin 20s linear infinite;
}
.wv-c1 { width: 280px; height: 280px; animation-duration: 30s; }
.wv-c2 { width: 380px; height: 380px; animation-direction: reverse; animation-duration: 40s; }
@keyframes spin { to { transform: rotate(360deg); } }

.wv-core {
  width: 120px; height: 120px;
  background: white;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 2;
  position: relative;
}
.wv-core span { font-size: 0.72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; }

.wv-badge {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.wv-badge strong { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.wvb-icon { font-size: 1.2rem; }
.wvb-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wvb-icon svg { width: 20px; height: 20px; }
.wvb-1 { top: 40px; left: 20px; }
.wvb-2 { top: 40px; right: 20px; }
.wvb-3 { bottom: 80px; left: 10px; }
.wvb-4 { bottom: 80px; right: 10px; }

.wv-stat {
  position: absolute;
  text-align: center;
}
.wv-stat .stat-val { justify-content: center; }
.wv-stat strong { font-size: 2rem; font-weight: 900; color: var(--primary); letter-spacing: -0.04em; }
.wv-stat span { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.wv-stat p { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.ws-1 { top: 160px; left: -20px; }
.ws-2 { top: 160px; right: -20px; }

/* ===== PARTNERS ===== */
.partners {
  background: var(--bg);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-header {
  text-align: center;
  margin-bottom: 40px;
}
.partners-header p { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.partner-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 36px;
  transition: all var(--t);
  cursor: default;
}
.partner-item:hover { border-color: var(--primary); box-shadow: var(--shadow-blue); transform: translateY(-2px); }
.partner-item span { font-size: 1rem; font-weight: 800; color: var(--text-muted); letter-spacing: 0.04em; }
.partner-item:hover span { color: var(--primary); }

/* ===== TEAM ===== */
.team { background: white; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }

.tc-avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--av-a), var(--av-b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  position: relative;
}
.tc-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.tc-info { padding: 24px; flex: 1; }
.tc-info h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.tc-role {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.tc-info p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

.tc-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: white;
  display: flex;
  gap: 12px;
}
.tc-link {
  width: 34px; height: 34px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.tc-link svg { fill: var(--primary); }
.tc-link:hover { background: var(--primary); }
.tc-link:hover svg { fill: white; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); }
.testimonials .section-tag { background: rgba(30,94,158,0.24); color: #9BC7EA; }
.testimonials .section-header h2 { color: white; }
.testimonials .section-header p { color: rgba(255,255,255,0.5); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tcard:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(91,163,216,0.28); }

.tcard-top { display: flex; align-items: center; justify-content: space-between; }
.tcard-quote { font-size: 3rem; font-weight: 900; color: var(--primary); line-height: 1; opacity: 0.5; }
.stars { color: var(--amber); font-size: 0.9rem; letter-spacing: 3px; }

.tcard p { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.75; font-style: italic; flex: 1; }

.tcard-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tcard-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 0.88rem; color: white; }
.tcard-author span { font-size: 0.76rem; color: rgba(255,255,255,0.4); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark-2);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,94,158,0.16), rgba(91,163,216,0.07));
}
.cta-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(30,94,158,0.22), transparent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-content .section-tag { display: inline-flex; margin-bottom: 16px; }
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-content p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; max-width: 420px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-left .section-tag { display: inline-flex; margin-bottom: 18px; }
.contact-left h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.contact-left > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; line-height: 1.75; }

.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--t);
}
a.ci-item:hover { border-color: var(--primary); box-shadow: var(--shadow-blue); transform: translateX(4px); }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; stroke: var(--primary); }
.ci-icon.ci-wa { background: rgba(37,211,102,0.1); }
.ci-icon.ci-wa svg { stroke: var(--whatsapp); }
.ci-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.ci-item span { font-size: 0.9rem; color: var(--text-muted); }

.contact-hours {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-hours h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text); }
.hours-row span:last-child { font-weight: 600; color: var(--dark); }
.hours-row.emergency span:last-child { color: var(--green); }

/* CONTACT FORM */
.contact-right {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.form-sub { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.form-group label span { color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--bg);
  transition: all var(--t);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(30,94,158,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-mark { width: 190px; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.fs-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.fs-link svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.5); }
.fs-link:hover { background: var(--primary); }
.fs-link:hover svg { fill: white; }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-col a:hover { color: white; }

.footer-contact-info p { font-size: 0.86rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; line-height: 1.6; }
.footer-contact-info a { color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-contact-info a:hover { color: white; }

.btn-wa-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: 16px;
  transition: all var(--t);
}
.btn-wa-footer svg { fill: white; }
.btn-wa-footer:hover { background: #20b858; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.65); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}
.trust-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--primary); }
.trust-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.trust-item span { font-size: 0.76rem; color: var(--text-muted); }
.trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ===== PROCESS ===== */
.process { background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.process-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity var(--t);
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-card:hover::before { opacity: 1; }

.pc-step {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: -4px;
  letter-spacing: -0.05em;
}
.pc-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pc-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.process-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.pc-detail {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
}
.pc-arrow {
  font-size: 1.4rem;
  color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 60px;
}

/* ===== INDUSTRIES ===== */
.industries { background: white; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); background: white; }
.ind-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ind-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.industry-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.industry-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ===== TEAM CERTS ===== */
.tc-certs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.cert-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(30,94,158,0.15);
}

/* ===== SLA SECTION ===== */
.sla-section {
  background: var(--dark-2);
  padding: 96px 0;
}
.sla-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.sla-left .section-tag { display: inline-flex; margin-bottom: 18px; }
.sla-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.sla-left p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.75; margin-bottom: 36px; }
.sla-left .section-tag { background: rgba(30,94,158,0.3); color: var(--cyan); }

.sla-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sla-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all var(--t);
}
.sla-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(30,94,158,0.4); }
.sla-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.sla-metric {
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.sla-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
    gap: 42px;
  }
  .hero-left h1 { font-size: clamp(2.45rem, 4vw, 3.45rem); }
  .ops-panel { padding: 22px; }
  .ops-metrics strong { font-size: 1.35rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pc-arrow { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .sla-inner { gap: 48px; }
  .trust-inner { gap: 16px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-content p { margin: 0 auto; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .navbar { padding: 14px 0; }
  .container { padding: 0 20px; }
  .logo-mark { width: 166px; height: 42px; }
  .hero {
    min-height: auto;
    padding: 116px 0 68px;
  }
  .hero-left { min-width: 0; }
  .hero-left h1 {
    font-size: 2.45rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
  .hero-proof { margin-bottom: 34px; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: rgba(255,255,255,0.8); }
  .btn-nav { font-size: 1rem !important; padding: 14px 40px !important; }

  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions { flex-wrap: wrap; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    width: 100%;
  }
  .hero-stat { min-width: 0; }
  .stat-label {
    white-space: normal;
    line-height: 1.25;
  }
  .hero-stats .stat-divider { display: none; }
  .contact-right { padding: 28px 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .sla-inner { grid-template-columns: 1fr; }
  .sla-cards { grid-template-columns: 1fr 1fr; }
  .trust-inner { justify-content: flex-start; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-left h1 { font-size: 2.25rem; }
  .stat-number { font-size: 1.7rem; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
