/* ==========================================================================
   EQRN AI MISSION INDIA — Global Stylesheet
   Palette derived from the EQRN brand mark: deep navy, India green, saffron.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --navy-950: #050e1f;
  --navy-900: #071427;
  --navy-850: #0a1c39;
  --navy-800: #0d2247;
  --navy-700: #123059;
  --navy-600: #1b4079;
  --green-600: #35901f;
  --green-500: #4caf29;
  --green-400: #6cc93f;
  --green-300: #96e05f;
  --saffron-600: #e07b0e;
  --saffron-500: #f5901f;
  --saffron-400: #ffa940;
  --sky-500: #38a5dc;

  /* Neutrals */
  --ink: #0c1524;
  --body: #46566e;
  --muted: #6c7c93;
  --line: #e3e9f2;
  --line-strong: #cfd9e8;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --surface-tint: #eef4fb;

  /* Type */
  --font-sans: "Plus Jakarta Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1220px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --header-h: 84px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Elevation */
  --sh-sm: 0 2px 8px rgba(12, 21, 36, .06);
  --sh-md: 0 12px 30px rgba(12, 21, 36, .09);
  --sh-lg: 0 26px 60px rgba(7, 20, 39, .16);
  --sh-glow: 0 18px 44px rgba(76, 175, 41, .28);

  /* Motion */
  --t-fast: .18s cubic-bezier(.4, 0, .2, 1);
  --t: .32s cubic-bezier(.4, 0, .2, 1);
  --t-slow: .6s cubic-bezier(.22, 1, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.022em;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 1.1rem + 2.3vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1rem + .8vw, 1.55rem); }
h4 { font-size: 1.12rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-600); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--saffron-600); }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; border: 0; }

ul, ol { margin: 0 0 1.1rem; padding-left: 1.15rem; }
li { margin-bottom: .45rem; }

strong { color: var(--ink); font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--green-500); color: #fff; }

