/* ─── TOKENS ────────────────────────────── */
:root {
  --navy:   #0b1526;
  --navy2:  #111f35;
  --navy3:  #162540;
  --red:    #cc2020;
  --red2:   #e02828;
  --white:  #f0f4fb;
  --gray:   #8898b4;
  --line:   rgba(255,255,255,0.08);
  --nav-h:  64px;
  --focus:  #4d9fff;
}

/* ─── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 15px;
  line-height: 1.65; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: 'Inter', sans-serif; cursor: pointer; border: none; }
a { color: inherit; text-decoration: none; }

/* ─── ACCESSIBILITY ──────────────────────── */
/* Skip link */
.skip-link {
  position: absolute; top: -999px; left: 8px;
  background: var(--red); color: #fff;
  padding: 8px 16px; font-size: .85rem; font-weight: 600;
  z-index: 9999; border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* Visible focus rings for keyboard users */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ─── NAV ───────────────────────────────── */
/* Hidden at top — only appears on scroll */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s, box-shadow .35s;
}
/* Scrolled — solid dark nav */
.nav.visible {
  background: rgba(11,21,38,.97);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; }
.nav-logo img { height: 30px; }
.nav-logo-text { font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 700; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gray);
  transition: color .2s; cursor: pointer; white-space: nowrap;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 1px solid var(--red); }
.nav-cta {
  background: var(--red); color: #fff;
  padding: 7px 18px; font-size: .7rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover, .nav-cta:focus { background: var(--red2); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none;
  border-radius: 2px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 299;
  background: rgba(11,21,38,.98); border-bottom: 1px solid var(--line);
  padding: 12px 5% 20px;
  display: none; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 13px 0;
  font-size: .8rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray);
  border-bottom: 1px solid var(--line); cursor: pointer;
  transition: color .2s;
}
.mobile-menu a.active, .mobile-menu a:hover { color: var(--white); }
.mob-cta {
  margin-top: 14px; background: var(--red); color: #fff;
  padding: 12px; text-align: center;
  font-size: .75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer;
}

/* ─── COMMON ─────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.eyebrow {
  font-size: .67rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--red); flex-shrink: 0; }
h2.title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 14px;
}
.btn-red {
  display: inline-block; background: var(--red); color: #fff;
  padding: 11px 24px; font-size: .72rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background .2s; cursor: pointer; border: none;
  border-radius: 1px;
}
.btn-red:hover, .btn-red:focus { background: var(--red2); }
.btn-outline {
  display: inline-block; border: 1px solid rgba(255,255,255,.25); color: var(--white);
  padding: 11px 24px; font-size: .72rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  background: none; transition: all .2s; cursor: pointer;
  border-radius: 1px;
}
.btn-outline:hover, .btn-outline:focus { border-color: var(--red); color: var(--red); }
.divider { height: 1px; background: var(--line); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }

/* ─── SVG ICON HELPER ───────────────────── */
.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon svg { fill: currentColor; }

/* ─── HERO SLIDER ───────────────────────── */
.hero-slider {
  position: relative; width: 100%;
  height: 100svh; min-height: 500px; max-height: 900px;
  overflow: hidden;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; z-index: 0; }
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.6) saturate(.8);
}
.slide.active .slide-bg { animation: zoomBg 8s ease forwards; }
@keyframes zoomBg { from { transform: scale(1); } to { transform: scale(1.07); } }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,21,38,.9) 0%, rgba(11,21,38,.5) 55%, rgba(11,21,38,.1) 100%);
}
.slide-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 80px 5% 120px;
}
.slide-inner { max-width: 620px; width: 100%; }
.slide-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .62rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 12px; margin-bottom: 18px;
}
.slide-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 5vw, 3.6rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 16px;
}
.slide-inner p {
  color: rgba(240,244,251,.75); font-size: clamp(.85rem, 1.5vw, .95rem);
  max-width: 480px; line-height: 1.85; margin-bottom: 28px;
}
.slide-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Slider bottom controls */
.slider-controls { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; display: flex; }
.slide-ctrl {
  flex: 1; padding: 12px 14px;
  background: rgba(11,21,38,.82); border-top: 3px solid transparent;
  border-right: 1px solid var(--line); cursor: pointer;
  transition: background .25s, border-color .25s;
  display: flex; align-items: center; gap: 10px;
  position: relative; overflow: hidden; min-width: 0;
}
.slide-ctrl:last-child { border-right: none; }
.slide-ctrl.active { background: rgba(11,21,38,.97); border-top-color: var(--red); }
.slide-ctrl:hover { background: rgba(11,21,38,.97); }
.ctrl-num {
  font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 800;
  color: rgba(255,255,255,.15); transition: color .25s; line-height: 1; flex-shrink: 0;
}
.slide-ctrl.active .ctrl-num { color: var(--red); }
.ctrl-text {
  font-size: .65rem; font-weight: 600; letter-spacing: .6px;
  color: var(--gray); line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.slide-ctrl.active .ctrl-text, .slide-ctrl:hover .ctrl-text { color: var(--white); }
.ctrl-bar { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--red); width: 0%; }
.slide-ctrl.active .ctrl-bar { animation: barProgress 6000ms linear forwards; }
@keyframes barProgress { from { width: 0%; } to { width: 100%; } }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 40px; height: 40px;
  background: rgba(11,21,38,.6); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.slider-arrow:hover, .slider-arrow:focus { background: var(--red); border-color: var(--red); }
