/* ═══════════════════════════════════════════
   WATERTECH ENGINEERING — PREMIUM STYLESHEET
   ═══════════════════════════════════════════ */

:root {
  --blue-900: #0a1628;
  --blue-800: #0d2044;
  --blue-700: #103060;
  --blue-600: #1a4a8a;
  --blue-500: #1e5fbb;
  --blue-400: #2d78d6;
  --blue-300: #5b9de8;
  --blue-100: #d4e8ff;
  --accent:   #00b4d8;
  --accent-2: #90e0ef;
  --white:    #ffffff;
  --off-white:#f0f6ff;
  --text-dark:#0a1628;
  --text-mid: #2d4a72;
  --text-soft:#5a7ba8;
  --divider:  rgba(26,74,138,.12);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  --shadow-sm:   0 2px 12px rgba(10,22,40,.08);
  --shadow-card: 0 6px 30px rgba(10,22,40,.10);
  --shadow-lift: 0 20px 60px rgba(10,22,40,.18);
  --shadow-glow: 0 0 50px rgba(0,180,216,.28);

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; object-fit: cover; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }

/* ── EYEBROW LABELS ────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow.light { color: var(--accent-2); }
.eyebrow.light::before { background: var(--accent); }

/* ── BUTTONS ───────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,74,138,.35);
}
.btn-primary:hover::before { opacity: .25; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ══════════════════════════════════════════
   WELCOME MODAL (auto-open on load)
   ══════════════════════════════════════════ */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.welcome-overlay.active {
  opacity: 1;
  visibility: visible;
}
.welcome-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.welcome-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  max-width: 900px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 60px 160px rgba(10,22,40,.45);
  transform: translateY(40px) scale(.96);
  transition: transform .55s var(--ease-spring);
  max-height: 90vh;
}
.welcome-overlay.active .welcome-panel {
  transform: translateY(0) scale(1);
}

/* Left panel */
.welcome-left {
  background: linear-gradient(160deg, var(--blue-800) 0%, var(--blue-900) 100%);
  padding: 56px 32px 56px 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  min-height: 0;
}
.welcome-left-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0,180,216,.18) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 50%);
  background-size: 100% 100%, 20px 20px;
}
.welcome-left-content { position: relative; z-index: 1; }
.welcome-badge {
  display: inline-block;
  background: rgba(0,180,216,.2);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0,180,216,.3);
  margin-bottom: 28px;
}
.welcome-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.welcome-left h2 span {
  color: var(--accent);
}
.welcome-mobile-title {
  display: none;
}
.welcome-left > div > p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--blue-300);
  font-weight: 300;
  margin-bottom: 36px;
}
.welcome-stats {
  display: flex;
  gap: 28px;
}
.welcome-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.welcome-stats strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.welcome-stats span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* Right panel */
.welcome-right {
  padding: 48px 44px;
  overflow-y: auto;
  position: relative;
  background: var(--white);
  min-height: 0;
}
.welcome-right::-webkit-scrollbar { display: none; }
.welcome-right { -ms-overflow-style: none; scrollbar-width: none; }

.welcome-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--text-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.welcome-close:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: rotate(90deg);
}
.welcome-form-header { margin-bottom: 28px; padding-right: 48px; }
.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.form-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.welcome-form-header h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--blue-900);
  line-height: 1.1;
  margin-bottom: 10px;
}
.welcome-form-header p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  font-weight: 300;
}

/* Form shared styles */
.welcome-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wf-group, .cf-group {
  position: relative;
}
.wf-group input,
.wf-group textarea,
.cf-group input,
.cf-group textarea {
  width: 100%;
  padding: 18px 16px 8px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: all .3s var(--ease);
  resize: vertical;
}
.wf-group textarea,
.cf-group textarea { min-height: 90px; padding-top: 22px; }
.wf-group input::placeholder,
.wf-group textarea::placeholder,
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: transparent; }
.wf-group label,
.cf-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
  pointer-events: none;
  transition: all .25s var(--ease);
  background: transparent;
}
.wf-group textarea + label,
.cf-group textarea + label { top: 16px; transform: none; }
.wf-group input:focus,
.wf-group textarea:focus,
.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30,95,187,.1);
}
.wf-group input:focus + label,
.wf-group input:not(:placeholder-shown) + label,
.cf-group input:focus + label,
.cf-group input:not(:placeholder-shown) + label {
  top: 8px;
  transform: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--blue-500);
  text-transform: uppercase;
}
.wf-group textarea:focus + label,
.wf-group textarea:not(:placeholder-shown) + label,
.cf-group textarea:focus + label,
.cf-group textarea:not(:placeholder-shown) + label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--blue-500);
  text-transform: uppercase;
}

