/* Kisan Sahakar — logo-aligned green + orange system */
:root {
  --ink: #0a1f14;
  --ink-2: #123024;
  --leaf: #1a7a3c;          /* logo "Kisan" green */
  --leaf-deep: #0f5c2c;
  --leaf-bright: #2ea85a;
  --lime: #c5e063;          /* logo sprout accent */
  --sand: #f7f3ec;
  --cream: #fbfaf7;
  --amber: #e8891a;         /* logo "Sahakar" orange */
  --amber-deep: #d4730d;
  --amber-soft: #fff1de;
  --mist: rgba(255,255,255,.12);
  --text: #13251b;
  --muted: #4f6558;
  --white: #ffffff;
  --radius: 22px;
  --radius-lg: 32px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(10, 31, 20, .20);
  --header-h: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink); color: #fff; padding: .6rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(1200px, calc(100% - 2.4rem));
  margin-inline: auto;
}

/* ——— Top strip ——— */
.utility {
  background: linear-gradient(90deg, var(--leaf-deep), var(--leaf) 55%, #1f6b38);
  color: rgba(255,255,255,.92);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.utility-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: .55rem 0; align-items: center;
}
.utility a { color: #fff; }
.utility a:hover { color: var(--lime); }
.utility-left { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.utility-left .sep { opacity: .45; color: var(--lime); }
.utility-right { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ——— Header ——— */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--amber);
  box-shadow: 0 8px 24px rgba(26, 122, 60, .06);
}
.header-row {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem; flex-shrink: 0;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.brand-logo-footer {
  height: 48px;
  width: auto;
  display: block;
  max-width: 260px;
  object-fit: contain;
}

.nav {
  display: flex; gap: .2rem; margin-left: auto; margin-right: .4rem; flex-wrap: wrap;
}
.nav a {
  font-weight: 700; font-size: .92rem; color: var(--muted);
  padding: .55rem .85rem; border-radius: 999px; transition: .2s ease;
}
.nav a:hover, .nav a.is-active {
  color: var(--leaf-deep); background: rgba(26,122,60,.1);
}
.header-cta { display: flex; gap: .55rem; flex-shrink: 0; }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px;
  border: 0; border-radius: 14px; background: var(--leaf); color: #fff;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: #fff; display: block; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border-radius: 999px; padding: .85rem 1.35rem; font-weight: 800; font-size: .95rem;
  border: 0; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none !important; line-height: 1.15; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid {
  background: var(--leaf); color: #fff !important;
  box-shadow: 0 12px 28px rgba(26,122,60,.32);
}
.btn-solid:hover { background: var(--leaf-deep); }
.btn-amber {
  background: var(--amber); color: #fff !important;
  box-shadow: 0 6px 16px rgba(232,137,26,.22);
}
.btn-amber:hover { background: var(--amber-deep); }
.btn-dark {
  background: var(--leaf-deep); color: #fff !important;
  box-shadow: 0 12px 28px rgba(15,92,44,.28);
}
.btn-ghost {
  background: rgba(255,255,255,.16); color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(8px);
}
.btn-ghost-dark {
  background: transparent; color: var(--leaf-deep) !important;
  border: 1.5px solid rgba(26,122,60,.28);
}
.btn-ghost-dark:hover { border-color: var(--amber); color: var(--amber-deep) !important; background: var(--amber-soft); }
.btn-lg { padding: 1rem 1.55rem; font-size: 1.02rem; }

/* ——— Home hero (aligned with header logo via .wrap) ——— */
.ks-hero {
  position: relative;
  /* Leave room so Telangana honour board is visible on first load */
  height: clamp(300px, calc(100vh - 15rem), 460px);
  height: clamp(300px, calc(100svh - 15rem), 460px);
  min-height: 300px;
  max-height: 460px;
  overflow: hidden;
  color: #fff;
  background-color: #0c1f16;
  background-image: url("/images/slides/poster-cultivate.jpg");
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;
}
.ks-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ks-hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* Native crop clips — no CSS zoom (avoids blur) */
  object-fit: cover;
  object-position: 58% center;
  display: block;
  background: #0c1f16;
  filter: none;
  opacity: 1;
  transform: none;
}
.ks-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Very light wash so machines/drones stay clear and sharp */
  background: linear-gradient(
    90deg,
    rgba(8, 24, 16, 0.34) 0%,
    rgba(8, 24, 16, 0.16) 40%,
    rgba(8, 24, 16, 0.05) 70%,
    rgba(8, 24, 16, 0) 100%
  );
  pointer-events: none;
}
.ks-hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ks-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 540px;
  text-align: left;
}
.ks-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.ks-hero__title {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 16ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.ks-hero__title span {
  color: var(--lime);
}
.ks-hero__lead {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  max-width: 40ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.ks-hero__btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
}

/* ——— Government honour board ——— */
.govt-board {
  background: linear-gradient(180deg, #fff 0%, var(--sand) 100%);
  border-bottom: 1px solid rgba(26,122,60,.12);
  padding: .85rem 0 1rem;
}
.govt-board-inner {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, 1fr);
  gap: .75rem;
  align-items: stretch;
}
.govt-card {
  background: #fff;
  border: 1px solid rgba(26,122,60,.12);
  border-radius: 16px;
  padding: .7rem .9rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: 0 8px 20px rgba(26,122,60,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.govt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26,122,60,.12);
}
.govt-card.emblem {
  justify-content: flex-start;
  background: linear-gradient(135deg, #fff, var(--amber-soft));
  border-color: rgba(232,137,26,.25);
}
.govt-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--leaf);
  box-shadow: 0 0 0 2px rgba(232,137,26,.35);
  flex-shrink: 0;
  background: var(--sand);
}
.govt-emblem-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}
.govt-meta .role {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: .15rem;
}
.govt-meta .name {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.govt-meta .place {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-top: .1rem;
}

@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeup {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Marquee trust strip ——— */
.marquee {
  background: var(--amber);
  color: #fff;
  overflow: hidden;
  border-block: 0;
}
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  padding: .85rem 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: scroll 28s linear infinite;
}
.marquee-track span::before {
  content: "◆";
  margin-right: .85rem;
  color: var(--lime);
  opacity: .9;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Sections ——— */
.section { padding: 4.5rem 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.kicker {
  display: inline-block;
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber-deep); margin: 0 0 .45rem;
}
.section-head h2, .page-title h1, .split-copy h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: .6rem 0 0;
}

/* ——— Product showcase (large photo lanes) ——— */
.product-lanes { display: grid; gap: 1.15rem; }
.lane {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.lane:hover { transform: translateY(-4px); }
.lane-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
  z-index: 0;
}
.lane-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}
.lane:hover .lane-bg { transform: scale(1.06); }
.lane:hover .lane-video { transform: scale(1.04); transition: transform .6s ease; }
.lane-shade {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(0deg, rgba(7,20,15,.88) 0%, rgba(7,20,15,.2) 55%, rgba(7,20,15,.15) 100%);
}
.lane-body {
  position: relative; z-index: 3;
  padding: 1.6rem 1.7rem 1.7rem;
  display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap;
}
.lane-cat {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .35rem;
}
.lane h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 0 0 .35rem; letter-spacing: -0.03em;
}
.lane p { margin: 0; max-width: 36ch; color: rgba(255,255,255,.86); font-size: .95rem; }

