/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #FAFAF7;
  --bg-soft:   #F1F2EC;
  --white:     #FFFFFF;
  --ink:       #0F1C2E;
  --ink-soft:  #44505E;
  --muted:     #7A838D;
  --navy:      #102035;
  --emerald:   #C11F2F;
  --emerald-dk:#98121F;
  --emerald-lt:#FBE9EA;
  --line:      #E6E7E0;

  --display: 'Sora', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  --nav-h: 76px;
  --section-pad: 110px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(15,28,46,0.05), 0 4px 12px rgba(15,28,46,0.05);
  --shadow-md: 0 4px 8px rgba(15,28,46,0.05), 0 16px 40px -8px rgba(15,28,46,0.12);
  --shadow-lg: 0 8px 16px rgba(15,28,46,0.06), 0 32px 64px -16px rgba(15,28,46,0.18);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ─── Scroll progress ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(to right, var(--emerald), #E5484D);
  z-index: 200;
}

/* ─── Buttons ─── */
.btn-primary, .btn-secondary, .btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-primary {
  background: var(--emerald); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(193,31,47,0.5);
}
.btn-primary:hover { background: var(--emerald-dk); transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(193,31,47,0.6); }
.btn-secondary {
  background: transparent; color: var(--ink);
  border: 1.5px solid #CDD2C9;
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--emerald-dk);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.35);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(0,0,0,0.45); }

/* ─── Typography helpers ─── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
}
.section-tag::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px;
  background: var(--emerald); display: inline-block;
}
.section-tag.on-dark { color: #F2A0A5; }
.section-tag.on-dark::before { background: #F2A0A5; }

.section-heading {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 22px;
}
.section-heading.on-dark { color: #fff; }

.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 600px; line-height: 1.7; }
.section-sub.on-dark-sub { color: rgba(255,255,255,0.72); }

.body-text { font-size: 1rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 18px; }
.body-text.on-dark-text { color: rgba(255,255,255,0.8); }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header.center .section-tag::before { display: none; }

/* ─── Reveal animation ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════ NAV ═══════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(15,28,46,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; width: min(1180px, 92%); margin: 0 auto;
}
.logo { display: flex; align-items: center; }
.logo-word { height: 28px; width: auto; display: block; transition: opacity var(--transition); }
.logo:hover .logo-word { opacity: 0.75; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--transition);
}
.nav-links a:not(.nav-cta):hover { color: var(--emerald-dk); }
.nav-links .nav-cta {
  padding: 10px 24px;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { background: var(--emerald-dk); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Nav over the dark hero (before any scroll) */
#navbar:not(.scrolled) .logo-word path[stroke="#0F1C2E"] { stroke: #fff; }
#navbar:not(.scrolled) .nav-links a:not(.nav-cta) { color: rgba(255,255,255,0.85); }
#navbar:not(.scrolled) .nav-links a:not(.nav-cta):hover { color: #F2A0A5; }
#navbar:not(.scrolled) .nav-cta { background: var(--emerald); }
#navbar:not(.scrolled) .nav-toggle span { background: #fff; }