/* Required field asterisk */
.req-star {
  color: #e53e3e;
  margin-left: 2px;
  font-weight: 700;
}

/* Phone field +91 prefix */
.phone-group { position: relative; }

.phone-cc {
  position: absolute;
  left: 16px;
  bottom: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main, #0f172a);
  pointer-events: none;
  z-index: 2;
  letter-spacing: 0.02em;
}

.phone-group input {
  padding-left: 52px !important;
}

/* Shift the collapsed label right so it doesn't overlap +91 */
.phone-group > label {
  left: 52px;
}

/* When focused or filled, float label to top-left at normal position */
.phone-group input:focus + label,
.phone-group input:not(:placeholder-shown) + label {
  left: 16px !important;
}

.wf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  margin-top: 4px;
}
.wf-submit:hover {
  background: var(--accent);
  color: var(--blue-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.wf-note {
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   TOPBAR
   ══════════════════════════════════════════ */
.topbar {
  background: var(--blue-900);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text-soft);
}
.topbar-left a { color: var(--blue-300); transition: color .25s; }
.topbar-left a:hover { color: var(--accent); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue-300);
}
.topbar-right a {
  color: var(--white);
  transition: color .25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-right a:hover { color: var(--accent); }
.topbar-right .sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.15);
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow .35s var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 40px rgba(10,22,40,.10); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--blue-900);
  line-height: 1.1;
}
.brand-name em {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--accent);
  font-family: var(--font-mono);
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
  letter-spacing: .01em;
}
.nav-link:hover { color: var(--blue-600); background: var(--off-white); }
.nav-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 11px 26px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.nav-button:hover {
  background: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,74,138,.3);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--blue-900);
  z-index: 99;
  padding: 80px 32px 40px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mm-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .25s;
  letter-spacing: .02em;
}
.mm-link:hover { color: var(--accent); }
.mm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(160deg, rgba(10,22,40,.92) 0%, rgba(13,32,68,.85) 50%, rgba(0,180,216,.15) 100%),
    url('bannerimage.png');
  background-size: cover;
  background-position: center;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-copy { color: var(--white); }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-highlight {
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; }
.hcs-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 3px solid rgba(255,255,255,.1);
  aspect-ratio: 4/3;
  background: var(--blue-700);
  position: relative;
}
.hcs-main img { width: 100%; height: 100%; object-fit: cover; }
.hcs-main-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  color: var(--blue-900);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.hcs-main-badge svg { color: var(--blue-600); }
.hcs-float {
  position: absolute;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,.5);
}
.hcs-float-1 { top: -20px; right: -20px; animation: float1 3s ease-in-out infinite; }
.hcs-float-2 { bottom: -20px; right: 24px; animation: float2 3.5s ease-in-out infinite; }
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hcf-icon { font-size: 24px; }
.hcs-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
}
.hcs-float span {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 300;
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar {
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.06);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 3px repeat(4, 1fr) 3px repeat(4, 1fr) 3px repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
/* Simpler approach */
.stats-bar .container { padding: 0 32px; }
.stats-bar-inner {
  display: flex;
  align-items: stretch;
  padding: 0;
}
.stat-item {
  flex: 1;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background .3s var(--ease);
  cursor: default;
}
.stat-item:hover { background: rgba(0,180,216,.06); }
.si-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-suf {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-item > p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-300);
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.07);
  margin: 24px 0;
}

/* ══════════════════════════════════════════
   USP BANNER
   ══════════════════════════════════════════ */