:focus-visible {
  outline: 3px solid var(--green-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: .8rem 1.4rem;
  background: var(--green-500);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding: clamp(3.6rem, 2rem + 6vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.6rem, 1.6rem + 4vw, 4.5rem) 0; }
.section--alt { background: var(--surface-alt); }

.section--dark {
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(76, 175, 41, .20), transparent 62%),
    radial-gradient(760px 420px at 92% 8%, rgba(245, 144, 31, .14), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-850) 55%, var(--navy-950));
  color: rgba(255, 255, 255, .74);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark strong { color: #fff; }

.grid { display: grid; gap: clamp(1.1rem, .6rem + 1.6vw, 1.9rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: clamp(1.03rem, .98rem + .3vw, 1.18rem); color: var(--body); }
.section--dark .lead { color: rgba(255, 255, 255, .78); }

/* --------------------------------------------------------------------------
   4. Section headings
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  padding: .38rem .95rem .38rem .55rem;
  border: 1px solid rgba(76, 175, 41, .3);
  border-radius: var(--r-pill);
  background: rgba(76, 175, 41, .08);
  color: var(--green-600);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--saffron-500), var(--green-500));
}
.section--dark .eyebrow {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .07);
  color: var(--green-300);
}

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1.2rem + 2.4vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

.tri-rule {
  width: 128px;
  height: 5px;
  border-radius: 5px;
  margin: 1.4rem 0 0;
  background: linear-gradient(90deg, var(--saffron-500) 0 34%, #ffffff 34% 42%, var(--green-500) 42% 100%);
  box-shadow: 0 0 0 1px rgba(12, 21, 36, .05);
}
.section-head--center .tri-rule { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .92rem 1.7rem;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn--primary:hover { color: #fff; box-shadow: 0 22px 50px rgba(76, 175, 41, .38); }

.btn--saffron {
  background: linear-gradient(135deg, var(--saffron-400), var(--saffron-600));
  color: #fff;
  box-shadow: 0 18px 44px rgba(245, 144, 31, .3);
}
.btn--saffron:hover { color: #fff; }

.btn--outline { border-color: var(--line-strong); background: #fff; color: var(--ink); }
.btn--outline:hover { border-color: var(--green-500); color: var(--green-600); box-shadow: var(--sh-md); }

.btn--ghost {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .14); color: #fff; }

.btn--sm { padding: .68rem 1.25rem; font-size: .86rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Top bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 42px;
  padding-block: .3rem;
}
.topbar__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .5rem; color: inherit; }
.topbar__item:hover { color: var(--green-300); }
.topbar__item svg { width: 15px; height: 15px; flex: none; color: var(--green-400); }
.topbar__socials { display: flex; align-items: center; gap: .5rem; }
.topbar__socials a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  color: rgba(255, 255, 255, .78);
  transition: var(--t-fast);
}
.topbar__socials a:hover { border-color: var(--green-500); background: var(--green-500); color: #fff; }
.topbar__socials svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   7. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7, 20, 39, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.site-header.is-stuck {
  background: rgba(5, 14, 31, .97);
  box-shadow: 0 12px 34px rgba(3, 10, 22, .38);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .8rem; flex: none; }
.brand__chip {
  display: grid;
  place-items: center;
  padding: .5rem .8rem;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  transition: transform var(--t);
}
.brand:hover .brand__chip { transform: translateY(-2px); }
.brand__chip img { width: 158px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__links > li { margin: 0; position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .7rem .9rem;
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, .8);
  font-size: .93rem;
  font-weight: 700;
  white-space: nowrap;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover,
.nav__link:focus-visible { color: #fff; background: rgba(255, 255, 255, .08); }
.nav__link.is-active { color: var(--green-300); }
.nav__link .caret { width: 12px; height: 12px; transition: transform var(--t-fast); }
.nav__item.is-open > .nav__link .caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  width: 306px;
  margin: 0;
  padding: .55rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__item.is-open > .nav__dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__dropdown li { margin: 0; }
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem .7rem;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__dropdown a:hover { background: var(--surface-tint); color: var(--green-600); }
.nav__dropdown .dot {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(76, 175, 41, .16);
}
.nav__dropdown .dot--soon { background: var(--saffron-500); box-shadow: 0 0 0 4px rgba(245, 144, 31, .16); }
.nav__dropdown small {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav__actions { display: flex; align-items: center; gap: .7rem; flex: none; }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform var(--t), opacity var(--t-fast);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(5, 14, 31, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
}
body.nav-open .nav__backdrop { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   8. Hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-850));
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(5, 14, 31, .55));
  pointer-events: none;
}

.slider {
  position: relative;
  max-width: 1600px;
  margin-inline: auto;
}
.slider__track {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.045);
  transition: opacity .9s ease, transform 7s linear, visibility .9s;
}
.slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide__link { position: absolute; inset: 0; z-index: 3; }

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(7, 20, 39, .45);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: var(--t);
}
.slider__btn:hover { background: var(--green-500); border-color: var(--green-500); }
.slider__btn svg { width: 20px; height: 20px; }
.slider__btn--prev { left: clamp(.6rem, 2vw, 1.6rem); }
.slider__btn--next { right: clamp(.6rem, 2vw, 1.6rem); }

.slider__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(.7rem, 2.2vw, 1.5rem);
  z-index: 6;
  display: flex;
  gap: .5rem;
  padding: .45rem .7rem;
  transform: translateX(-50%);
  background: rgba(7, 20, 39, .48);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--t);
}
.slider__dot.is-active { width: 30px; border-radius: var(--r-pill); background: var(--green-400); }

.slider__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 7;
  height: 4px;
  width: 100%;
  background: rgba(255, 255, 255, .12);
}
.slider__progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--saffron-500), var(--green-400));
}

/* Vertical tab rail under the hero */
.hero-rail {
  position: relative;
  z-index: 8;
  margin-top: -1px;
  background: rgba(5, 14, 31, .92);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.hero-rail__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1600px;
  margin-inline: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-rail__list li { margin: 0; }
.hero-rail__btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  padding: 1.05rem .9rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .07);
  background: none;
  color: rgba(255, 255, 255, .66);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t-fast);
}
.hero-rail__list li:last-child .hero-rail__btn { border-right: 0; }
.hero-rail__btn:hover { background: rgba(255, 255, 255, .05); color: #fff; }
.hero-rail__btn.is-active { background: rgba(76, 175, 41, .14); color: #fff; box-shadow: inset 0 -3px 0 var(--green-500); }
.hero-rail__num {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  font-size: .72rem;
  color: var(--green-300);
}

/* --------------------------------------------------------------------------
   9. Marquee ticker
   -------------------------------------------------------------------------- */
.ticker {
  overflow: hidden;
  background: linear-gradient(90deg, var(--green-600), var(--green-500) 45%, var(--saffron-500));
  color: #fff;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; align-items: center; flex: none; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: .78rem 1.5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__item::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   10. Split / media sections
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 1rem + 3.4vw, 4.2rem);
  align-items: center;
}
.split--media-right .split__media { order: 2; }

.media-frame { position: relative; }
.media-frame img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.media-frame::before {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 62%;
  height: 62%;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(76, 175, 41, .16), rgba(245, 144, 31, .16));
  z-index: -1;
}
.media-frame--tilt img { transform: perspective(1200px) rotateY(-4deg); }