/* ═══════════════ HERO ═══════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 90px;
  overflow: hidden;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.14) translate(-1.6%, -1.2%); }
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(78deg, rgba(10,14,22,0.86) 0%, rgba(10,14,22,0.6) 42%, rgba(10,14,22,0.16) 78%),
    linear-gradient(180deg, rgba(10,14,22,0.4) 0%, transparent 28%, transparent 68%, rgba(10,14,22,0.6) 100%);
}
.hero-wrap { position: relative; z-index: 2; width: min(1180px, 92%); }
.hero-content { text-align: left; max-width: 780px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: #F2A0A5;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 38px; height: 2px;
  background: var(--emerald);
  flex-shrink: 0;
  transform-origin: left center;
  animation: dashGrow 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
@keyframes dashGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.9rem, 7.8vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineRise 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-headline .line:nth-child(1) > span { animation-delay: 0.25s; }
.hero-headline .line:nth-child(2) > span { animation-delay: 0.4s; }
/* letter-cascade variant: JS splits line 1 into .ch spans */
.hero-headline .line > span.split { transform: none; animation: none; }
.hero-headline .ch {
  display: inline-block;
  transform: translateY(115%); opacity: 0;
  animation: chRise 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(0.22s + var(--i) * 0.05s);
}
@keyframes chRise { to { transform: translateY(0); opacity: 1; } }
.grad {
  font-style: normal;
  background: linear-gradient(100deg, #E5484D 10%, var(--emerald) 45%, #F2A0A5 70%, #E5484D 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradFlow 6s ease-in-out 1.8s infinite alternate;
}
@keyframes gradFlow { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
@keyframes lineRise { to { transform: translateY(0); } }

.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.78); line-height: 1.7;
  max-width: 580px; margin: 0 0 40px;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.85s forwards;
}
#hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.45); }
#hero .btn-secondary:hover { border-color: #fff; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-chip {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column;
  padding: 14px 20px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.hero-chip strong {
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 700; color: var(--ink); line-height: 1.2;
}
.hero-chip span { font-size: 0.74rem; font-weight: 500; color: var(--muted); }
.hero-chip {
  animation: chipIn 0.65s cubic-bezier(0.16,1,0.3,1) both, floaty 5s ease-in-out infinite;
  will-change: transform;
}
.chip-1 { top: 24%; right: 16%; animation-delay: 1.3s, 1.95s; }
.chip-2 { top: 48%; right: 6%; animation-delay: 1.45s, 2.4s; }
.chip-3 { bottom: 16%; right: 19%; animation-delay: 1.6s, 2.85s; }
@keyframes chipIn {
  from { opacity: 0; transform: translate(var(--px, 0px), calc(var(--py, 0px) + 18px)) scale(0.85); }
  to   { opacity: 1; transform: translate(var(--px, 0px), var(--py, 0px)) scale(1); }
}
@keyframes floaty {
  0%, 100% { transform: translate(var(--px, 0px), var(--py, 0px)); }
  50%      { transform: translate(var(--px, 0px), calc(var(--py, 0px) - 8px)); }
}
.hero-media { transition: transform 0.3s ease-out; will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .hero-chip, .hero-media img, .hero-media, .hero-eyebrow::before,
  .hero-eyebrow, .hero-sub, .hero-actions,
  .hero-headline .line > span, .hero-headline .ch, .grad { animation: none !important; opacity: 1; transform: none; }
}

/* ═══════════════ ABOUT ═══════════════ */
#about { padding: var(--section-pad) 0; }
.about-grid { display: grid; grid-template-columns: 440px 1fr; gap: 72px; align-items: start; }

.about-visual { position: sticky; top: 110px; }
.about-img-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-img-wrap:hover img { transform: scale(1.05); }
.about-badge {
  display: inline-flex; flex-direction: column;
  margin-top: -44px; margin-left: 24px;
  position: relative; z-index: 2;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.badge-year { font-family: var(--display); font-size: 1.8rem; font-weight: 700; color: var(--emerald-dk); line-height: 1.1; }
.badge-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--emerald-lt); color: var(--emerald-dk);
  border-radius: 10px; font-size: 0.8rem;
}
.pillar strong { display: block; font-family: var(--display); font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.pillar p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.mv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.mv-card { padding: 28px; border-radius: var(--r-md); }
.mv-card.navy { background: var(--navy); }
.mv-card.mint { background: var(--emerald-lt); }
.card-label {
  font-family: var(--display);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.mv-card.navy .card-label { color: #F2A0A5; }
.mv-card.mint .card-label { color: var(--emerald-dk); }
.card-text { font-size: 0.95rem; line-height: 1.65; }
.mv-card.navy .card-text { color: rgba(255,255,255,0.88); }
.mv-card.mint .card-text { color: #5C1E24; }

/* ═══════════════ STATS BAND ═══════════════ */
#stats-band {
  position: relative;
  padding: 84px 0;
  background: var(--navy);
  overflow: hidden;
}
.band-texture {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.14;
}
#stats-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 20%, rgba(229,72,77,0.22), transparent 65%);
}
#stats-band .container { position: relative; z-index: 2; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats-row .stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: #fff; line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}

/* ═══════════════ SERVICES ═══════════════ */
#services { padding: var(--section-pad) 0; background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(193,31,47,0.3);
}
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.service-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--emerald-lt); color: var(--emerald-dk);
  border-radius: 14px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: var(--emerald); color: #fff; transform: scale(1.06); }