.lane-grid-2 {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.15rem;
}
.lane-grid-2 .lane:last-child { min-height: 320px; }
.lane-tall { min-height: 360px; }

/* ——— How it works as horizontal pills ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
}
.step {
  background: #fff;
  border-radius: 20px;
  padding: 1.15rem 1rem;
  border: 1px solid rgba(7,20,15,.06);
  box-shadow: 0 10px 30px rgba(7,20,15,.04);
  transition: transform .2s ease;
  animation: fadeup .7s ease both;
}
.step:nth-child(2) { animation-delay: .08s; }
.step:nth-child(3) { animation-delay: .16s; }
.step:nth-child(4) { animation-delay: .24s; }
.step:nth-child(5) { animation-delay: .32s; }
.step:hover { transform: translateY(-3px); }
.step .n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--leaf);
  line-height: 1;
  margin-bottom: .55rem;
}
.step h3 { margin: 0 0 .3rem; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: .88rem; }

/* ——— AI dark immersive ——— */
.ai-band {
  position: relative;
  margin: 1rem 0 0;
  padding: 4.5rem 0;
  color: #fff;
  overflow: hidden;
}
.ai-band .ai-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05);
}
.ai-band .ai-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 15% 20%, rgba(200,245,96,.22), transparent 60%),
    linear-gradient(120deg, rgba(7,20,15,.94), rgba(18,38,28,.88) 55%, rgba(7,20,15,.92));
}
.ai-band .wrap { position: relative; z-index: 2; }
.ai-band .kicker { color: var(--amber); }
.ai-band h2 { color: #fff; }
.ai-band .lede { color: rgba(255,255,255,.78); }
.ai-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: .9rem;
  margin-top: 2rem;
}
.ai-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  display: grid; align-items: end;
  transition: transform .25s ease, border-color .25s ease;
}
.ai-card:first-child { grid-row: span 2; min-height: 100%; }
.ai-card:hover { transform: translateY(-4px); border-color: rgba(232,137,26,.55); }
.ai-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.ai-card:hover .bg { transform: scale(1.07); }
.ai-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,20,15,.9), rgba(7,20,15,.2));
}
.ai-card .txt {
  position: relative; z-index: 2; padding: 1.15rem 1.2rem;
}
.ai-card h3 {
  font-family: var(--display);
  margin: 0 0 .3rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.ai-card p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.8); }