.badge-float {
  position: absolute;
  right: -14px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 250px;
  padding: .95rem 1.2rem;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.badge-float__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
}
.badge-float__icon svg { width: 20px; height: 20px; }
.badge-float b { display: block; color: var(--ink); font-size: 1.05rem; line-height: 1.2; }
.badge-float span { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

/* Check list */
.check-list { margin: 1.4rem 0 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  margin-bottom: .8rem;
  padding-left: 2.1rem;
  font-weight: 600;
  color: var(--body);
}
.section--dark .check-list li { color: rgba(255, 255, 255, .8); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28rem;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(76, 175, 41, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234caf29' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* --------------------------------------------------------------------------
   11. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat { padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); background: rgba(7, 20, 39, .55); text-align: center; }
.stat__num {
  display: block;
  font-size: clamp(1.9rem, 1.3rem + 2.1vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--green-300), var(--saffron-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  display: block;
  margin-top: .6rem;
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Light variant */
.stats--light { background: var(--line); border-color: var(--line); }
.stats--light .stat { background: #fff; }
.stats--light .stat__label { color: var(--muted); }

/* --------------------------------------------------------------------------
   12. Service cards
   -------------------------------------------------------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1.1rem, .7rem + 1.2vw, 1.7rem);
}
.svc-grid > * { grid-column: span 2; }
.svc-grid--5 > *:nth-child(4),
.svc-grid--5 > *:nth-child(5) { grid-column: span 3; }

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(76, 175, 41, .4); box-shadow: var(--sh-lg); }

.svc-card__media { position: relative; aspect-ratio: 2 / 1; overflow: hidden; background: var(--navy-850); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }

.tag {
  position: absolute;
  top: .8rem;
  left: .8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .75rem;
  border-radius: var(--r-pill);
  background: rgba(7, 20, 39, .78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--saffron-400); }
.tag--live::before { background: var(--green-400); box-shadow: 0 0 0 0 rgba(108, 201, 63, .7); animation: pulse 2.2s infinite; }
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(108, 201, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 201, 63, 0); }
}

.svc-card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.2rem, 1rem + .7vw, 1.7rem); }
.svc-card__body h3 { margin-bottom: .5rem; }
.svc-card__body p { color: var(--body); font-size: .95rem; }
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--green-600);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.svc-card__more svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.svc-card:hover .svc-card__more svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   13. Feature / icon cards
   -------------------------------------------------------------------------- */
.feature {
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.feature:hover { transform: translateY(-5px); border-color: rgba(76, 175, 41, .35); box-shadow: var(--sh-md); }
.feature h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.feature p { font-size: .93rem; margin: 0; }

.feature__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(76, 175, 41, .16), rgba(56, 165, 220, .14));
  color: var(--green-600);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature--saffron .feature__icon { background: linear-gradient(135deg, rgba(245, 144, 31, .18), rgba(255, 169, 64, .12)); color: var(--saffron-600); }

.section--dark .feature {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}
.section--dark .feature:hover { background: rgba(255, 255, 255, .075); border-color: rgba(108, 201, 63, .4); }
.section--dark .feature p { color: rgba(255, 255, 255, .72); }
.section--dark .feature__icon { background: rgba(108, 201, 63, .14); color: var(--green-300); }

/* --------------------------------------------------------------------------
   14. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: clamp(2.4rem, 1.6rem + 3vw, 4rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(600px 300px at 85% 10%, rgba(245, 144, 31, .28), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 20% 30%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 20% 30%, #000, transparent 72%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band__text { max-width: 620px; }
.cta-band__text p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   15. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: clamp(3rem, 2rem + 4vw, 5.4rem) 0 clamp(2.6rem, 1.8rem + 3vw, 4.6rem);
  background:
    radial-gradient(760px 400px at 15% 0%, rgba(76, 175, 41, .22), transparent 60%),
    radial-gradient(700px 380px at 88% 20%, rgba(245, 144, 31, .16), transparent 62%),
    linear-gradient(150deg, var(--navy-900), var(--navy-850) 60%, var(--navy-950));
  color: rgba(255, 255, 255, .76);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%);
}
.page-hero > * { position: relative; }
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero--center h1 { max-width: none; }
.page-hero--center { text-align: center; }
.page-hero p { max-width: 62ch; }
.page-hero--center p { margin-inline: auto; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.crumbs li { margin: 0; color: rgba(255, 255, 255, .5); }
.crumbs a { color: rgba(255, 255, 255, .72); }
.crumbs a:hover { color: var(--green-300); }
.crumbs li + li::before { content: "/"; margin-right: .5rem; color: rgba(255, 255, 255, .3); }

/* --------------------------------------------------------------------------
   16. Upcoming-project pages
   -------------------------------------------------------------------------- */
.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.2rem;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(245, 144, 31, .5);
  border-radius: var(--r-pill);
  background: rgba(245, 144, 31, .12);
  color: var(--saffron-400);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.soon-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron-400);
  box-shadow: 0 0 0 0 rgba(245, 144, 31, .8);
  animation: pulse 2.2s infinite;
}

.banner-frame {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  background: var(--navy-900);
}
.banner-frame img { width: 100%; }

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.4vw, 1.8rem);
  margin-top: 1rem;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--saffron-500));
  opacity: .35;
}
.phase { position: relative; text-align: center; }
.phase__dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--navy-800);
  border: 2px solid var(--green-500);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}