.service-num { font-family: var(--display); font-size: 0.85rem; font-weight: 600; color: #C2C8BE; }
.service-card h3 { font-family: var(--display); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════ SECTORS ═══════════════ */
#sectors { padding: var(--section-pad) 0; }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(193,31,47,0.3);
}
.sector-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--emerald-lt); color: var(--emerald-dk);
  border-radius: 999px;
  margin-bottom: 18px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.sector-icon svg { width: 24px; height: 24px; }
.sector-card:hover .sector-icon { background: var(--emerald); color: #fff; transform: rotate(-6deg) scale(1.06); }
.sector-card h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.sector-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════ GLOBAL PRESENCE ═══════════════ */
#presence {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--navy);
  overflow: hidden;
}
.presence-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0.35;
}
#presence::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,32,53,0.6), rgba(16,32,53,0.85));
}
#presence .container { position: relative; z-index: 2; }
.regions-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 16px; align-items: start; }
.region-block {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 26px 22px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.region-block:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); border-color: rgba(242,160,165,0.5); }
.region-block.hq { background: rgba(229,72,77,0.14); border-color: rgba(242,160,165,0.35); }
.region-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #F2A0A5; border: 1px solid rgba(242,160,165,0.5);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 12px;
}
.region-block h4 { font-family: var(--display); font-size: 1.02rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.region-block.hq p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.65; }
.region-block ul li {
  font-size: 0.86rem; color: rgba(255,255,255,0.68);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.region-block ul li:last-child { border-bottom: none; }
.region-block ul li::before { content: '· '; color: #F2A0A5; font-weight: 700; }

/* ═══════════════ TEAM ═══════════════ */
#team { padding: var(--section-pad) 0; }
.team-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
.team-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-img-wrap img {
  width: 100%; height: 600px; object-fit: cover;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.team-img-wrap:hover img { transform: scale(1.04); }
.expertise-list { margin-top: 28px; display: flex; flex-direction: column; }
.expertise-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--transition);
}
.expertise-item:hover { padding-left: 8px; }
.expertise-item:last-child { border-bottom: none; }
.expertise-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0; margin-top: 7px;
  transition: box-shadow var(--transition);
}
.expertise-item:hover .expertise-dot { box-shadow: 0 0 0 5px rgba(193,31,47,0.14); }
.expertise-item strong { display: block; font-family: var(--display); font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.expertise-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════ CONTACT ═══════════════ */
#contact { padding: 0 0 var(--section-pad); }
.contact-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.contact-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(54,12,16,0.94) 25%, rgba(122,20,28,0.82) 60%, rgba(16,32,53,0.55) 100%);
}
.contact-card-content {
  position: relative; z-index: 2;
  padding: clamp(48px, 7vw, 88px);
  max-width: 640px;
}
.contact-card .body-text { margin-bottom: 36px; }

/* ═══════════════ FOOTER ═══════════════ */
footer { background: var(--navy); padding: 44px 0; }
.footer-inner {
  width: min(1180px, 92%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { display: flex; align-items: center; margin-bottom: 8px; }
.footer-logo .logo-word { height: 24px; width: auto; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-nav a:hover { color: #F2A0A5; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1100px) {
  .regions-grid { grid-template-columns: 1fr 1fr; }
  .region-block.hq { grid-column: 1 / -1; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 76px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-visual { position: static; }
  .about-img-wrap img { height: 380px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .team-inner { grid-template-columns: 1fr; gap: 44px; }
  .team-img-wrap img { height: 420px; }
  .chip-3 { display: none; }
}
@media (max-width: 660px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(14px);
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { display: block; padding: 14px 28px; width: 100%; }
  .nav-links.open .nav-cta { margin: 10px 28px 0; width: auto; text-align: center; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .region-block.hq { grid-column: auto; }
  .mv-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; max-width: 320px; }
  .hero-chip { display: none; }
}
