/* ═══════════════════════════════════════════════════════════════
   MGT | MgucaTech Solutions  —  Global Stylesheet
   Fonts: Space Grotesk (headings) · Inter (body)
   Brand: Orange #F77F00  ·  Teal #0A9396
═══════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

/* ── Variables ── */
:root {
  --orange:       #F77F00;
  --orange-dim:   rgba(247,127,0,.14);
  --orange-glow:  rgba(247,127,0,.30);
  --teal:         #0A9396;
  --teal-bright:  #2EC4B6;
  --teal-dim:     rgba(10,147,150,.14);
  --teal-glow:    rgba(10,147,150,.30);

  --bg-0: #020C11;
  --bg-1: #071420;
  --bg-2: #0C1D2C;

  --txt-1: #EDF4F7;
  --txt-2: #7AADB8;
  --txt-3: #3B6270;

  --border: rgba(10,147,150,.18);
  --border-o: rgba(247,127,0,.22);

  --fh: 'Space Grotesk', sans-serif;
  --fb: 'Inter', sans-serif;

  --nav-h: 4rem;
  --max:   1100px;
  --gap:   1.5rem;
  --tr:    .25s ease;
  --r:     10px;
}

body.light-theme {
  --bg-0: #F6FAFA;
  --bg-1: #EAF3F3;
  --bg-2: #FFFFFF;

  --txt-1: #102A31;
  --txt-2: #355D67;
  --txt-3: #6F8A91;

  --border: rgba(10,147,150,.24);
  --border-o: rgba(247,127,0,.30);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; }
body   { font-family: var(--fb); background: var(--bg-0); color: var(--txt-2); overflow-x: hidden; line-height: 1; }
img, video { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--fb); }
input, textarea { font-family: var(--fb); outline: none; border: none; background: none; }
textarea { resize: vertical; }

/* ── Scrollbar ── */
::-webkit-scrollbar         { width: 4px; background: var(--bg-1); }
::-webkit-scrollbar-thumb   { background: linear-gradient(var(--teal), var(--orange)); border-radius: 4px; }

/* ── Utilities ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5.5rem 0; }

.section--alt {
  background: var(--bg-1);
  position: relative;
}
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, var(--teal-dim) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, var(--orange-dim) 0%, transparent 55%);
  pointer-events: none;
}

.eyebrow {
  display: block;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: .875rem;
}
.eyebrow--center { text-align: center; }

.h2 {
  font-family: var(--fh);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--txt-1);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.h2--center  { text-align: center; margin-bottom: 3rem; }

.body-copy {
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: -1.5rem auto 2.5rem;
  font-size: .95rem;
  line-height: 1.8;
}

/* gradient text */
em {
  font-style: normal;
  background: linear-gradient(130deg, var(--orange) 0%, var(--teal-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .85rem 2rem;
  border-radius: 6px;
  transition: var(--tr);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, #C86200 100%);
  color: #fff;
}
.btn--primary:hover {
  box-shadow: 0 6px 30px var(--orange-glow);
  transform: translateY(-2px);
}
.btn--outline {
  border-color: var(--border);
  color: var(--txt-1);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
  box-shadow: 0 0 18px var(--teal-glow);
}
.btn--full { width: 100%; justify-content: center; }

/* ════════════════════════════════
   HEADER / NAV
════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background var(--tr), backdrop-filter var(--tr), border-color var(--tr);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(2,12,17,.93);
  backdrop-filter: blur(22px);
  border-color: var(--border);
}

body.light-theme .header.scrolled {
  background: rgba(246,250,250,.94);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo { height: 40px; width: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav__link {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 500;
  color: var(--txt-2);
  letter-spacing: .04em;
  transition: color var(--tr);
  position: relative;
  padding-bottom: .2rem;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 1px;
  transition: width var(--tr);
}
.nav__link:hover,
.nav__link.active-link            { color: var(--txt-1); }
.nav__link:hover::after,
.nav__link.active-link::after     { width: 100%; }

.nav__cta {
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: .4rem 1.1rem;
  border-radius: 5px;
}
.nav__cta::after { display: none; }
.nav__cta:hover  { background: var(--orange-dim); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__theme {
  font-size: 1.05rem;
  color: var(--txt-2);
  cursor: pointer;
  transition: color var(--tr);
}
.nav__theme:hover { color: var(--teal-bright); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--txt-1);
  border-radius: 2px;
  transition: var(--tr);
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.25) saturate(.55);
}

body.light-theme .hero__photo {
  filter: brightness(.82) saturate(.85);
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2,12,17,.94) 0%,
    rgba(10,147,150,.10) 55%,
    rgba(247,127,0,.07) 100%
  );
}

body.light-theme .hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(246,250,250,.94) 0%,
    rgba(234,243,243,.78) 52%,
    rgba(247,127,0,.16) 100%
  );
}

/* subtle circuit grid */
.hero__grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,147,150,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,147,150,.055) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1.5rem;
}