.usp-banner {
  background: linear-gradient(120deg, var(--blue-900) 0%, var(--blue-700) 60%, #0a2a4a 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.usp-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 90% 50%, rgba(0,180,216,.13) 0%, transparent 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 0, transparent 50%);
  background-size: 100% 100%, 22px 22px;
  pointer-events: none;
}
.usp-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.usp-text { flex: 1 1 480px; }
.usp-badge {
  display: inline-block;
  background: rgba(0,180,216,.18);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0,180,216,.3);
  margin-bottom: 18px;
}
.usp-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.usp-accent { color: var(--accent); }
.usp-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--blue-300);
  font-weight: 400;
  max-width: 560px;
}
.usp-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}
.usp-cta .btn-primary {
  background: var(--accent);
  color: var(--blue-900);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
}
.usp-cta .btn-primary:hover { box-shadow: 0 10px 32px rgba(0,180,216,.4); }
.usp-learn {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-300);
  letter-spacing: .04em;
  transition: color .25s;
}
.usp-learn:hover { color: var(--white); }
@media (max-width: 768px) {
  .usp-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .usp-cta { flex-direction: row; align-items: center; }
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-media {
  position: relative;
  height: 540px;
}
.am-frame {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.am-frame img { width: 100%; height: 100%; object-fit: cover; }
.am-frame-main {
  width: 76%; height: 82%;
  top: 0; left: 0;
}
.am-frame-sub {
  width: 56%; height: 52%;
  bottom: 0; right: 0;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-card);
}
.am-badge {
  position: absolute;
  top: 44%; left: 58%;
  transform: translate(-50%, -50%);
  background: var(--blue-600);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  z-index: 2;
  text-align: center;
}
.am-badge-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.am-badge-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}
.am-dots {
  position: absolute;
  bottom: 24px; left: -20px;
  width: 80px; height: 80px;
  background-image: radial-gradient(var(--blue-400) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: .35;
  z-index: 0;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--blue-900);
  margin-bottom: 20px;
}
.about-copy > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 32px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 13px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}
.check-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.check-list .hidden-item { display: none; }
.more-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  margin-bottom: 32px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  background: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.more-toggle:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-card);
  background: rgba(249, 250, 251, 0.95);
}
.more-toggle:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}
.cl-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s var(--ease);
}
.about-phone:hover { transform: translateY(-1px); }
.ap-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-phone em {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.about-phone span {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
}

/* ══════════════════════════════════════════
   WHY CHOOSE
   ══════════════════════════════════════════ */
.choose-section { background: var(--white); }
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.choose-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  height: 560px;
}
.cv-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-lift);
}
.cv-image img { width: 100%; height: 100%; object-fit: cover; }
.cv-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue-600);
  box-shadow: 0 0 0 12px rgba(255,255,255,.25);
  cursor: pointer;
  transition: all .35s var(--ease);
  border: none;
  padding-left: 4px;
  z-index: 2;
}
.cv-play:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 16px rgba(0,180,216,.2), var(--shadow-glow);
  transform: translate(-50%, -50%) scale(1.1);
}
.cv-accent-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--blue-900);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  z-index: 3;
  border: 2px solid rgba(0,180,216,.3);
}
.cv-accent-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--accent);
  margin-bottom: 4px;
}
.cv-accent-box span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-300);
}

.choose-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--blue-900);
  margin-bottom: 16px;
}
.choose-copy > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 32px;
}
.feature-list { display: flex; flex-direction: column; gap: 0; }
.fl-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--divider);
  transition: padding-left .3s var(--ease);
}
.fl-item:last-child { border-bottom: none; }
.fl-item:hover { padding-left: 8px; }
.fl-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-100);
  line-height: 1;
  min-width: 36px;
  transition: color .3s var(--ease);
}
.fl-item:hover .fl-num { color: var(--accent); }
.fl-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.fl-item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services-section { background: var(--off-white); }
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--blue-900);
  margin-top: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .4s var(--ease);
  border: 1px solid rgba(26,74,138,.05);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(0,180,216,.2);
}
.sc-media {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--blue-700);
}
.sc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-card:hover .sc-media img { transform: scale(1.06); }
.sc-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.5), transparent 60%);
}
.sc-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,22,40,.75);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 1;
}
.sc-body { padding: 28px 28px 32px; }
.sc-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--blue-900);
  margin-bottom: 10px;
}
.sc-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: .04em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s var(--ease);
  font-family: inherit;
}
.sc-link:hover { color: var(--accent); }
.sc-link svg { transition: transform .3s var(--ease); }
.sc-link:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════
   PLANT CAPACITY TABLE
   ══════════════════════════════════════════ */
.cap-section {
  margin-top: 72px;
  background: var(--white);
  border: 1px solid rgba(26,74,138,.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(10,22,40,.08);
  overflow: hidden;
}

/* Intro header */
.cap-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px 28px;
  border-bottom: 1px solid rgba(26,74,138,.07);
  background: linear-gradient(135deg, #f0f6ff 0%, var(--white) 60%);
}
.cap-intro-text { display: flex; flex-direction: column; }
.cap-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-800);
  margin: 6px 0 4px;
  line-height: 1.2;
}
.cap-sub {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 520px;
}
.cap-intro-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(30,95,187,.25);
}

/* Table */
.cap-table { width: 100%; }

.cap-thead {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 2fr;
  background: var(--blue-900);
}
.cap-th {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.cap-th:first-child { padding-left: 40px; }
.cap-th:last-child  { padding-right: 40px; border-right: none; }

.cap-th-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,180,216,.15);
  border: 1px solid rgba(0,180,216,.3);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}
.cap-th-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cap-th-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}
.cap-th-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--blue-300);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