/* ——— About collage ——— */
.collage {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: 240px 240px;
  gap: .9rem;
}
.collage .shot {
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.collage .shot:first-child { grid-row: span 2; min-height: 100%; }
.collage .shot-wide { grid-column: span 2; }
.about-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 1.5rem; }
.check-list li {
  padding: .65rem 0 .65rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(7,20,15,.06);
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 1rem;
  width: 12px; height: 12px; border-radius: 4px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200,245,96,.25);
}
.check-list strong { color: var(--ink); }

/* ——— Page heroes ——— */
.page-hero {
  position: relative;
  min-height: 340px;
  display: grid; align-items: end;
  color: #fff;
  overflow: hidden;
}
.page-hero .ph-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero .ph-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,15,.85), rgba(7,20,15,.35));
}
.page-hero .wrap { position: relative; z-index: 2; padding: 4.5rem 0 2.5rem; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  margin: 0 0 .5rem;
}
.page-hero p { margin: 0; max-width: 46ch; color: rgba(255,255,255,.88); font-size: 1.05rem; }

/* ——— Product grid modern ——— */
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.chip {
  padding: .55rem 1rem; border-radius: 999px; font-weight: 800; font-size: .88rem;
  background: #fff; border: 1.5px solid rgba(7,20,15,.1); color: var(--muted);
}
.chip.is-active, .chip:hover {
  background: var(--leaf); color: #fff; border-color: var(--leaf);
}

.product-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.p-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow);
}
.p-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.p-card:hover .bg { transform: scale(1.05); }
.p-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,20,15,.9) 0%, rgba(7,20,15,.15) 60%);
}
.p-card .body {
  position: relative; z-index: 2;
  height: 100%;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: end;
  padding: 1.5rem;
}
.p-card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin: 0 0 .4rem;
  letter-spacing: -0.03em;
}
.p-card p { margin: 0 0 1rem; color: rgba(255,255,255,.85); }