.slider-arrow.prev { left: 2%; }
.slider-arrow.next { right: 2%; }

/* ─── STATS BAR ──────────────────────────── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); background: var(--navy2); }
.stat-item { padding: 22px 16px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.stat-item:last-child { border-right: none; }
.stat-ico { width: 36px; height: 36px; color: var(--red); flex-shrink: 0; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 800; line-height: 1; }
.stat-num em { color: var(--red); font-style: normal; }
.stat-lbl { font-size: .65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ─── INDUSTRIES STRIP ───────────────────── */
.industries-strip { padding: 48px 0; border-bottom: 1px solid var(--line); }
.strip-title { text-align: center; font-size: .67rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 28px; }
.ind-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 2px; }
.ind-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 12px; background: var(--navy2); border: 1px solid var(--line);
  transition: border-color .2s, background .2s;
}
.ind-card:hover { border-color: rgba(204,32,32,.4); background: var(--navy3); }
.ind-ico { width: 32px; height: 32px; color: var(--gray); transition: color .2s; }
.ind-card:hover .ind-ico { color: var(--white); }
.ind-label { font-size: .63rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); text-align: center; line-height: 1.4; transition: color .2s; }
.ind-card:hover .ind-label { color: var(--white); }

/* ─── ABOUT ──────────────────────────────── */
.about-sec { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img img { width: 100%; height: 420px; object-fit: cover; filter: brightness(.85) saturate(.8); }
.about-text p { color: var(--gray); font-size: .9rem; line-height: 1.85; margin-bottom: 12px; }
.about-checks { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; list-style: none; }
.about-checks li { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--gray); }
.about-checks li::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ─── ISO SECTION ────────────────────────── */
.iso-section { background: var(--navy3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0; }
.iso-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.iso-left { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 240px; }
.iso-left img { width: 68px; height: 68px; object-fit: contain; flex-shrink: 0; }
.iso-left-text h3 { font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 800; margin-bottom: 5px; }
.iso-left-text p { font-size: .83rem; color: var(--gray); line-height: 1.7; }
.iso-badges { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.iso-badge-item { border: 1px solid rgba(204,32,32,.35); padding: 10px 18px; display: flex; flex-direction: column; align-items: center; min-width: 90px; }
.iso-badge-item strong { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 800; color: var(--red); }
.iso-badge-item span { font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-top: 3px; }

/* ─── IMAGE BREAK ────────────────────────── */
.img-break { position: relative; height: clamp(200px,28vw,300px); overflow: hidden; display: flex; align-items: center; }
.img-break-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.35) saturate(.6); }
.img-break-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,21,38,.92) 0%, rgba(11,21,38,.55) 60%, rgba(11,21,38,.1) 100%); }
.img-break-content { position: relative; z-index: 1; width: 100%; padding: 0 5%; }
.img-break-content h3 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.2rem,2.5vw,1.9rem); font-weight: 800; margin-bottom: 10px; }
.img-break-content p { color: rgba(240,244,251,.7); font-size: clamp(.8rem,1.5vw,.9rem); max-width: 500px; line-height: 1.8; margin-bottom: 20px; }