/* Rows */
.cap-row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 2fr;
  align-items: center;
  border-bottom: 1px solid rgba(26,74,138,.06);
  border-left: 3px solid transparent;
  transition: background .25s var(--ease), border-left-color .25s var(--ease);
}
.cap-row:last-child { border-bottom: none; }
.cap-row:nth-child(even) { background: rgba(240,246,255,.55); }
.cap-row:hover { background: rgba(30,95,187,.04); border-left-color: var(--blue-400); }

/* Cell padding — aligns with header cells */
.cap-row > .cap-td        { padding: 20px 24px; }
.cap-row > .cap-td:first-child { padding-left: 40px; }
.cap-row > .cap-range     { padding: 20px 24px; }
.cap-row > .cap-bar-cell  { padding: 20px 24px; padding-right: 40px; }

/* Column dividers matching the header */
.cap-row > .cap-td:first-child,
.cap-row > .cap-range {
  border-right: 1px solid rgba(26,74,138,.07);
}

/* Badge */
.cap-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--bb);
  border: 1px solid color-mix(in srgb, var(--bc) 20%, transparent);
  color: var(--bc);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.cap-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Range cell */
.cap-range {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cap-from {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  white-space: nowrap;
}
.cap-to {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue-700);
  font-weight: 700;
  white-space: nowrap;
}
.cap-arrow { color: var(--blue-300); flex-shrink: 0; }

/* Progress bar */
.cap-bar-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cap-track {
  flex: 1;
  height: 8px;
  background: rgba(26,74,138,.08);
  border-radius: 99px;
  overflow: hidden;
}
.cap-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: var(--fc);
  box-shadow: 0 0 8px color-mix(in srgb, var(--fc) 40%, transparent);
  transition: width 1.1s cubic-bezier(.4,0,.2,1) .35s;
}
.cap-row.aos-animate .cap-fill { width: var(--w); }
.cap-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-soft);
  letter-spacing: .06em;
  white-space: nowrap;
  min-width: 80px;
}

/* Footer note */
.cap-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: rgba(240,246,255,.7);
  border-top: 1px solid rgba(26,74,138,.07);
  font-size: 12px;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.cap-note svg { flex-shrink: 0; color: var(--blue-400); }