/* animated pulse dot */
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange-glow);
  animation: pulse 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--orange-glow); }
  70%  { box-shadow: 0 0 0 10px rgba(247,127,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,127,0,0); }
}

.hero__title {
  font-family: var(--fh);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--txt-1);
  line-height: 1.04;
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.hero__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--txt-2);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--txt-3);
  animation: bob 2.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.stats-bar {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: 96px;
  padding: 1.2rem 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}

.stat__num {
  font-family: var(--fh);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat__num sup { font-size: 1.2rem; }

.stat__label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--txt-3);
}

.stats-bar__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text .h2 { margin-bottom: .75rem; }

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pillar__icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.pillar div { display: flex; flex-direction: column; gap: .2rem; }
.pillar strong {
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 600;
  color: var(--txt-1);
}
.pillar span { font-size: .82rem; color: var(--txt-2); }

.about__visual { position: relative; }

.about__img {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--border);
  filter: brightness(.8) saturate(1.15);
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-0);
  border: 1px solid var(--border-o);
  border-radius: var(--r);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 28px var(--orange-glow);
}
.about__badge-num {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.about__badge-num sup { font-size: 1.3rem; }
.about__badge-lbl {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-3);
  text-align: center;
  line-height: 1.4;
}

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
  z-index: 1;
}

.svc {
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.svc:hover {
  border-color: var(--teal);
  box-shadow: 0 0 30px var(--teal-glow), 0 12px 40px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.svc__icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  transition: box-shadow var(--tr);
}
.svc:hover .svc__icon { box-shadow: 0 0 14px var(--orange-glow); }

.svc__title {
  font-family: var(--fh);
  font-size: .98rem;
  font-weight: 600;
  color: var(--txt-1);
}
.svc__body {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--txt-2);
  flex: 1;
}
.svc__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal-bright);
  letter-spacing: .04em;
  transition: color var(--tr), gap var(--tr);
}
.svc__link:hover { color: var(--orange); gap: .55rem; }

/* ════════════════════════════════
   HOW WE WORK
════════════════════════════════ */
.steps {
  display: flex;
  align-items: flex-start;
  margin-top: .5rem;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 2rem;
}

.step__num {
  font-family: var(--fh);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--teal-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step__icon {
  font-size: 2.4rem;
  color: var(--teal);
  text-shadow: 0 0 18px var(--teal-glow);
}

.step__title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-1);
}
.step__body {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--txt-2);
}

.step__line {
  flex-shrink: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  margin-top: 5.5rem;
  opacity: .4;
}

/* ════════════════════════════════
   SECTORS
════════════════════════════════ */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: rgba(255,255,255,.06);
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.sector {
  background: #0B3C49;
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: background var(--tr);
}
.sector:hover { background: #0E4455; }

.sector--mid       { background: #0F4A5C; }
.sector--mid:hover { background: #12556A; }

body.light-theme .sector,
body.light-theme .sector--logo {
  background: #D9ECEC;
}

body.light-theme .sector:hover,
body.light-theme .sector--mid:hover {
  background: #CBE4E4;
}

body.light-theme .sector--mid {
  background: #D0E8E7;
}

body.light-theme .sector__name,
body.light-theme .sector__icon {
  color: var(--txt-1);
}

.sector--logo {
  grid-column: span 2;
  background: #0B3C49;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.sector--logo:hover { background: #0B3C49; }

.sector__name {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.35;
}

.sector__icon {
  font-size: 4.5rem;
  color: rgba(255,255,255,.75);
  align-self: center;
  display: block;
}

.sector__logo { max-width: 300px; width: 85%; }

/* ════════════════════════════════
   VIDEO
════════════════════════════════ */
.video-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(10,147,150,.10);
  max-width: 820px;
  margin: 0 auto;
}
.video-wrap video { display: block; width: 100%; }

.video-btn {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #C86200);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px var(--orange-glow);
  transition: transform var(--tr), box-shadow var(--tr);
}
.video-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 36px var(--orange-glow);
}

/* ════════════════════════════════
   TRUST / WHY MGT
════════════════════════════════ */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
  z-index: 1;
}

.trust-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.trust-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 26px var(--teal-glow);
}