/* ─── PRODUCTS ───────────────────────────── */
.products-sec { padding: 80px 0; background: var(--navy2); }
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.prod-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.prod-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.45) saturate(.6); transition: transform .5s, filter .4s; }
.prod-card:hover img, .prod-card:focus-within img { transform: scale(1.05); filter: brightness(.3) saturate(.5); }
.prod-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px; background: linear-gradient(to top, rgba(11,21,38,.95), transparent); }
.prod-cat { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.prod-name { font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 700; }
.prod-more { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.prod-card:hover .prod-more, .prod-card:focus-within .prod-more { opacity: 1; }
.prod-more-inner { background: var(--red); color: #fff; padding: 9px 18px; font-size: .68rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }

/* ─── WHY CHOOSE US ──────────────────────── */
.why-sec { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 36px; }
.why-card { background: var(--navy2); border: 1px solid var(--line); padding: 32px 26px; transition: border-color .2s, background .2s; }
.why-card:hover { border-color: rgba(204,32,32,.4); background: var(--navy3); }
.why-ico-wrap { width: 46px; height: 46px; background: rgba(204,32,32,.1); border: 1px solid rgba(204,32,32,.25); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background .2s; }
.why-card:hover .why-ico-wrap { background: rgba(204,32,32,.2); }
.why-ico { width: 22px; height: 22px; color: var(--red); }
.why-card h3 { font-size: .88rem; font-weight: 700; margin-bottom: 9px; }
.why-card p { font-size: .82rem; color: var(--gray); line-height: 1.8; }

/* ─── PARTNERS ───────────────────────────── */
.partners-sec { padding: 48px 0; background: var(--navy2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners-label { text-align: center; font-size: .67rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 28px; }
.partners-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.partner-item { flex: 1; min-width: 100px; max-width: 180px; padding: 20px 16px; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 10px; transition: background .2s; }
.partner-item:last-child { border-right: none; }
.partner-item:hover { background: var(--navy3); }
.partner-ico { width: 28px; height: 28px; color: var(--gray); transition: color .2s; }
.partner-item:hover .partner-ico { color: var(--red); }
.partner-name { font-family: 'Montserrat', sans-serif; font-size: .73rem; font-weight: 700; color: var(--gray); letter-spacing: .5px; transition: color .2s; text-align: center; }
.partner-item:hover .partner-name { color: var(--white); }

/* ─── CTA BAR ────────────────────────────── */
.cta-bar { background: var(--red); padding: 52px 5%; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-bar h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 800; margin-bottom: 6px; }
.cta-bar p { opacity: .85; font-size: .88rem; max-width: 480px; }
.btn-white { background: #fff; color: var(--red); padding: 12px 26px; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; cursor: pointer; border: none; transition: opacity .2s; flex-shrink: 0; }
.btn-white:hover, .btn-white:focus { opacity: .88; }

/* ─── PAGE BANNER ────────────────────────── */
.page-banner { padding: clamp(88px,12vw,128px) 5% 60px; background: var(--navy); border-bottom: 1px solid var(--line); }
.page-banner h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.7rem,4vw,3rem); font-weight: 800; line-height: 1.15; max-width: 680px; margin-bottom: 14px; }
.page-banner h1 span { color: var(--red); }
.page-banner p { color: var(--gray); max-width: 540px; font-size: .9rem; line-height: 1.8; }

/* ─── SERVICES ───────────────────────────── */
.svc-tabs { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.svc-tab { padding: 13px 20px; font-size: .7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); cursor: pointer; border-bottom: 2px solid transparent; background: none; transition: color .2s, border-color .2s; margin-bottom: -1px; white-space: nowrap; }
.svc-tab:hover { color: var(--white); }
.svc-tab.active { color: var(--white); border-bottom-color: var(--red); }
.svc-panel { display: none; }
.svc-panel.active { display: grid; grid-template-columns: 1fr 1fr; }
.svc-panel img { width: 100%; height: 420px; object-fit: cover; filter: brightness(.8) saturate(.7); }
.svc-body { padding: 44px 40px; background: var(--navy2); display: flex; flex-direction: column; justify-content: center; }
.svc-body h3 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.2rem,2.5vw,1.5rem); font-weight: 800; margin-bottom: 14px; }
.svc-body p { color: var(--gray); font-size: .88rem; line-height: 1.85; margin-bottom: 22px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag { border: 1px solid var(--line); padding: 4px 12px; font-size: .63rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray); }

/* ─── PROJECTS ───────────────────────────── */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.proj-card { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.4) saturate(.5); transition: transform .5s, filter .4s; }
.proj-card:hover img { transform: scale(1.05); filter: brightness(.3) saturate(.4); }
.proj-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px; background: linear-gradient(to top, rgba(11,21,38,.95), transparent 70%); }
.proj-cat { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.proj-name { font-family: 'Montserrat', sans-serif; font-size: .88rem; font-weight: 700; }
.proj-yr { font-size: .73rem; color: var(--gray); margin-top: 3px; }

/* ─── CAREER ─────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 32px; }
.val-card { background: var(--navy2); border: 1px solid var(--line); padding: 28px 20px; text-align: center; transition: border-color .2s; }
.val-card:hover { border-color: rgba(204,32,32,.4); }
.val-ico { width: 36px; height: 36px; color: var(--red); margin: 0 auto 14px; }
.val-card h3 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 8px; }
.val-card p { font-size: .78rem; color: var(--gray); line-height: 1.75; }
.job-list { max-width: 840px; margin: 0 auto; }
.job-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); cursor: pointer; transition: padding-left .2s; }
.job-row:hover, .job-row:focus-within { padding-left: 10px; }
.job-title { font-weight: 600; font-size: .9rem; margin-bottom: 5px; }
.job-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.jm { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.jm.red { color: var(--red); }
.job-arr { width: 20px; height: 20px; color: var(--gray); transition: color .2s, transform .2s; flex-shrink: 0; }
.job-row:hover .job-arr, .job-row:focus-within .job-arr { color: var(--red); transform: translateX(5px); }

/* ─── CONTACT ────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; border: 1px solid var(--line); }
.contact-left { padding: 48px 40px; background: var(--navy3); }
.contact-left h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.2rem,2.5vw,1.5rem); font-weight: 800; margin-bottom: 12px; }
.contact-left h2 span { color: var(--red); }
.contact-left > p { color: var(--gray); font-size: .86rem; line-height: 1.8; margin-bottom: 36px; }
.c-item { display: flex; gap: 12px; margin-bottom: 22px; align-items: flex-start; }
.c-ico { width: 34px; height: 34px; background: var(--navy2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-ico svg { width: 16px; height: 16px; color: var(--red); }
.c-lbl { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 3px; }
.c-val { font-size: .86rem; }
.contact-right { padding: 48px 40px; }
.contact-right h3 { font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-group { margin-bottom: 10px; }
.f-group label { display: block; font-size: .62rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.f-group input, .f-group textarea, .f-group select {
  width: 100%; background: var(--navy2); border: 1px solid var(--line);
  padding: 10px 13px; color: var(--white); font-family: 'Inter', sans-serif;
  font-size: .87rem; outline: none; transition: border-color .2s;
}
.f-group input:focus, .f-group textarea:focus, .f-group select:focus { border-color: var(--red); }
.f-group textarea { min-height: 100px; resize: vertical; }
.f-group select option { background: var(--navy2); }

/* ─── FOOTER ─────────────────────────────── */
footer { background: var(--navy2); border-top: 1px solid var(--line); padding: 52px 5% 32px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; max-width: 1200px; margin: 0 auto 40px; }
.ft-brand img { height: 36px; margin-bottom: 12px; }
.ft-brand p { color: var(--gray); font-size: .8rem; line-height: 1.75; max-width: 260px; }
.ft-col h4 { font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; font-weight: 600; }
.ft-col a { display: block; color: var(--gray); font-size: .8rem; margin-bottom: 9px; cursor: pointer; transition: color .2s; }
.ft-col a:hover, .ft-col a:focus { color: var(--white); }
.ft-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--gray); font-size: .73rem; }