.cap-cta {
  color: var(--blue-500);
  font-weight: 600;
  font-size: 12px;
  font-family: var(--font-body);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: color .25s;
}
.cap-cta:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   CAPACITY TABLE — MOBILE
   Full-width cards · coloured header banner
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Intro */
  .cap-intro {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 18px;
    gap: 12px;
  }
  .cap-intro-badge { align-self: flex-start; }
  .cap-sub { max-width: 100%; }
  .cap-title { font-size: 20px; }

  /* Hide desktop header row */
  .cap-thead { display: none; }

  /* Stack cards full-width */
  .cap-table {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    background: rgba(240,246,255,.45);
  }

  /* ── Card shell ───────────────────────── */
  .cap-row {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 16px;
    border: 1.5px solid rgba(26,74,138,.1);
    border-left: none;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(10,22,40,.08);
    overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  }
  .cap-row:nth-child(even) { background: var(--white); }
  .cap-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10,22,40,.13);
  }

  /* Reset desktop grid + dividers on cells */
  .cap-row > .cap-td,
  .cap-row > .cap-range,
  .cap-row > .cap-bar-cell {
    padding: 0;
    border-right: none;
  }
  .cap-row > .cap-td:first-child { padding-left: 0; }

  /* ════════════════════════════════════════
     ZONE A — Plant Name
     Full-width coloured gradient banner
     ════════════════════════════════════════ */
  .cap-row > .cap-td:first-child {
    padding: 18px 20px 16px;
    background: var(--blue-700); /* safe fallback so white text is always visible */
  }
  /* Per-plant gradient banner
     cap-thead is child 1 of cap-table → cap-rows are children 2–5 */
  .cap-row:nth-child(2) > .cap-td:first-child { background: linear-gradient(135deg,#1a4a8a 0%,#2d78d6 100%); }
  .cap-row:nth-child(3) > .cap-td:first-child { background: linear-gradient(135deg,#007a9a 0%,#00b4d8 100%); }
  .cap-row:nth-child(4) > .cap-td:first-child { background: linear-gradient(135deg,#059669 0%,#10b981 100%); }
  .cap-row:nth-child(5) > .cap-td:first-child { background: linear-gradient(135deg,#b45309 0%,#f59e0b 100%); }

  /* "PLANT TYPE" eyebrow in banner */
  .cap-row > .cap-td:first-child::before {
    content: 'Plant Type';
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
  }
  /* Badge becomes white on the coloured banner */
  .cap-row > .cap-td:first-child .cap-badge {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.35);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 6px 14px;
    gap: 10px;
  }
  .cap-row > .cap-td:first-child .cap-dot {
    background: white !important;
    width: 8px;
    height: 8px;
  }

  /* ════════════════════════════════════════
     ZONE B — Capacity Range
     MIN and MAX side-by-side in two columns
     ════════════════════════════════════════ */
  .cap-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(26,74,138,.08);
    background: var(--white);
    border-radius: 0;
    padding: 0;
  }
  /* "CAPACITY RANGE" label spanning both columns */
  .cap-range::before {
    content: 'Capacity Range';
    grid-column: 1 / -1;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-soft);
    padding: 14px 20px 0;
    display: block;
  }
  /* Hide the arrow — replaced by grid layout */
  .cap-arrow { display: none; }

  /* MIN — left column */
  .cap-from {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 20px 16px;
    border-right: 1px solid rgba(26,74,138,.07);
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-mid);
    white-space: normal;
  }
  .cap-from::before {
    content: 'MIN';
    font-size: 9px;
    letter-spacing: .12em;
    font-weight: 600;
    color: var(--text-soft);
  }

  /* MAX — right column */
  .cap-to {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 20px 16px;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-700);
    white-space: normal;
  }
  .cap-to::before {
    content: 'MAX';
    font-size: 9px;
    letter-spacing: .12em;
    font-weight: 600;
    color: var(--blue-500);
  }

  /* ════════════════════════════════════════
     ZONE C — Scale Indicator
     Horizontal: label · bar · cap-label
     ════════════════════════════════════════ */
  .cap-bar-cell {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(240,246,255,.5);
    align-items: center;
  }
  /* "SCALE" label on the left */
  .cap-bar-cell::before {
    content: 'Scale';
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-soft);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cap-track {
    flex: 1;
    height: 9px;
    width: auto;
  }
  .cap-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    min-width: unset;
    white-space: nowrap;
    text-align: right;
    color: var(--text-mid);
    flex-shrink: 0;
  }

  /* Footer note */
  .cap-note {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ── Small phones (≤ 480px) ───────────── */
@media (max-width: 480px) {
  .cap-intro  { padding: 20px 16px 16px; }
  .cap-table  { padding: 12px; gap: 12px; }
  .cap-row > .cap-td:first-child { padding: 14px 16px 12px; }
  .cap-range::before  { padding: 12px 16px 0; }
  .cap-from, .cap-to  { padding: 8px 16px 14px; font-size: 15px; }
  .cap-bar-cell       { padding: 12px 16px; gap: 10px; }
  .cap-note           { padding: 12px 16px; }
}

/* ══════════════════════════════════════════
   SECTORS
   ══════════════════════════════════════════ */
.sectors-section {
  background: var(--blue-800);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.sectors-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(0,180,216,.08) 0%, transparent 50%);
}
.sectors-section .section-header { position: relative; z-index: 1; margin-bottom: 56px; }
.sectors-section .section-header h2 { color: var(--white); margin-top: 8px; }
.sectors-section .eyebrow.light { color: var(--accent-2); }
.sectors-section .eyebrow.light::before { background: var(--accent); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.sector-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-card);
  transition: all .4s var(--ease);
  display: block;
}
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift), 0 0 0 2px rgba(0,180,216,.4);
}
.sector-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.sector-card:hover img { transform: scale(1.06); }
.sector-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.95) 0%, rgba(10,22,40,.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}
.sector-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: 8px;
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.sector-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease);
}
.sector-card:hover .sector-overlay h3 { transform: translateY(-4px); color: var(--accent); }
.sector-card:hover .sector-overlay p {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   CLIENTS
   ══════════════════════════════════════════ */
.clients-section {
  padding: 64px 0;
  background: #e8eef4;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.clients-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 36px;
}
.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cg-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  filter: grayscale(60%) opacity(.75);
  transition: all .35s var(--ease);
}
.cg-item:hover { filter: none; transform: scale(1.05); }
.cg-item img { max-height: 72px; width: auto; object-fit: contain; }

/* ══════════════════════════════════════════
   PROJECTS
   ══════════════════════════════════════════ */