/* Detail */
.detail-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}
.detail-photo {
  min-height: 440px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.pill-row {
  display: flex; flex-wrap: wrap; gap: .5rem;
  list-style: none; padding: 0; margin: 1rem 0 1.4rem;
}
.pill-row li {
  background: rgba(31,138,76,.1);
  color: var(--ink);
  border-radius: 999px;
  padding: .4rem .85rem;
  font-weight: 700;
  font-size: .88rem;
}

/* Contact */
.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
}
.c-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7,20,15,.05);
}
.c-card h3 {
  font-family: var(--display);
  margin: 0 0 .5rem;
  font-size: 1.15rem;
}
.c-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.c-card a { color: var(--leaf); font-weight: 700; }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(7,20,15,.06);
  box-shadow: 0 12px 40px rgba(7,20,15,.05);
}
.panel h2 {
  font-family: var(--display);
  margin: 0 0 .4rem;
  letter-spacing: -0.03em;
}
.map-frame {
  margin-top: .9rem;
  min-height: 280px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(7,20,15,.08);
  background: var(--sand);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.form-grid { display: grid; gap: .85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
label { display: block; font-weight: 800; font-size: .88rem; margin-bottom: .35rem; }
.form-control, textarea.form-control, select.form-control {
  width: 100%; border: 1.5px solid rgba(7,20,15,.12);
  border-radius: 14px; padding: .8rem .95rem; font: inherit; background: var(--cream);
}
.form-control:focus {
  outline: 0; border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31,138,76,.15);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.field-error { color: #b42318; font-size: .85rem; }
.alert-success {
  background: rgba(200,245,96,.35);
  border: 1px solid rgba(31,138,76,.3);
  color: var(--ink);
  padding: .85rem 1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* AI module detail */
.ai-detail {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.4rem;
}
.ai-photo {
  min-height: 360px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.result-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(200,245,96,.25);
  border: 1px solid rgba(31,138,76,.25);
}
.result-box.amber {
  background: rgba(255,138,31,.12);
  border-color: rgba(255,138,31,.3);
}

/* CTA */
.cta-slab {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: grid; align-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-slab .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.cta-slab .shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,15,.9), rgba(7,20,15,.45));
}
.cta-slab .inner {
  position: relative; z-index: 2;
  padding: 2.2rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.cta-slab h2 {
  font-family: var(--display);
  margin: 0 0 .4rem;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  letter-spacing: -0.03em;
}
.cta-slab p { margin: 0; color: rgba(255,255,255,.85); max-width: 40ch; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0c2418 0%, #07150e 100%);
  color: rgba(255,255,255,.78);
  margin-top: 3rem;
  border-top: 4px solid var(--amber);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
  gap: 2rem;
  padding: 3.2rem 0 2.2rem;
}
.footer-tag { color: #fff; font-weight: 800; margin: 1rem 0 .5rem; }
.footer-desc { margin: 0 0 1rem; max-width: 36ch; }
.trust {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.trust span {
  background: rgba(232,137,26,.14);
  color: #ffc078;
  border: 1px solid rgba(232,137,26,.28);
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .8rem;
  font-weight: 700;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.1rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.social-links a:hover {
  background: rgba(232,137,26,.2);
  border-color: rgba(232,137,26,.45);
  color: #ffc078;
}
.social-links--light {
  gap: .45rem .7rem;
  margin-top: .35rem;
}
.social-links--light a {
  width: auto;
  height: auto;
  padding: .4rem .7rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--leaf, #1a7a3c);
  background: rgba(26,122,60,.08);
  border: 1px solid rgba(26,122,60,.18);
}
.social-links--light a:hover {
  color: #fff;
  background: var(--leaf, #1a7a3c);
  border-color: var(--leaf, #1a7a3c);
}
.footer-h {
  color: #fff; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a {
  display: inline-block; padding: .28rem 0;
  color: rgba(255,255,255,.72);
}
.footer-links a:hover { color: var(--amber); }
.f-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: .9rem 1rem;
  margin-bottom: .7rem;
}
.f-box .lbl {
  display: block; font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; opacity: .65; margin-bottom: .25rem;
}
.f-box a { color: #fff; font-weight: 800; font-size: 1.05rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #040c09;
}
.footer-bottom-inner {
  padding: 1rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .88rem; color: rgba(255,255,255,.55);
}
.footer-bottom p { margin: 0; }

/* Mobile panel default (desktop) */
.mobile-panel { display: none; }
body.nav-open { overflow: hidden; }

/* ========== Tablet ========== */
@media (max-width: 1100px) {
  .lane-grid-2, .ai-mosaic, .collage, .about-split, .product-bento,
  .detail-split, .contact-hero-grid, .contact-split, .ai-detail, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ai-mosaic { grid-template-rows: auto; }
  .ai-card:first-child, .collage .shot:first-child {
    grid-row: auto;
    min-height: 240px;
  }
  .collage .shot-wide {
    grid-column: span 1;
    min-height: 200px;
  }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .govt-board-inner { grid-template-columns: 1fr; }
}

/* ========== Mobile ========== */
@media (max-width: 860px) {
  :root { --header-h: 64px; }

  .wrap { width: min(1200px, calc(100% - 1.25rem)); }

  .utility { font-size: .68rem; }
  .utility-inner {
    flex-direction: column;
    gap: .35rem;
    padding: .45rem 0;
    text-align: center;
    justify-content: center;
  }
  .utility-left {
    justify-content: center;
    gap: .35rem .65rem;
  }
  .utility-left .sep { display: none; }
  .utility-right {
    justify-content: center;
    gap: .65rem;
    font-size: .72rem;
  }
  .utility-right span:first-child { display: none; }

  .header-row {
    min-height: var(--header-h);
    gap: .5rem;
  }
  .brand-logo {
    height: 40px;
    max-width: 170px;
    object-fit: contain;
  }
  .nav-desktop,
  .header-cta-desktop { display: none !important; }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-toggle span { transition: transform .2s ease, opacity .2s ease; }
  .site-header.is-open .nav-toggle > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.is-open .nav-toggle > span:nth-child(3) { opacity: 0; }
  .site-header.is-open .nav-toggle > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-panel {
    display: block;
    background: #fff;
    border-bottom: 3px solid var(--amber);
    box-shadow: 0 16px 40px rgba(10, 31, 20, .12);
    padding: .5rem 1rem 1.1rem;
  }
  .mobile-panel[hidden] { display: none !important; }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: .2rem;
  }
  .mobile-nav a {
    display: flex;
    align-items: center;
    padding: .9rem .85rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    border-radius: 14px;
    min-height: 48px;
  }
  .mobile-nav a.is-active,
  .mobile-nav a:hover {
    background: rgba(26, 122, 60, .1);
    color: var(--leaf-deep);
  }
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(7, 20, 15, .08);
  }
  .mobile-cta .btn {
    width: 100%;
    min-height: 48px;
    padding: .85rem .5rem;
  }

  .ks-hero {
    height: clamp(280px, calc(100svh - 18rem), 420px) !important;
    min-height: 280px;
    max-height: 420px;
  }
  .ks-hero__inner {
    padding: 1.75rem 0 2rem;
    align-items: flex-end;
    height: 100%;
    min-height: 0;
  }
  .ks-hero__copy { max-width: 100%; }
  .ks-hero__title {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }
  .ks-hero__lead {
    font-size: .95rem;
    max-width: none;
  }
  .ks-hero__btns {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .ks-hero__btns .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .ks-hero__shade {
    background: linear-gradient(
      180deg,
      rgba(8, 24, 16, 0.1) 0%,
      rgba(8, 24, 16, 0.18) 50%,
      rgba(8, 24, 16, 0.36) 100%
    );
  }
  .ks-hero__video {
    object-position: 55% center;
    transform: none;
  }

  .govt-board { padding: .75rem 0 .9rem; }
  .govt-board-inner {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .govt-card { padding: .75rem .85rem; }

  .section { padding: 2.4rem 0; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.25rem;
  }
  .section-head .btn { width: 100%; }

  .lane,
  .lane-tall { min-height: 220px; }
  .lane-grid-2,
  .ai-mosaic,
  .collage,
  .about-split,
  .product-bento,
  .detail-split,
  .contact-hero-grid,
  .contact-split,
  .ai-detail,
  .footer-grid,
  .steps,
  .form-row {
    grid-template-columns: 1fr;
  }
  .collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: .65rem;
  }
  .collage .shot:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }
  .collage .shot-wide {
    grid-column: 1 / -1;
    min-height: 160px;
  }
  .collage .shot { min-height: 140px; }

  .steps { gap: .55rem; }
  .step { padding: .95rem .9rem; }

  .ai-band { padding: 2.5rem 0; }
  .ai-mosaic { margin-top: 1.25rem; gap: .65rem; }
  .ai-card,
  .ai-card:first-child { min-height: 180px; }

  .product-bento { gap: .75rem; }
  .p-card,
  .p-card .body { min-height: 260px; }

  .page-hero { min-height: 200px; }
  .page-hero .wrap { padding: 2.4rem 0 1.6rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }

  .detail-photo,
  .ai-photo { min-height: 220px; }
  .map-frame { min-height: 200px; }

  .contact-hero-grid {
    margin-top: -1.5rem;
    gap: .65rem;
  }
  .panel { padding: 1.15rem 1rem; }
  .cta-slab .inner {
    padding: 1.4rem;
    flex-direction: column;
    align-items: stretch;
  }
  .cta-slab .inner > div:last-child {
    display: grid;
    gap: .55rem;
  }
  .cta-slab .btn {
    width: 100%;
    min-height: 48px;
  }

  .chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .35rem;
    gap: .45rem;
  }
  .chip {
    flex: 0 0 auto;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .btn { min-height: 44px; }
  .btn-lg { min-height: 48px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.2rem 0 1.6rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .brand-logo-footer { height: 42px; }

  .marquee-track {
    font-size: .78rem;
    gap: 1.5rem;
    padding: .7rem 0;
  }

  .lane-body {
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
  }
  .lane-body .btn { width: 100%; }
}

/* ========== Small phones ========== */
@media (max-width: 480px) {
  .wrap { width: calc(100% - 1rem); }
  .brand-logo {
    height: 36px;
    max-width: 150px;
  }
  .ks-hero {
    height: clamp(260px, calc(100svh - 20rem), 380px) !important;
    min-height: 260px;
    max-height: 380px;
  }
  .ks-hero__inner { min-height: 0; }
  .ks-hero__video {
    object-position: 55% center;
    transform: none;
  }
  .mobile-cta { grid-template-columns: 1fr; }
  .utility-left span:nth-child(n + 4) { display: none; }
  .govt-meta .name { font-size: .9rem; }
  .collage { grid-template-columns: 1fr; }
  .collage .shot:first-child,
  .collage .shot-wide { grid-column: auto; }
}