/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════ */
@media (max-width:1024px) {
  .nav-links { gap: 16px; }
  .about-grid { gap: 40px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-brand { grid-column: 1/-1; }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .proj-grid { grid-template-columns: repeat(2,1fr); }
  .svc-panel.active { grid-template-columns: 1fr; }
  .svc-panel img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-slider { max-height: 700px; }
  .slide-inner h2 { font-size: clamp(1.5rem,6vw,2.4rem); }
  .slider-controls { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-img img { height: 260px; }
  .iso-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .cta-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .svc-tabs { flex-direction: column; }
  .svc-tab { border-bottom: 1px solid var(--line); border-left: 2px solid transparent; }
  .svc-tab.active { border-left-color: var(--red); }
  .svc-panel.active { grid-template-columns: 1fr; }
  .svc-panel img { height: 240px; }
  .svc-body { padding: 28px 24px; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 32px 24px; }
  .f-row { grid-template-columns: 1fr; }
  .partners-grid { justify-content: flex-start; }
  .partner-item { flex: 0 0 calc(33.333% - 2px); }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ft-brand { grid-column: 1/-1; }
  section, .about-sec, .products-sec, .why-sec { padding: 56px 0; }
}

@media (max-width:480px) {
  :root { --nav-h: 56px; }
  .nav-logo-text { display: none; }
  .slide-btns { flex-direction: column; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--line); }
  .stat-item { padding: 16px 12px; gap: 10px; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .about-img img { height: 220px; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .iso-left { flex-direction: column; gap: 12px; }
  .iso-badges { width: 100%; justify-content: space-between; }
  .iso-badge-item { flex: 1; min-width: 0; }
  .cta-bar { padding: 36px 5%; }
  .btn-white { width: 100%; text-align: center; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .ft-grid { grid-template-columns: 1fr; }
  .partner-item { flex: 0 0 calc(50% - 1px); }
  .partner-item:nth-child(2n) { border-right: none; }
  .partner-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .page-banner { padding: 76px 5% 40px; }
  .svc-body { padding: 22px 18px; }
  .contact-left, .contact-right { padding: 22px 18px; }
}

/* High contrast / reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
.slide-inner-h {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem,5vw,3.6rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 16px;
}