.projects-section {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
  background: var(--blue-900);
}
.projects-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,180,216,.07) 0%, transparent 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 0, transparent 50%);
  background-size: 100% 100%, 24px 24px;
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.projects-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  line-height: 1.1;
}
.swiper-nav-btns { display: flex; gap: 12px; flex-shrink: 0; }
.snb-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.snb-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.project-swiper {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.project-slide {
  border-radius: var(--radius-md);
  height: 440px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lift);
}
.ps-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, rgba(10,22,40,.2) 60%, transparent 100%);
  transition: opacity .35s var(--ease);
}
.project-slide:hover .ps-overlay { opacity: .8; }
.ps-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 1;
  color: var(--white);
}
.ps-sector {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ps-content h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.ps-content p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  font-weight: 300;
  margin-bottom: 20px;
}
.ps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: all .3s var(--ease);
  backdrop-filter: blur(8px);
}
.ps-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--blue-900);
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,.4) !important;
  width: 8px !important; height: 8px !important;
  transition: all .3s !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 50%, var(--blue-500) 100%);
}
.cta-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0,180,216,.2) 0%, transparent 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 50%);
  background-size: 100% 100%, 20px 20px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 12px;
}
.cta-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  font-weight: 300;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700) 0%, var(--accent) 35%, var(--accent-2) 65%, var(--blue-700) 100%);
}
.footer-section {
  background: linear-gradient(180deg, #091422 0%, var(--blue-900) 55%, #050d18 100%);
}
.footer-top {
  padding: 64px 0 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1.5fr 2.2fr;
  column-gap: 56px;
  row-gap: 40px;
  align-items: start;
}

/* ── Brand column ─────────────────────── */
.fc-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .brand-logo { height: 38px; }
.fc-brand > p {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--blue-300);
  font-weight: 300;
}
.footer-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-tagline span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,180,216,.08);
  border: 1px solid rgba(0,180,216,.18);
  padding: 4px 9px;
  border-radius: 4px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--blue-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--blue-900);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,180,216,.3);
}

/* ── Shared column header ─────────────── */
.fc-links h4,
.fc-hours h4,
.fc-form h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-links h4::before,
.fc-hours h4::before,
.fc-form h4::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Quick Links column ───────────────── */
.fc-links { display: flex; flex-direction: column; gap: 0; }
.fc-links a {
  font-size: 13px;
  color: var(--blue-300);
  font-weight: 300;
  transition: all .25s var(--ease);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.fc-links a::before {
  content: '';
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .25s var(--ease);
  flex-shrink: 0;
  border-radius: 2px;
  margin-right: 0;
}
.fc-links a:hover { color: var(--white); gap: 8px; }
.fc-links a:hover::before { width: 10px; }

/* ── Contact column ───────────────────── */
.fc-contact { gap: 0 !important; }
.fc-contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.fc-contact-item:hover { color: var(--white) !important; padding-left: 0 !important; }
.fci-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(0,180,216,.1);
  border: 1px solid rgba(0,180,216,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
  transition: all .3s var(--ease);
}
.fc-contact-item:hover .fci-icon {
  background: var(--accent);
  color: var(--blue-900);
}
.fc-address { align-items: flex-start; }

/* ── Business Hours column ────────────── */
.fc-hours { display: flex; flex-direction: column; gap: 0; }
.fh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  gap: 8px;
}
.fh-day {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
}
.fh-time {
  font-size: 12px;
  color: var(--blue-300);
  font-weight: 300;
  text-align: right;
}
.fh-closed { color: rgba(252,129,129,.85) !important; font-weight: 500; }
.fh-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--blue-300);
}
.fh-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #48bb78;
  box-shadow: 0 0 0 0 rgba(72,187,120,.6);
  flex-shrink: 0;
  animation: fh-pulse 2.2s ease infinite;
}
@keyframes fh-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(72,187,120,.55); }
  70%  { box-shadow: 0 0 0 6px rgba(72,187,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(72,187,120,0); }
}

/* ── Quick Inquiry Form column ────────── */
.fc-form { display: flex; flex-direction: column; gap: 0; }
.footer-form { display: flex; flex-direction: column; gap: 9px; }
.footer-form input,
.footer-form textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: all .3s var(--ease);
  resize: vertical;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(91,157,232,.6); }
.footer-form input:focus,
.footer-form textarea:focus {
  border-color: var(--accent);
  background: rgba(0,180,216,.06);
  box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}

/* Footer form phone wrapper */
.ff-phone-wrap { position: relative; }
.ff-phone-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  pointer-events: none;
  z-index: 2;
  letter-spacing: 0.02em;
}
.ff-phone-wrap input[type="tel"] { padding-left: 48px !important; }

.ff-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #0090b3 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  margin-top: 2px;
}
.ff-btn:hover {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,216,.25);
}

