/*
  Neelkanth Infrastructure Ltd - SCHWING Stetter Dealership
  Premium industrial design system. No third-party CSS or web fonts required.
*/

:root {
  --ink-950: #03111f;
  --ink-900: #061a32;
  --ink-850: #08213d;
  --ink-800: #0a2a4c;
  --ink-700: #304b66;
  --ink-600: #53677d;
  --ink-500: #74889b;
  --paper: #ffffff;
  --mist-50: #f8fafc;
  --mist-100: #f3f6f9;
  --mist-200: #e3eaf1;
  --mist-300: #d1dce7;
  --green-700: #006f58;
  --green-600: #07815f;
  --green-500: #159e58;
  --green-400: #47b863;
  --lime-500: #78bf43;
  --lime-400: #8dcc47;
  --yellow-500: #e5af12;
  --brand-blue: #138cff;
  --brand-blue-soft: #74bcff;
  --brass: #caa35f;
  --brass-hi: #e7c98d;
  --abyss: #03111f;
  --amber-500: #f2bd24;
  --danger: #b42318;
  --success: #16794e;
  --shadow-xs: 0 1px 2px rgba(8, 16, 24, 0.06);
  --shadow-sm: 0 8px 24px rgba(8, 16, 24, 0.08);
  --shadow-md: 0 18px 50px rgba(8, 16, 24, 0.12);
  --shadow-lg: 0 32px 90px rgba(8, 16, 24, 0.2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --container: 1240px;
  --header-h: 84px;
  --transition: 180ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--mist-50);
  font-family: Barlow, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--ink-950);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