.phase--soon .phase__dot { border-color: rgba(255, 255, 255, .22); color: rgba(255, 255, 255, .6); }
.phase h4 { margin-bottom: .35rem; color: #fff; font-size: 1rem; }
.phase p { font-size: .88rem; margin: 0; color: rgba(255, 255, 255, .62); }

.notify-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  border: 1px dashed rgba(255, 255, 255, .24);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .04);
}
.notify-card h3 { margin-bottom: .3rem; }
.notify-card p { margin: 0; }

/* --------------------------------------------------------------------------
   17. Video + brochure (EQRN Mart)
   -------------------------------------------------------------------------- */
.video-shell {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #000;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255, 255, 255, .12);
}
.video-shell video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }

.video-controls {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  display: flex;
  gap: .55rem;
}
.vbtn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .62rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--r-pill);
  background: rgba(7, 20, 39, .6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--t-fast);
}
.vbtn:hover { background: var(--green-500); border-color: var(--green-500); }
.vbtn svg { width: 16px; height: 16px; }

.brochure {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.2rem, .8rem + 1.6vw, 2.2rem);
  padding: clamp(1.4rem, 1.1rem + 1.4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #fff, var(--surface-tint));
  box-shadow: var(--sh-md);
}
.brochure__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  flex: none;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--saffron-500), var(--saffron-600));
  color: #fff;
  box-shadow: 0 14px 30px rgba(245, 144, 31, .3);
}
.brochure__icon svg { width: 34px; height: 34px; }
.brochure__text { flex: 1 1 320px; }
.brochure__text h3 { margin-bottom: .3rem; }
.brochure__text p { margin: 0; font-size: .94rem; }
.brochure__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .6rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fact-list { margin: 0; padding: 0; list-style: none; }
.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
}
.section--dark .fact-list li { border-color: rgba(255, 255, 255, .12); }
.fact-list li:last-child { border-bottom: 0; }
.fact-list dt, .fact-list b { color: var(--muted); font-weight: 700; }
.section--dark .fact-list b { color: rgba(255, 255, 255, .55); }
.fact-list span { color: var(--ink); font-weight: 700; text-align: right; }
.section--dark .fact-list span { color: #fff; }

/* --------------------------------------------------------------------------
   18. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.6rem, 1rem + 3vw, 3.4rem);
  align-items: start;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.info-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
}
.info-card__icon svg { width: 21px; height: 21px; }
.info-card h4 { margin-bottom: .2rem; font-size: 1rem; }
.info-card p { margin: 0; font-size: .93rem; line-height: 1.6; }
.info-card a { color: var(--body); font-weight: 600; }
.info-card a:hover { color: var(--green-600); }

.map-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  background: var(--surface-tint);
}
.map-frame iframe { width: 100%; height: clamp(300px, 42vw, 460px); border: 0; filter: saturate(1.05); }

/* Form */
.form-card {
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.6rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .84rem; font-weight: 800; letter-spacing: .04em; }
.field label .req { color: var(--saffron-600); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .88rem 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface-alt);
  color: var(--ink);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 138px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #9aa8bd; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(76, 175, 41, .14);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c7c93' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #d64545; box-shadow: 0 0 0 4px rgba(214, 69, 69, .1); }
.field__error { display: none; color: #c53030; font-size: .8rem; font-weight: 700; }
.field.has-error .field__error { display: block; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note { margin-top: 1rem; color: var(--muted); font-size: .82rem; }

.form-alert {
  display: none;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  font-size: .94rem;
}
.form-alert.is-visible { display: flex; }
.form-alert svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.form-alert b { display: block; margin-bottom: .15rem; }
.form-alert--ok { background: rgba(76, 175, 41, .1); border: 1px solid rgba(76, 175, 41, .35); color: var(--green-600); }
.form-alert--ok b { color: var(--green-600); }
.form-alert--err { background: rgba(214, 69, 69, .08); border: 1px solid rgba(214, 69, 69, .3); color: #c53030; }
.form-alert--err b { color: #c53030; }

.btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading .btn__spinner { display: block; }
.btn__spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2.4px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: rgba(255, 255, 255, .64);
  font-size: .93rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: clamp(1.8rem, 1rem + 3vw, 3.4rem);
  padding: clamp(2.8rem, 2rem + 3vw, 4.6rem) 0 clamp(2rem, 1.4rem + 2vw, 3rem);
}
.footer__brand-chip {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: .7rem .95rem;
  background: #fff;
  border-radius: var(--r-md);
}
.footer__brand-chip img { width: 190px; }
.footer h4 {
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-footer h4 {
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer__links { margin: 0; padding: 0; list-style: none; }
.footer__links li { margin-bottom: .7rem; }
.footer__links a { color: rgba(255, 255, 255, .64); font-weight: 600; }
.footer__links a:hover { color: var(--green-300); padding-left: 4px; }
.footer__links a { display: inline-block; transition: color var(--t-fast), padding-left var(--t-fast); }

.footer__contact { margin: 0; padding: 0; list-style: none; }
.footer__contact li { display: flex; gap: .8rem; margin-bottom: 1rem; line-height: 1.55; }
.footer__contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--green-400); }
.footer__contact a { color: rgba(255, 255, 255, .64); }
.footer__contact a:hover { color: var(--green-300); }

.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-md);
  color: rgba(255, 255, 255, .8);
  transition: var(--t);
}
.socials a:hover { transform: translateY(-3px); background: var(--green-500); border-color: var(--green-500); color: #fff; }
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__legal a { color: rgba(255, 255, 255, .55); }
.footer__legal a:hover { color: var(--green-300); }

/* --------------------------------------------------------------------------
   20. Back to top
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.8rem);
  z-index: 150;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  box-shadow: var(--sh-glow);
  transition: var(--t);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   21. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
  /* Failsafe: if JavaScript never runs, content still appears after 4s. */
  animation: reveal-fallback 1ms linear 4s forwards;
}
[data-reveal].is-in { opacity: 1; transform: none; }

@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .svc-grid > * { grid-column: span 2; }
  .svc-grid--5 > *:nth-child(5) { grid-column: 2 / span 2; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  :root { --header-h: 74px; }

  .nav__toggle { display: block; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 195;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    width: min(340px, 88vw);
    height: 100dvh;
    padding: 1.2rem 1.2rem 2.4rem;
    overflow-y: auto;
    background: var(--navy-900);
    border-left: 1px solid rgba(255, 255, 255, .1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
    transform: translateX(100%);
    transition: transform var(--t);
  }
  body.nav-open .nav__links { transform: translateX(0); }
  .nav__links::before {
    content: "Menu";
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
  }
  .nav__link { width: 100%; justify-content: space-between; padding: .95rem .9rem; font-size: 1rem; }

  .nav__dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--r-md);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    transition: max-height var(--t), padding var(--t), margin var(--t);
  }
  .nav__item.is-open > .nav__dropdown { max-height: 520px; padding: .4rem; margin: .3rem 0 .5rem; transform: none; }
  .nav__dropdown a { color: rgba(255, 255, 255, .82); }
  .nav__dropdown a:hover { background: rgba(255, 255, 255, .08); color: #fff; }
  .nav__dropdown small { color: rgba(255, 255, 255, .45); }

  .nav__actions .btn { display: none; }

  .brand__chip img { width: 132px; }

  .split { grid-template-columns: 1fr; }
  .split--media-right .split__media { order: 0; }
  .media-frame--tilt img { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roadmap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roadmap::before { display: none; }
  .hero-rail__btn { flex-direction: column; align-items: flex-start; gap: .4rem; font-size: .68rem; padding: .8rem .7rem; }
  .topbar__meta .topbar__item--hide-sm { display: none; }
}

@media (max-width: 720px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-grid > *,
  .svc-grid--5 > *:nth-child(4),
  .svc-grid--5 > *:nth-child(5) { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .badge-float { position: static; margin-top: 1rem; max-width: none; }
  .media-frame::before { display: none; }
  .hero-rail { display: none; }
  .slider__track { aspect-ratio: 16 / 11; }
  .slide img { object-fit: contain; background: var(--navy-950); }
  .topbar__inner { justify-content: center; }
  .topbar__meta { justify-content: center; gap: .9rem; font-size: .78rem; }
  .topbar__socials { display: none; }
}

@media (max-width: 520px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .slider__btn { width: 40px; height: 40px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* --------------------------------------------------------------------------
   23. Motion & print preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .slide { transform: none; }
}

@media print {
  .site-header, .topbar, .site-footer, .to-top, .slider__btn, .slider__dots, .hero-rail { display: none !important; }
  body { color: #000; }
}