/* ── Footer bottom bar ────────────────── */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.2);
}
.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fb-inner > p {
  font-size: 12px;
  color: var(--blue-300);
  font-weight: 300;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-300);
  transition: color .3s;
}
.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   CONTACT MODAL (trigger-based)
   ══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 60px 160px rgba(10,22,40,.45);
  transform: translateY(32px) scale(.96);
  transition: transform .45s var(--ease-spring);
}
.modal-box::-webkit-scrollbar { display: none; }
.modal-box { -ms-overflow-style: none; scrollbar-width: none; }
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.modal-close:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: rotate(90deg);
}
.modal-header {
  margin-bottom: 32px;
  padding-right: 48px;
}
.modal-header h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--blue-900);
  margin-bottom: 6px;
  margin-top: 8px;
}
.modal-header p {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
}
.cf-submit {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
}
.cf-note {
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════ */
.fab {
  position: fixed;
  z-index: 1200;
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(10,22,40,.2);
  transition: all .3s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.06); }
.fab-whatsapp { left: 20px; background: #25d366; }
.fab-call { right: 20px; background: var(--blue-600); }

/* ══════════════════════════════════════════
   AOS override
   ══════════════════════════════════════════ */
[data-aos] { transition-timing-function: cubic-bezier(.4,0,.2,1) !important; }

/* ══════════════════════════════════════════
   LIGHTBOX MODAL
   ══════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox-close:hover {
  background: var(--accent);
  color: var(--blue-900);
  transform: rotate(90deg);
  border-color: var(--accent);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(0.95);
  opacity: 0;
  transition: transform .45s var(--ease-spring), opacity .4s var(--ease);
}
.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
  opacity: 1;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
}
.lightbox-caption {
  text-align: center;
  color: var(--white);
  max-width: 600px;
}
.lightbox-caption h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.lightbox-caption p {
  font-size: 13px;
  color: var(--accent-2);
  line-height: 1.5;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid, .choose-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { height: 420px; }
  .choose-visual { height: 380px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.4fr; column-gap: 36px; row-gap: 36px; }
  .fc-form { grid-column: 2 / 4; }
  .fc-hours { grid-column: 1 / 2; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-copy { max-width: 640px; }
  .hero-section { min-height: auto; padding: 120px 0 80px; }
}
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { min-width: 45%; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fc-form { grid-column: auto; }
  .fc-hours { grid-column: auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .welcome-overlay { align-items: flex-start; overflow-y: auto; }
  .welcome-panel { grid-template-columns: 1fr; max-height: none; margin: 20px auto; }
  .welcome-left { display: none; }
  .welcome-right { padding: 40px 28px; overflow-y: visible; }
  
  .modal-overlay { align-items: flex-start; overflow-y: auto; }
  .modal-box { max-height: none; margin: 20px auto; overflow-y: visible; }
  
  .welcome-mobile-title {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--blue-900);
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .welcome-mobile-title span {
    color: var(--blue-600);
  }
}
@media (max-width: 768px) {
  .nav-menu, .nav-button { display: none; }
  .nav-toggle { display: flex; }
  .topbar-left { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 36px 24px; }
  .projects-header { flex-direction: column; align-items: flex-start; }
  .about-media { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .fb-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .welcome-right { padding: 32px 20px; }
  .modal-box { padding: 28px 16px; border-radius: var(--radius-md); }
  .navbar-inner { padding: 14px 16px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline-white { width: 100%; justify-content: center; }
  .stat-item { min-width: 100%; }
  .lightbox-close { top: 20px; right: 20px; width: 38px; height: 38px; }
  .lightbox-content img { max-height: 60vh; }
  .lightbox-caption h3 { font-size: 18px; }
}


/* ══════════════════════════════════════════
   MOBILE OPTIMIZATION OVERRIDES
   ══════════════════════════════════════════ */

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .25s var(--ease);
}
.floating-cta a:hover {
  transform: translateY(-2px);
}
.whatsapp-btn { background: #25D366; }
.call-btn { background: #0d6efd; }

/* Tablet / small laptop */
@media (max-width: 1100px) {
  .hero-content {
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-copy h1 {
    font-size: clamp(34px, 7.5vw, 58px);
  }
  .hero-sub {
    max-width: 100%;
    margin-bottom: 32px;
  }
  .hero-visual {
    display: none;
  }
  .hero-section {
    min-height: auto;
    padding: 112px 0 72px;
  }
  .about-grid,
  .choose-grid {
    gap: 48px;
  }
  .about-media {
    height: 420px;
  }
  .choose-visual {
    height: 420px;
  }
  .services-grid,
  .sectors-grid {
    gap: 22px;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 78px 0; }

  .navbar-inner {
    padding: 14px 24px;
    gap: 18px;
  }

  .topbar-left { display: none; }
  .topbar-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .nav-button { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }

  .stats-bar-inner {
    flex-wrap: wrap;
  }
  .stat-item {
    min-width: 50%;
    padding: 32px 20px;
  }
  .stat-divider { display: none; }

  .about-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    display: none;
  }

  .about-copy h2,
  .choose-copy h2,
  .section-header h2 {
    font-size: clamp(28px, 5vw, 38px);
  }

  .welcome-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 12px;
  }
  .welcome-panel {
    grid-template-columns: 1fr;
    max-height: none;
    margin: 12px auto;
    width: min(100%, 720px);
  }
  .welcome-left { display: none; }
  .welcome-right {
    padding: 34px 24px;
    overflow-y: visible;
  }
  .welcome-mobile-title {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--blue-900);
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-top: 6px;
    margin-bottom: 14px;
  }
  .welcome-mobile-title span { color: var(--blue-600); }
}