ul, ol { margin: 0; padding: 0; }
::selection { background: rgba(120,191,67,.3); color: var(--ink-950); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink-950);
  box-shadow: var(--shadow-md);
  font-weight: 800;
  transition: top var(--transition);
}
.skip-link:focus { top: 14px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 920px); margin-inline: auto; }
.section { padding: clamp(72px, 8vw, 112px) 0; }
.section--tight { padding: clamp(54px, 6vw, 82px) 0; }
.section--dark { color: #dce4ea; background: var(--ink-950); }
.section--ink { color: #dce4ea; background: var(--ink-900); }
.section--white { background: var(--paper); }
.section--mist { background: var(--mist-100); }
.section--green-wash {
  background:
    radial-gradient(circle at 80% 20%, rgba(120,191,67,.22), transparent 30%),
    linear-gradient(145deg, #edf6ef, #f8faf9 55%, #eef5f2);
}
.grid { display: grid; gap: 24px; }
.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)); }
.stack { display: grid; gap: 22px; }
.cluster { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.text-muted { color: var(--ink-600); }
.text-light { color: #b9c6d0; }
.text-green { color: var(--green-500); }
.hidden { display: none !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-600);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime-500), var(--green-600));
}
.section--dark .eyebrow, .section--ink .eyebrow { color: #9be066; }
.section-title {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4rem);
}
.section-intro {
  max-width: 700px;
  margin-top: 20px;
  color: var(--ink-600);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.section--dark .section-title, .section--ink .section-title { color: #fff; }
.section--dark .section-intro, .section--ink .section-intro { color: #afbdc8; }
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}
.section-heading-row > div:first-child { max-width: 790px; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
.card-link:focus-visible,
.icon-btn:focus-visible {
  outline: 3px solid rgba(120,191,67,.5);
  outline-offset: 3px;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--lime-500));
  box-shadow: 0 12px 30px rgba(21,158,88,.23);
}
.btn--primary:hover { box-shadow: 0 16px 36px rgba(21,158,88,.32); }
.btn--dark { color: #fff; background: var(--ink-950); border-color: rgba(255,255,255,.08); }
.btn--dark:hover { background: var(--ink-800); box-shadow: var(--shadow-sm); }
.btn--light { color: var(--ink-950); background: #fff; border-color: var(--mist-200); box-shadow: var(--shadow-xs); }
.btn--light:hover { border-color: var(--mist-300); box-shadow: var(--shadow-sm); }
.btn--ghost { color: var(--ink-800); background: rgba(255,255,255,.68); border-color: var(--mist-300); }
.btn--outline-light { color: #fff; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.2); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }
.btn--small { min-height: 40px; padding: 10px 17px; font-size: .82rem; }
.btn--wide { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--green-700);
  background: #edf7ef;
  font-size: .69rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.tag--dark { color: #cbf5aa; background: rgba(120,191,67,.13); border: 1px solid rgba(120,191,67,.18); }
.tag--yellow { color: #6b4b00; background: #fff2bc; }

/* Header */
.site-header { position: relative; z-index: 1000; }
.site-header.is-sticky .main-nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 12px 34px rgba(8,16,24,.12);
  animation: headerIn .28s ease both;
}
@keyframes headerIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.topbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  color: #b8c4ce;
  background: #070d13;
  font-size: .72rem;
}
.topbar strong { color: #a6e46f; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-meta { display: flex; gap: 22px; align-items: center; }
.topbar a:hover { color: #fff; }
.main-nav-shell { min-height: var(--header-h); display: flex; align-items: center; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(10,18,26,.07); backdrop-filter: blur(18px); }
.main-nav { display: flex; min-height: var(--header-h); align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--mist-200);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 17px;
  height: 70px;
  transform: rotate(34deg);
  border-radius: 4px;
}
.brand-mark::before { left: 9px; background: var(--lime-500); }
.brand-mark::after { right: 7px; background: var(--green-700); }
.brand-copy { display: grid; line-height: 1.03; }
.brand-copy strong { font-size: .98rem; letter-spacing: -.025em; }
.brand-copy span { margin-top: 5px; color: var(--ink-600); font-size: .58rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 9px 11px;
  color: var(--ink-700);
  font-size: .79rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.is-active { color: var(--green-700); background: #eef7ef; }
.nav-link svg { width: 13px; height: 13px; }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.nav-phone { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; border: 1px solid var(--mist-200); border-radius: 999px; padding: 9px 14px; font-size: .79rem; font-weight: 850; }
.nav-phone:hover { border-color: var(--mist-300); background: var(--mist-50); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 310px;
  transform: translate(-50%, 8px);
  padding: 10px;
  border: 1px solid var(--mist-200);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: grid; gap: 2px; border-radius: 12px; padding: 12px 13px; }
.dropdown a:hover { background: var(--mist-100); }
.dropdown strong { font-size: .85rem; }
.dropdown span { color: var(--ink-600); font-size: .71rem; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mist-200);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: none;
  background: rgba(7,13,19,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
  width: min(91vw, 390px);
  height: 100%;
  margin-left: auto;
  padding: 22px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-menu-close { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--mist-200); border-radius: 13px; background: #fff; cursor: pointer; }
.mobile-nav { display: grid; gap: 4px; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; border-radius: 13px; padding: 13px 14px; font-size: .95rem; font-weight: 800; }
.mobile-nav a:hover, .mobile-nav a.is-active { color: var(--green-700); background: #eef7ef; }
.mobile-subnav { margin: 0 0 8px 14px; padding-left: 14px; border-left: 2px solid var(--mist-200); }
.mobile-subnav a { color: var(--ink-600); font-size: .84rem; }
.mobile-menu-cta { display: grid; gap: 10px; margin-top: 28px; }

/* Home hero */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #d8e1e8;
  background:
    radial-gradient(circle at 80% 18%, rgba(29,137,77,.32), transparent 25%),
    radial-gradient(circle at 66% 80%, rgba(120,191,67,.10), transparent 35%),
    linear-gradient(118deg, #09121b 0%, #0d1721 46%, #0a1f19 100%);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.4), #000);
}
.home-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -260px;
  width: 550px;
  height: 1000px;
  z-index: -1;
  transform: rotate(18deg);
  border-left: 58px solid rgba(120,191,67,.12);
  border-right: 32px solid rgba(0,111,88,.14);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(42px, 7vw, 90px); padding: 86px 0 92px; }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #a9e772;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero-kicker::before { content: ""; width: 30px; height: 3px; border-radius: 999px; background: var(--lime-500); }
.hero-title {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.06em;
}
.hero-title span { color: #9ce264; }
.hero-lead { max-width: 660px; margin: 26px 0 30px; color: #b7c3cc; font-size: clamp(1.05rem, 1.5vw, 1.23rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 40px; }
.hero-fact { min-height: 94px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; padding: 15px; background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.hero-fact span { display: block; color: #8ea0ad; font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-fact strong { display: block; margin-top: 6px; color: #fff; font-size: .93rem; line-height: 1.25; }
.hero-media { position: relative; min-height: 560px; }
.hero-image-frame {
  position: absolute;
  inset: 0 0 0 2%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 36px;
  background: #19232d;
  box-shadow: var(--shadow-lg);
}
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,10,15,.75)); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero-image-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.hero-image-label strong { display: block; color: #fff; font-size: 1.16rem; }
.hero-image-label span { display: block; margin-top: 5px; color: #bdc8d0; font-size: .78rem; }
.hero-model-chip { padding: 10px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; color: #d9f5c1; background: rgba(8,16,24,.72); font-size: .72rem; font-weight: 900; white-space: nowrap; }
.hero-float-card {
  position: absolute;
  left: -26px;
  bottom: 50px;
  z-index: 3;
  width: 220px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 18px;
  color: #fff;
  background: rgba(14,24,34,.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.hero-float-card small { display: block; color: #9be066; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.hero-float-card strong { display: block; margin: 8px 0 4px; font-size: 1.05rem; }
.hero-float-card span { color: #9cabb7; font-size: .78rem; }

.trust-strip { position: relative; z-index: 3; margin-top: -38px; }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); overflow: hidden; border: 1px solid var(--mist-200); border-radius: 24px; background: #fff; box-shadow: var(--shadow-md); }
.trust-item { min-height: 116px; display: grid; align-content: center; gap: 7px; padding: 24px 26px; border-right: 1px solid var(--mist-200); }
.trust-item:last-child { border-right: 0; }
.trust-item small { color: var(--green-600); font-size: .67rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.trust-item strong { font-size: 1rem; line-height: 1.25; }
.trust-item span { color: var(--ink-600); font-size: .78rem; line-height: 1.4; }

/* Cards and product ranges */
.range-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--mist-200);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.range-card:hover { transform: translateY(-6px); border-color: #cad6de; box-shadow: var(--shadow-md); }
.range-card-media { position: relative; height: 270px; overflow: hidden; background: var(--mist-100); }
.range-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,12,18,.5)); }
.range-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.range-card:hover .range-card-media img { transform: scale(1.035); }
.range-card-code { position: absolute; top: 18px; left: 18px; z-index: 2; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 7px 11px; color: #fff; background: rgba(8,16,24,.64); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.range-card-body { padding: 28px; }
.range-card h3 { font-size: 1.65rem; }
.range-card p { margin: 14px 0 20px; color: var(--ink-600); font-size: .92rem; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-600); font-size: .86rem; font-weight: 900; }
.card-link svg { width: 17px; height: 17px; transition: transform var(--transition); }
.card-link:hover svg { transform: translateX(4px); }

.feature-card {
  min-height: 220px;
  border: 1px solid var(--mist-200);
  border-radius: 22px;
  padding: 25px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  color: var(--green-700);
  background: linear-gradient(145deg, #eff8ef, #e3f1e7);
}
.feature-icon svg { width: 23px; height: 23px; }
.feature-card h3 { font-size: 1.14rem; }
.feature-card p { margin-top: 11px; color: var(--ink-600); font-size: .86rem; }
.section--dark .feature-card { border-color: rgba(255,255,255,.09); background: rgba(255,255,255,.045); }
.section--dark .feature-card h3 { color: #fff; }
.section--dark .feature-card p { color: #aebbc6; }
.section--dark .feature-icon { color: #a7e970; background: rgba(120,191,67,.11); }

.media-story { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(38px,7vw,88px); }
.media-frame { position: relative; overflow: hidden; border-radius: 30px; background: var(--ink-900); box-shadow: var(--shadow-md); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--portrait { min-height: 620px; }
.media-frame--portrait img { position: absolute; inset: 0; }
.media-frame--wide { aspect-ratio: 16/10; }
.media-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 280px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(8,16,24,.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.media-badge small { display: block; color: #9de266; font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.media-badge strong { display: block; margin-top: 5px; font-size: .92rem; }
.check-list { display: grid; gap: 12px; margin: 24px 0 30px; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--ink-700); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green-500); font-size: .68rem; font-weight: 900; }
.section--dark .check-list li { color: #c2ced7; }

.model-showcase { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.model-mini-card { position: relative; overflow: hidden; border: 1px solid var(--mist-200); border-radius: 22px; background: #fff; transition: transform var(--transition), box-shadow var(--transition); }
.model-mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.model-mini-media { height: 170px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at center, #fff, #eef3f5); }
.model-mini-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.model-mini-body { padding: 20px; }
.model-mini-body small { color: var(--green-600); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.model-mini-body h3 { margin-top: 7px; font-size: 1.15rem; }
.model-mini-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.model-mini-meta span { border-radius: 999px; padding: 6px 8px; color: var(--ink-600); background: var(--mist-100); font-size: .66rem; font-weight: 750; }

.gallery-mosaic { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 260px 260px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: 22px; padding: 0; background: var(--ink-900); cursor: zoom-in; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,10,15,.75)); }
.gallery-caption { position: absolute; left: 18px; right: 18px; bottom: 15px; z-index: 2; color: #fff; text-align: left; }
.gallery-caption strong { display: block; font-size: .9rem; }
.gallery-caption span { display: block; margin-top: 2px; color: #c2ccd4; font-size: .68rem; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(30px,5vw,56px);
  color: #d8e2e8;
  background:
    radial-gradient(circle at 92% 15%, rgba(120,191,67,.28), transparent 30%),
    linear-gradient(130deg, #09121b, #0f1d28 55%, #0a271d);
  box-shadow: var(--shadow-md);
}
.cta-band::after { content: ""; position: absolute; right: -60px; top: -90px; width: 240px; height: 400px; transform: rotate(27deg); border-left: 30px solid rgba(120,191,67,.15); border-right: 18px solid rgba(0,111,88,.15); }
.cta-band-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { max-width: 720px; color: #fff; font-size: clamp(1.8rem,3.7vw,3.6rem); }
.cta-band p { max-width: 680px; margin: 15px 0 0; color: #aebbc6; }
.cta-band-actions { display: grid; flex: 0 0 auto; gap: 10px; }

/* Interior page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #cbd6de;
  background:
    radial-gradient(circle at 86% 20%, rgba(21,158,88,.25), transparent 30%),
    linear-gradient(122deg, #09121b, #111d28 60%, #0c2019);
}
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: url('../images/noise.webp'); mix-blend-mode: overlay; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 58px; min-height: 510px; padding: 70px 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: #8fa0ad; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { max-width: 780px; color: #fff; font-size: clamp(2.65rem,5.4vw,5.5rem); }
.page-hero p { max-width: 690px; margin-top: 22px; color: #b4c0ca; font-size: clamp(1rem,1.5vw,1.15rem); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.page-hero-media { min-height: 360px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: #1a2630; box-shadow: var(--shadow-lg); }
.page-hero-media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.page-hero-media--contain { background: #f6f8f9; }
.page-hero-media--contain img { object-fit: contain; padding: 22px; }
.page-hero-note { display: flex; align-items: center; gap: 9px; margin-top: 17px; color: #82929f; font-size: .7rem; }
.page-hero-note svg { width: 15px; height: 15px; }

.stat-row { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.stat-card { border: 1px solid var(--mist-200); border-radius: 19px; padding: 22px; background: #fff; }
.stat-card strong { display: block; color: var(--ink-950); font-size: clamp(1.6rem,3vw,2.6rem); letter-spacing: -.04em; }
.stat-card span { display: block; margin-top: 5px; color: var(--ink-600); font-size: .77rem; }

/* Product catalogue */
.catalogue-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.catalogue-count { color: var(--ink-600); font-size: .82rem; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { border: 1px solid var(--mist-200); border-radius: 999px; padding: 9px 13px; color: var(--ink-700); background: #fff; cursor: pointer; font-size: .75rem; font-weight: 850; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.is-active { color: #fff; border-color: var(--green-600); background: var(--green-600); }
.product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.product-card {
  position: relative;
  display: flex;
  min-height: 485px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mist-200);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover { transform: translateY(-5px); border-color: #cbd5dd; box-shadow: var(--shadow-md); }
.product-card-media { position: relative; height: 218px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 48%, #fff 0%, #edf2f4 88%); }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.product-card[data-category="slm"] .product-card-media img { object-fit: cover; padding: 0; }
.product-card:hover .product-card-media img { transform: scale(1.035); }
.product-card-series { position: absolute; top: 14px; left: 14px; border: 1px solid rgba(8,16,24,.08); border-radius: 999px; padding: 7px 9px; color: var(--green-700); background: rgba(255,255,255,.9); font-size: .63rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(7px); }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.product-card h3 { font-size: 1.35rem; }
.product-card p { margin: 10px 0 14px; color: var(--ink-600); font-size: .82rem; line-height: 1.55; }
.product-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.product-badges span { border-radius: 999px; padding: 6px 8px; color: var(--green-700); background: #eef7ef; font-size: .63rem; font-weight: 820; }
.product-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--mist-200); }
.product-card-actions a { font-size: .78rem; font-weight: 900; }
.product-card-actions a:first-child { color: var(--green-600); }
.product-card-actions a:last-child { color: var(--ink-600); }
.product-card-actions a:hover { color: var(--ink-950); }

.series-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin: 18px 0 28px; }
.series-heading h2 { font-size: clamp(2rem,3.7vw,3.4rem); }
.series-heading p { max-width: 580px; color: var(--ink-600); }
.series-divider { height: 1px; margin: 74px 0; background: var(--mist-300); }

/* Product detail */
.product-detail-hero { padding: 64px 0 72px; background: #fff; border-bottom: 1px solid var(--mist-200); }
.product-detail-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(40px,7vw,86px); }
.product-detail-image { min-height: 490px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--mist-200); border-radius: 30px; background: radial-gradient(circle at center, #fff, #eaf0f3); box-shadow: var(--shadow-sm); }
.product-detail-image img { width: 100%; height: 100%; max-height: 540px; object-fit: contain; padding: 24px; }
.product-detail-image.is-photo img { object-fit: cover; padding: 0; }
.product-detail-copy h1 { font-size: clamp(3rem,5.4vw,5.2rem); }
.product-detail-copy .lead { margin: 21px 0 24px; color: var(--ink-600); font-size: 1.1rem; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.quick-specs { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 30px; }
.quick-spec { border: 1px solid var(--mist-200); border-radius: 15px; padding: 14px; background: var(--mist-50); }
.quick-spec span { display: block; color: var(--ink-500); font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.quick-spec strong { display: block; margin-top: 6px; font-size: .86rem; line-height: 1.3; }
.spec-table-wrap { overflow-x: auto; border: 1px solid var(--mist-200); border-radius: 20px; background: #fff; box-shadow: var(--shadow-xs); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 16px 18px; border-bottom: 1px solid var(--mist-200); text-align: left; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { width: 45%; color: var(--ink-600); font-size: .79rem; font-weight: 750; }
.spec-table td { color: var(--ink-950); font-size: .88rem; font-weight: 850; }
.detail-columns { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.detail-panel { border: 1px solid var(--mist-200); border-radius: 23px; padding: 28px; background: #fff; }
.detail-panel h3 { font-size: 1.35rem; }
.detail-list { display: grid; gap: 12px; margin-top: 20px; list-style: none; }
.detail-list li { position: relative; padding-left: 25px; color: var(--ink-700); font-size: .88rem; }
.detail-list li::before { content: ""; position: absolute; left: 0; top: .56em; width: 8px; height: 8px; border-radius: 50%; background: var(--lime-500); box-shadow: 0 0 0 4px rgba(120,191,67,.13); }
.disclaimer-box { display: flex; align-items: flex-start; gap: 13px; border: 1px solid #ead89a; border-radius: 16px; padding: 17px; color: #685618; background: #fff9df; font-size: .78rem; }
.disclaimer-box svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.related-products { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }

/* Forms */
.form-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(34px,6vw,80px); align-items: start; }
.form-copy { position: sticky; top: 120px; }
.form-copy h2 { font-size: clamp(2rem,4vw,3.8rem); }
.form-copy p { margin-top: 18px; color: var(--ink-600); }
.contact-cards { display: grid; gap: 10px; margin-top: 28px; }
.contact-mini-card { display: flex; align-items: center; gap: 14px; border: 1px solid var(--mist-200); border-radius: 17px; padding: 15px; background: #fff; }
.contact-mini-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: var(--green-700); background: #edf7ef; }
.contact-mini-icon svg { width: 20px; height: 20px; }
.contact-mini-card small { display: block; color: var(--ink-500); font-size: .64rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-mini-card strong { display: block; margin-top: 2px; font-size: .87rem; line-height: 1.4; }
.form-card { border: 1px solid var(--mist-200); border-radius: 27px; padding: clamp(24px,4vw,38px); background: #fff; box-shadow: var(--shadow-sm); }
.form-card h2, .form-card h3 { margin-bottom: 6px; }
.form-note { color: var(--ink-600); font-size: .78rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px; margin-top: 26px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink-700); font-size: .72rem; font-weight: 850; letter-spacing: .035em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--mist-300);
  border-radius: 13px;
  padding: 11px 13px;
  color: var(--ink-950);
  background: #fbfcfd;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 4px rgba(21,158,88,.1); }
.field input::placeholder, .field textarea::placeholder { color: #9aa7b2; }
.form-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 22px; }
.form-privacy { display: flex; gap: 9px; margin-top: 14px; color: var(--ink-500); font-size: .7rem; }
.form-privacy svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; }
.form-status { display: none; margin-top: 14px; border-radius: 12px; padding: 11px 13px; font-size: .78rem; font-weight: 750; }
.form-status.is-visible { display: block; }
.form-status.is-error { color: #7a271a; background: #fff1ef; }
.form-status.is-success { color: #0f5a37; background: #eaf8f0; }

/* Services / steps / accordions */
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; counter-reset: steps; }
.process-step { position: relative; min-height: 245px; border: 1px solid var(--mist-200); border-radius: 22px; padding: 28px 24px; background: #fff; counter-increment: steps; }
.process-step::before { content: "0" counter(steps); display: block; margin-bottom: 40px; color: var(--green-500); font-size: 1.4rem; font-weight: 900; letter-spacing: -.04em; }
.process-step h3 { font-size: 1.08rem; }
.process-step p { margin-top: 10px; color: var(--ink-600); font-size: .82rem; }
.accordion { display: grid; gap: 10px; }
.accordion-item { overflow: hidden; border: 1px solid var(--mist-200); border-radius: 17px; background: #fff; }
.accordion-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; padding: 18px 20px; color: var(--ink-950); background: transparent; cursor: pointer; text-align: left; font-weight: 850; }
.accordion-button svg { width: 18px; height: 18px; transition: transform var(--transition); }
.accordion-item.is-open .accordion-button svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 280ms ease; }
.accordion-panel-inner { padding: 0 20px 20px; color: var(--ink-600); font-size: .86rem; }

/* Gallery page */
.gallery-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.gallery-card { position: relative; min-height: 330px; overflow: hidden; border: 0; border-radius: 22px; padding: 0; background: var(--ink-900); cursor: zoom-in; }
.gallery-card:nth-child(5n + 1) { grid-column: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,12,18,.82)); }
.gallery-card-copy { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; color: #fff; text-align: left; }
.gallery-card-copy strong { display: block; font-size: 1rem; }
.gallery-card-copy span { display: block; margin-top: 4px; color: #bdc8d1; font-size: .7rem; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 26px; background: rgba(4,9,14,.92); opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; width: min(1100px, 100%); }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 18px; background: #0d151d; }
.lightbox-close { position: absolute; right: 10px; top: 10px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; background: rgba(8,16,24,.72); cursor: pointer; }
.lightbox-caption { margin-top: 12px; color: #c5d0d8; text-align: center; font-size: .82rem; }

/* Contact map */
.map-card { position: relative; min-height: 430px; overflow: hidden; border: 1px solid var(--mist-200); border-radius: 28px; background: linear-gradient(145deg,#dfe9e3,#f4f7f5); }
.map-grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(8,16,24,.1) 1px, transparent 1px), linear-gradient(90deg,rgba(8,16,24,.1) 1px, transparent 1px); background-size: 36px 36px; transform: perspective(800px) rotateX(58deg) scale(1.35); transform-origin: center bottom; }
.map-route { position: absolute; left: 20%; top: 20%; width: 55%; height: 48%; border: 4px solid transparent; border-top-color: var(--green-500); border-right-color: var(--green-500); border-radius: 48% 52% 38% 62%; transform: rotate(-10deg); filter: drop-shadow(0 8px 8px rgba(21,158,88,.2)); }
.map-pin { position: absolute; left: 59%; top: 42%; width: 62px; height: 62px; display: grid; place-items: center; border: 10px solid rgba(120,191,67,.24); border-radius: 50%; color: #fff; background: var(--green-600); box-shadow: 0 12px 30px rgba(7,129,95,.28); }
.map-pin svg { width: 24px; height: 24px; }
.map-info { position: absolute; left: 24px; bottom: 24px; max-width: 360px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; padding: 18px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.map-info small { color: var(--green-600); font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.map-info strong { display: block; margin-top: 6px; line-height: 1.4; }
.map-info a { display: inline-flex; margin-top: 10px; color: var(--green-600); font-size: .78rem; font-weight: 900; }

/* Legal */
.legal-card { border: 1px solid var(--mist-200); border-radius: 25px; padding: clamp(28px,5vw,54px); background: #fff; box-shadow: var(--shadow-xs); }
.legal-card h2 { margin: 38px 0 12px; font-size: 1.5rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--ink-700); font-size: .91rem; }
.legal-card ul { display: grid; gap: 8px; padding-left: 22px; }

/* Footer */
.site-footer { color: #aebbc6; background: #070d13; }
.footer-main { padding: 66px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .95fr 1fr; gap: 50px; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-copy span { color: #8796a2; }
.footer-brand p { max-width: 360px; margin-top: 18px; color: #8f9eaa; font-size: .82rem; }
.footer-phone { display: inline-flex; margin-top: 16px; color: #fff; font-size: 1.1rem; font-weight: 900; }
.footer-heading { margin-bottom: 18px; color: #fff; font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; list-style: none; }
.footer-link { color: #94a3af; font-size: .8rem; }
.footer-link:hover { color: #fff; }
.footer-address { color: #94a3af; font-size: .8rem; line-height: 1.7; }
.footer-partner { width: 160px; margin-top: 20px; filter: brightness(0) invert(1); opacity: .85; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #70808d; font-size: .7rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 900;
  display: none;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 8px;
  background: rgba(8,16,24,.94);
  box-shadow: 0 18px 50px rgba(8,16,24,.28);
  backdrop-filter: blur(15px);
}
.mobile-cta a { min-height: 45px; display: grid; place-items: center; border-radius: 12px; color: #fff; font-size: .69rem; font-weight: 900; }
.mobile-cta a:nth-child(2) { background: var(--green-600); }
.mobile-cta a:nth-child(3) { background: linear-gradient(135deg,var(--green-500),var(--lime-500)); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* Responsive */
@media (max-width: 1120px) {
  .nav-links { gap: 0; }
  .nav-link { padding-inline: 8px; font-size: .73rem; }
  .nav-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr .9fr; }
  .model-showcase { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.3fr .8fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .topbar { display: none; }
  .nav-links, .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu { display: block; }
  .home-hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 70px 0 82px; }
  .hero-copy { max-width: 760px; }
  .hero-media { min-height: 520px; }
  .hero-image-frame { inset: 0; }
  .hero-float-card { left: 18px; bottom: 18px; }
  .trust-strip { margin-top: -28px; }
  .trust-strip-inner { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--mist-200); }
  .media-story { grid-template-columns: 1fr; }
  .media-frame--portrait { min-height: 540px; }
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-media { min-height: 330px; }
  .page-hero-media img { min-height: 330px; }
  .stat-row { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .form-shell { grid-template-columns: 1fr; }
  .form-copy { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-image { min-height: 400px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 240px 240px; }
  .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gallery-card:nth-child(5n + 1) { grid-column: span 2; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .cta-band-actions { display: flex; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  body { padding-bottom: 78px; }
  .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .section--tight { padding: 50px 0; }
  .main-nav { gap: 12px; }
  .brand-copy strong { font-size: .86rem; }
  .brand-copy span { font-size: .51rem; letter-spacing: .11em; }
  .brand-mark { width: 42px; height: 42px; }
  .home-hero::after { display: none; }
  .hero-grid { padding: 56px 0 70px; gap: 42px; }
  .hero-title { font-size: clamp(2.9rem,15vw,4.5rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .btn:first-child { grid-column: 1 / -1; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-fact { min-height: auto; }
  .hero-media { min-height: 430px; }
  .hero-image-label { left: 18px; right: 18px; bottom: 18px; }
  .hero-image-label > div:last-child { display: none; }
  .hero-float-card { width: 190px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--mist-200); }
  .trust-item:last-child { border-bottom: 0; }
  .section-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .range-card { min-height: auto; }
  .range-card-media { height: 240px; }
  .model-showcase { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item, .gallery-item:first-child { min-height: 260px; grid-column: auto; grid-row: auto; }
  .page-hero-grid { padding: 52px 0 60px; gap: 34px; }
  .page-hero h1 { font-size: clamp(2.65rem,14vw,4.2rem); }
  .page-hero-media { min-height: 280px; }
  .page-hero-media img { min-height: 280px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 18px; }
  .series-heading { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .catalogue-toolbar { align-items: flex-start; flex-direction: column; }
  .product-detail-hero { padding: 45px 0 54px; }
  .product-detail-image { min-height: 320px; }
  .quick-specs { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .detail-columns { grid-template-columns: 1fr; }
  .related-products { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: auto; }
  .process-step::before { margin-bottom: 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:nth-child(5n + 1) { min-height: 280px; grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; padding: 20px 0; }
  .mobile-cta { display: grid; }
  .media-frame--portrait { min-height: 490px; }
}

@media (max-width: 420px) {
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .btn:first-child { grid-column: auto; }
  .hero-media { min-height: 380px; }
  .hero-float-card { display: none; }
  .stat-row { grid-template-columns: 1fr; }
  .quick-specs { grid-template-columns: 1fr; }
  .cta-band-actions { display: grid; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .mobile-cta, .btn, .form-card { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .section--tight { padding: 24px 0; }
  .page-hero { color: #000; background: #fff; }
  .page-hero h1 { color: #000; }
}

/* ============================================================
   NEELKANTH GROUP ALIGNMENT — approved corporate family theme
   Navy + electric blue + brass are the parent-brand system.
   SCHWING green remains a supporting product/technical accent.
   ============================================================ */

body { background: #f8fafc; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", Barlow, Aptos, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -.025em;
}
.eyebrow,
.hero-kicker,
.footer-heading,
.product-card-series,
.range-card-code {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

/* Corporate accents */
::selection { background: rgba(19,140,255,.23); color: var(--ink-950); }
.eyebrow { color: var(--brass); }
.eyebrow::before { background: linear-gradient(90deg, var(--brand-blue), var(--brass)); }
.section--dark .eyebrow,
.section--ink .eyebrow { color: var(--brand-blue-soft); }
.section--dark .eyebrow::before,
.section--ink .eyebrow::before { background: linear-gradient(90deg, var(--brand-blue), var(--brass-hi)); }
.text-green { color: var(--brand-blue); }

/* Parent-brand button language */
.btn {
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.btn--primary {
  color: var(--ink-950);
  background: linear-gradient(135deg, var(--brass), var(--brass-hi));
  box-shadow: 0 14px 34px -20px rgba(202,163,95,.9);
}
.btn--primary:hover { box-shadow: 0 18px 40px -18px rgba(202,163,95,.95); }
.btn--dark { background: var(--ink-900); }
.btn--ghost { color: var(--ink-900); }
.btn:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
.card-link:focus-visible,
.icon-btn:focus-visible { outline-color: rgba(19,140,255,.55); }

/* Header follows the final Neelkanth Group website */
.topbar {
  color: #b9c8d8;
  background: linear-gradient(90deg, #020c17, #071c33 58%, #0a2745);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar strong { color: var(--brass-hi); }
.topbar-meta a:last-of-type { color: var(--brand-blue-soft); }
.main-nav-shell {
  background: rgba(5,23,43,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.site-header.is-sticky .main-nav-shell {
  background: rgba(3,17,31,.97);
  box-shadow: 0 18px 45px -32px rgba(0,0,0,.85);
}
.brand { gap: 13px; }
.brand-logo-wrap {
  width: 52px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-logo {
  width: 50px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.2));
}
.main-nav-shell .brand-copy strong { color: #fff; font-size: 1rem; font-weight: 600; letter-spacing: .005em; }
.main-nav-shell .brand-copy span { color: var(--brass-hi); font-size: .53rem; letter-spacing: .18em; }
.nav-link {
  position: relative;
  border-radius: 5px;
  color: #dbe6f0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .065em;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brass));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.is-active { color: #fff; background: rgba(255,255,255,.055); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-phone {
  color: #fff;
  border-color: rgba(255,255,255,.15);
  border-radius: 5px;
  background: rgba(255,255,255,.025);
}
.nav-phone:hover { border-color: rgba(116,188,255,.5); background: rgba(19,140,255,.1); }
.menu-toggle {
  color: #fff;
  border-color: rgba(255,255,255,.15);
  border-radius: 7px;
  background: rgba(255,255,255,.04);
}
.dropdown {
  border-color: rgba(202,163,95,.3);
  border-top: 2px solid var(--brass);
  border-radius: 0 0 16px 16px;
  color: #fff;
  background: rgba(5,25,47,.99);
}
.dropdown a:hover { background: rgba(19,140,255,.12); }
.dropdown span { color: #aebed0; }
.mobile-menu { background: rgba(3,17,31,.7); }
.mobile-menu-panel { color: #e8eef5; background: var(--ink-900); }
.mobile-menu-close { color: #fff; border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
.mobile-menu-panel .brand-copy strong { color: #fff; }
.mobile-menu-panel .brand-copy span { color: var(--brass-hi); }
.mobile-nav a:hover,
.mobile-nav a.is-active { color: #fff; background: rgba(19,140,255,.12); }
.mobile-subnav { border-left-color: rgba(202,163,95,.45); }
.mobile-subnav a { color: #b8c6d5; }

/* Hero: same visual family, SCHWING retained as product accent */
.home-hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(19,140,255,.22), transparent 31%),
    radial-gradient(circle at 88% 82%, rgba(202,163,95,.09), transparent 30%),
    linear-gradient(118deg, #03111f 0%, #061a32 48%, #08243f 100%);
}
.home-hero::before { opacity: .14; background-size: 72px 72px; }
.home-hero::after {
  border-left-color: rgba(19,140,255,.13);
  border-right-color: rgba(202,163,95,.12);
}
.hero-kicker { color: var(--brass-hi); }
.hero-kicker::before { background: linear-gradient(90deg, var(--brand-blue), var(--brass)); }
.hero-title { letter-spacing: -.045em; }
.hero-title span { color: var(--brass-hi); }
.hero-lead { color: #c2cfdd; }
.hero-image-frame { border-radius: 22px; border-color: rgba(255,255,255,.15); }
.hero-image-frame::after { background: linear-gradient(180deg, transparent 52%, rgba(3,17,31,.82)); }
.hero-partner-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 158px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 10px;
  padding: 10px 12px 8px;
  color: var(--ink-900);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px -25px rgba(3,17,31,.75);
  backdrop-filter: blur(8px);
}
.hero-partner-badge span { display: block; margin-bottom: 5px; color: var(--ink-600); font-size: .55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-partner-badge img { width: 112px; height: auto; }
.hero-model-chip { color: #d9f5c1; border-color: rgba(120,191,67,.35); background: rgba(3,17,31,.82); }
.hero-float-card { border-radius: 12px; background: rgba(5,25,47,.93); }
.hero-float-card small { color: var(--brass-hi); }
.hero-fact { border-radius: 12px; }

/* Cards and sectional accents */
.section--dark { background: var(--ink-950); }
.section--ink { background: var(--ink-900); }
.section--green-wash {
  background:
    radial-gradient(circle at 82% 18%, rgba(19,140,255,.13), transparent 30%),
    radial-gradient(circle at 15% 90%, rgba(120,191,67,.12), transparent 30%),
    linear-gradient(145deg, #eef4fa, #fbfcfd 55%, #f0f5f8);
}
.trust-strip-inner,
.range-card,
.feature-card,
.product-card,
.form-card,
.legal-card,
.stat-card { border-color: rgba(6,26,50,.1); }
.trust-strip-inner { border-radius: 18px; }
.trust-item small { color: var(--brand-blue); }
.range-card,
.feature-card,
.product-card { border-radius: 16px; }
.range-card-code { border-radius: 5px; background: rgba(3,17,31,.78); }
.card-link,
.product-card-actions a:first-child { color: var(--brand-blue); }
.card-link:hover,
.product-card-actions a:first-child:hover { color: var(--ink-900); }
.feature-icon { color: var(--brand-blue); background: rgba(19,140,255,.09); }
.section--dark .feature-icon { color: var(--brand-blue-soft); background: rgba(19,140,255,.1); }
.media-badge { border-radius: 8px; background: rgba(3,17,31,.91); }
.media-badge small { color: var(--brass-hi); }
.filter-btn { border-radius: 5px; }
.filter-btn:hover,
.filter-btn.is-active { color: #fff; border-color: var(--brand-blue); background: var(--brand-blue); }
.product-card-series { color: var(--green-700); }
.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(19,140,255,.18), transparent 30%),
    linear-gradient(118deg, var(--ink-950), var(--ink-900) 60%, #08243f);
}
.page-hero-media,
.product-detail-image { border-radius: 20px; }
.cta-band {
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(19,140,255,.2), transparent 32%),
    linear-gradient(118deg, #03111f, #061a32 64%, #0a2a4c);
}
.cta-band::after { border-left-color: rgba(19,140,255,.15); border-right-color: rgba(202,163,95,.15); }

/* Footer co-branding */
.site-footer { background: #03111f; }
.footer-brand .brand-logo-wrap { width: 58px; height: 52px; }
.footer-brand .brand-logo { width: 56px; height: 50px; }
.footer-partner-lockup {
  width: fit-content;
  margin-top: 22px;
  border-radius: 9px;
  padding: 9px 12px 10px;
  background: #fff;
  box-shadow: 0 18px 45px -30px rgba(0,0,0,.9);
}
.footer-partner-lockup span { display: block; margin-bottom: 5px; color: var(--ink-600); font-size: .55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-partner { width: 145px; margin: 0; filter: none; opacity: 1; }
.footer-heading { color: var(--brass-hi); }
.footer-link:hover,
.footer-bottom a:hover { color: var(--brand-blue-soft); }
.mobile-cta { background: rgba(3,17,31,.96); }
.mobile-cta a:nth-child(2) { background: var(--green-600); }
.mobile-cta a:nth-child(3) { color: var(--ink-950); background: linear-gradient(135deg, var(--brass), var(--brass-hi)); }

@media (max-width: 1120px) {
  .brand-logo-wrap { width: 46px; }
  .brand-logo { width: 44px; height: 40px; }
  .main-nav-shell .brand-copy strong { font-size: .92rem; }
}
@media (max-width: 680px) {
  .brand-logo-wrap { width: 44px; height: 42px; }
  .brand-logo { width: 42px; height: 38px; }
  .main-nav-shell .brand-copy strong { font-size: .83rem; }
  .main-nav-shell .brand-copy span { font-size: .47rem; letter-spacing: .12em; }
  .hero-partner-badge { top: 14px; right: 14px; width: 132px; padding: 8px 10px; }
  .hero-partner-badge img { width: 92px; }
}
@media (max-width: 420px) {
  .brand-copy span { display: none; }
  .hero-partner-badge { width: 118px; }
  .hero-partner-badge span { display: none; }
}



/* Final image-placement refinement: keep every person visible in the
   Neelkanth × SCHWING dealership photograph on desktop and mobile. */
.media-frame--team {
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.media-frame--team > img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}
.media-frame--team > .media-badge {
  position: relative;
  left: auto;
  bottom: auto;
  width: calc(100% - 44px);
  max-width: 420px;
  margin: -22px 22px 0;
}
.media-frame--team-wide > img {
  object-position: 50% 50%;
}
.page-hero-media--team {
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
}
.page-hero-media--team > img {
  min-height: 0;
  object-fit: cover;
  object-position: 50% 50%;
}
.gallery-item--team > img {
  object-position: 50% 50%;
}

@media (max-width: 680px) {
  .media-frame--team > img {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }
  .media-frame--team > .media-badge {
    width: calc(100% - 28px);
    margin: -16px 14px 0;
  }
  .page-hero-media--team {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .page-hero-media--team > img {
    min-height: 0;
  }
  .gallery-item--team > img {
    object-fit: contain;
    background: #071a2d;
  }
}