.trust-card__num {
  display: block;
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: .75rem;
  line-height: 1;
}
.trust-card__title {
  font-family: var(--fh);
  font-size: .98rem;
  font-weight: 600;
  color: var(--txt-1);
  margin-bottom: .75rem;
}
.trust-card__body {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--txt-2);
}

/* ════════════════════════════════
   PARTNERS
════════════════════════════════ */
.partners-section { padding-top: 4rem; padding-bottom: 4rem; }

.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2.5rem;
}

.partner img {
  height: 38px;
  width: auto;
  filter: invert(.7) brightness(.65);
  opacity: .6;
  transition: opacity var(--tr), filter var(--tr);
}
.partner:hover img { opacity: 1; filter: invert(0) brightness(1.1) saturate(1.2); }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__left .h2 { margin-bottom: .75rem; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: .5rem;
}
.contact__info li {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .875rem;
}
.contact__info i {
  font-size: 1.05rem;
  color: var(--orange);
  flex-shrink: 0;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  width: 100%;
  padding: .85rem 1.1rem;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--txt-1);
  font-size: .875rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  display: block;
}
.form-field::placeholder { color: var(--txt-3); }
.form-field:focus {
  border-color: var(--teal);
  box-shadow: 0 0 14px var(--teal-glow);
}
.form-field--ta { min-height: 130px; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.footer__top {
  padding: 4.5rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo {
  height: 42px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--txt-2);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer__socials { display: flex; gap: .75rem; }

.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 7px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--txt-2);
  transition: color var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.footer__socials a:hover {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}

.footer__heading {
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1.25rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: .875rem; }
.footer__col a  { font-size: .875rem; color: var(--txt-2); transition: color var(--tr); }
.footer__col a:hover { color: var(--txt-1); }

.footer__bottom {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--txt-3);
}
.footer__bottom div { display: flex; gap: 1.5rem; }
.footer__bottom a   { color: var(--txt-3); transition: color var(--tr); }
.footer__bottom a:hover { color: var(--txt-2); }

/* ════════════════════════════════
   SCROLL TOP
════════════════════════════════ */
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: -6rem;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #077A7D);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  z-index: 900;
  box-shadow: 0 0 18px var(--teal-glow);
  transition: bottom .35s ease, box-shadow var(--tr);
}
.scroll-top.show { bottom: 1.5rem; }
.scroll-top:hover { box-shadow: 0 0 28px var(--teal-glow); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .services       { grid-template-columns: repeat(2, 1fr); }
  .trust          { grid-template-columns: repeat(2, 1fr); }
  .footer__top    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about          { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge   { left: 0; bottom: -1rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__list {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(72%, 320px);
    flex-direction: column;
    align-items: flex-start;
    background: rgba(2,12,17,.97);
    border-left: 1px solid var(--border);
    backdrop-filter: blur(24px);
    padding: 5rem 2rem 2rem;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .nav__list.open { transform: translateX(0); }

  .nav__burger { display: flex; z-index: 1001; }

  /* close X when open */
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero__title   { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero__actions { flex-direction: column; }

  /* Stats */
  .stats-bar__divider { display: none; }
  .stats-bar__inner   { justify-content: center; gap: 2rem; }

  /* About */
  .about__badge { position: static; margin-top: 1rem; align-self: flex-start; }

  /* Steps */
  .steps      { flex-direction: column; align-items: center; }
  .step__line { width: 1px; height: 40px; margin-top: 0; }

  /* Sectors */
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .sector--logo { grid-column: span 2; }

  /* Trust */
  .trust { grid-template-columns: 1fr; }

  /* Contact */
  .contact   { grid-template-columns: 1fr; gap: 3rem; }
  .form-row  { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top    { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .75rem; text-align: center; }
}

@media (max-width: 540px) {
  .services         { grid-template-columns: 1fr; }
  .sectors          { grid-template-columns: 1fr; }
  .sector--logo     { grid-column: span 1; }
  .stats-bar__inner { flex-direction: column; gap: 1.5rem; }
  .section          { padding: 4rem 0; }
}