/* Mobile landscape / standard phones */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 18px; }
  .section { padding: 66px 0; }

  .topbar { display: none; }

  .navbar {
    top: 0;
  }
  .navbar-inner {
    padding: 12px 18px;
    gap: 12px;
  }
  .brand-logo {
    height: 34px;
  }
  .nav-menu, .nav-button { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .mobile-menu {
    padding: 76px 20px 24px;
    gap: 22px;
  }
  .mm-link {
    font-size: 24px;
    padding: 10px 0;
  }
  .mm-cta {
    width: 100%;
  }

  .hero-section {
    min-height: auto;
    padding: 88px 0 54px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-copy {
    max-width: 100%;
    text-align: left;
  }
  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero-copy h1 {
    font-size: clamp(30px, 10vw, 48px);
    line-height: .98;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    text-align: center;
    line-height: 1.5;
  }

  .stats-bar-inner {
    padding: 0;
  }
  .stat-item {
    min-width: 100%;
    padding: 24px 16px;
  }
  .stat-num {
    font-size: clamp(34px, 12vw, 46px);
  }
  .stat-item > p {
    font-size: 10px;
  }

  .services-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .sector-card,
  .feature-list {
    width: 100%;
  }

  .service-card .sc-media {
    aspect-ratio: 16 / 10;
  }

  .choose-visual {
    height: 320px;
  }
  .cv-accent-box {
    right: 12px;
    bottom: 12px;
    padding: 16px 18px;
  }
  .feature-list {
    gap: 10px;
  }
  .fl-item {
    gap: 12px;
    padding: 14px 12px;
  }
  .fl-num {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .about-copy > p,
  .choose-copy > p,
  .section-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .section-header {
    margin-bottom: 24px;
  }
  .section-header h2 {
    line-height: 1.08;
  }

  .welcome-right {
    padding: 28px 18px;
  }
  .welcome-form-header {
    padding-right: 40px;
    margin-bottom: 22px;
  }
  .wf-group input,
  .wf-group textarea,
  .cf-group input,
  .cf-group textarea {
    font-size: 16px; /* prevents iOS zoom */
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .floating-cta a {
    min-width: 104px;
    padding: 11px 14px;
    font-size: 12px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 58px 0; }

  .navbar-inner {
    padding: 10px 16px;
  }
  .brand-logo {
    height: 30px;
  }

  .hero-section {
    padding: 76px 0 46px;
  }
  .hero-copy h1 {
    font-size: clamp(28px, 11vw, 40px);
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .btn-primary,
  .btn-ghost,
  .nav-button,
  .mm-cta,
  .wf-submit {
    width: 100%;
    justify-content: center;
  }

  .services-grid,
  .sectors-grid {
    gap: 16px;
  }
  .service-card,
  .sector-card {
    border-radius: 20px;
  }

  .section-header {
    margin-bottom: 20px;
  }
  .section-header h2,
  .about-copy h2,
  .choose-copy h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .choose-visual {
    height: 280px;
  }
  .cv-play {
    width: 60px;
    height: 60px;
  }

  .check-list li,
  .fl-item {
    font-size: 13px;
  }

  .welcome-panel {
    border-radius: 22px;
  }
  .welcome-right {
    padding: 24px 16px;
  }
  .welcome-close {
    top: 14px;
    right: 14px;
  }
  .welcome-form-header h3 {
    font-size: 20px;
  }
  .welcome-mobile-title {
    font-size: 22px;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: row;
    gap: 8px;
  }
  .floating-cta a {
    flex: 1;
    min-width: 0;
    padding: 11px 10px;
    font-size: 12px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }
  .lightbox-caption h3 {
    font-size: 16px;
  }
}

/* Very small devices */
@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 26px;
  }
  .hero-sub {
    line-height: 1.6;
  }
  .stat-num {
    font-size: 36px;
  }
  .floating-cta a {
    font-size: 11px;
  }
}
