/* ============================================================
   Bharat School Ride marketing site
   Palette (from brand logo): deep green bg / flag green / saffron / alert red
   Type: Archivo (display) · Instrument Sans (body)
         IBM Plex Mono (telemetry / labels)
   ============================================================ */

:root {
  --green-deep: #04332c;
  --green-deeper: #012b27;
  --emerald: #3f8f26;   /* flag green, from the shield */
  --emerald-soft: #edf4e6;
  --amber: #fd7200;     /* saffron, from the wordmark */
  --amber-deep: #cf5c00;
  --red: #d64541;
  --paper: #fcfbf7;
  --tint: #f2f0e8;
  --ink: #14251f;
  --ink-soft: #4a5a53;
  --line: #dcd9cd;
  --radius: 14px;
  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 130px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.mono { font-family: var(--font-mono); }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 700; margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.35em; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0.72em 1.5em;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--lg { font-size: 1.08rem; padding: 0.85em 1.8em; }
.btn--amber {
  background: var(--amber);
  color: var(--green-deeper);
  box-shadow: 0 2px 0 var(--amber-deep);
}
.btn--amber:hover { transform: translateY(-2px); box-shadow: 0 5px 14px rgba(207, 92, 0, 0.45); }
.btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75); }

/* ---------- announcement banner ---------- */
.banner {
  background: var(--amber);
  color: var(--green-deeper);
}
.banner__text {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.45rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-wrap: balance;
}
.banner__text strong { font-weight: 800; }
.banner__deadline {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.banner__ends {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18em;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 rgba(1, 43, 39, 0.35);
}
.banner__timer {
  display: inline-flex;
  align-items: center;
}
.banner__digits {
  display: inline-block;
  min-width: 2em;
  padding: 0.18em 0.3em;
  border-radius: 7px;
  background: var(--green-deeper);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18em;
  line-height: 1.2;
  text-align: center;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 2px 0 rgba(1, 43, 39, 0.35);
}
.banner__colon {
  margin: 0 0.22em;
  color: var(--green-deeper);
  font-weight: 800;
  font-size: 1.1em;
  animation: colon-blink 1s steps(1, end) infinite;
}
@keyframes colon-blink {
  50% { opacity: 0.25; }
}
.banner__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.28em 1em;
  border-radius: 999px;
  background: var(--green-deeper);
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.banner__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(1, 43, 39, 0.35); }
@media (max-width: 640px) {
  html { scroll-padding-top: 170px; }
  .banner__text { font-size: 0.84rem; padding: 0.4rem 0.8rem; gap: 0.3rem 0.5rem; }
  .banner__digits { min-width: 1.8em; font-size: 1.05em; }
  .banner__colon { margin: 0 0.12em; }
  .banner__cta { font-size: 0.8rem; padding: 0.28em 0.8em; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 43, 39, 0.92);
  backdrop-filter: blur(10px);
  color: #fff;
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.brand-mark { width: 48px; height: auto; }
.brand-word {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
/* "— School Ride —" subtext, flanking dashes as in the logo */
.brand-word em {
  font-style: normal;
  color: var(--amber);
  font-size: 0.44em;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 0.3em;
  display: flex;
  align-items: center;
  gap: 0.45em;
}
.brand-word em::before,
.brand-word em::after {
  content: "";
  flex: 1;
  height: 0.13em;
  min-width: 0.6em;
  border-radius: 99px;
  background: var(--amber);
}
.nav__links {
  display: flex;
  gap: clamp(0.6rem, 1.1vw, 1.15rem);
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.84rem;
  white-space: nowrap;
  opacity: 0.85;
}
.nav__links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.nav__cta { font-size: 0.82rem; padding: 0.55em 1.1em; white-space: nowrap; }
@media (max-width: 1080px) {
  .nav__links { display: none; }
}

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 75% -10%, rgba(63, 143, 38, 0.22), transparent 60%),
    var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.4rem clamp(4rem, 9vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow--light { color: #b7e39c; }
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253, 114, 0, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(253, 114, 0, 0); }
}
.accent-underline {
  background-image: linear-gradient(var(--amber), var(--amber));
  background-repeat: no-repeat;
  background-size: 100% 0.14em;
  background-position: 0 96%;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34em;
  margin: 1.3rem 0 2rem;
}
.hero__peace {
  display: block;
  margin-top: 0.7em;
  color: #fff;
  font-weight: 600;
  font-size: 1.05em;
}
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero__note {
  margin-top: 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

/* hero photo (driver + van cutout) */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero__photo {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}
.wa-bubble {
  position: absolute;
  left: 0;
  bottom: -1.2rem;
  width: min(280px, 62%);
  background: #e7ffdb;
  color: #1d3324;
  border-radius: 12px 12px 12px 3px;
  padding: 0.65rem 0.8rem;
  font-size: 0.78rem;
  line-height: 1.45;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}
.wa-bubble__title {
  display: block;
  font-weight: 600;
  color: #0b7a4b;
  margin-bottom: 0.15rem;
}

/* amber/black safety stripe */
.safety-stripe {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--amber) 0 22px,
    var(--green-deeper) 22px 44px
  );
}

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 1.4rem; }
.section__inner { max-width: 1160px; margin: 0 auto; }
.section__inner--narrow { max-width: 720px; }
.section__lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 40em;
  margin-bottom: 2.6rem;
}
.section--tint { background: var(--tint); }
.section--dark {
  background: var(--green-deep);
  color: #fff;
}
.section--dark .section__lede { color: rgba(255, 255, 255, 0.75); }

/* ---------- vehicle safety checks ---------- */
.check-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}
.check {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.check:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(20, 37, 31, 0.08); }
.check__photo {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.check__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.check__tick {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px #fff;
}
.check__body { padding: 1rem 1.1rem 1.2rem; }
.check p { font-size: 0.9rem; color: var(--ink-soft); }


/* ---------- road safety workshops ---------- */
.workshop-poster { margin: 0; }
.workshop-poster img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(20, 37, 31, 0.12);
}

/* ---------- daily reality gallery ---------- */
.reality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.reality-grid figure { margin: 0; }
.reality-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.reality-grid figcaption {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}
.reality-note {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- problem stats ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.stat-group { margin-bottom: 2.2rem; }
.stat-group__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.stat__num {
  font-size: 2rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1.1;
}
.stat__title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.stat p { font-size: 0.92rem; color: var(--ink-soft); }

.source { font-size: 0.72rem; color: #9b968a; }
.source a { color: inherit; }

/* ---------- for parents (carousel) ---------- */
.carousel { position: relative; }
.check-carousel {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.3rem;
  -webkit-overflow-scrolling: touch;
}
.check-carousel::-webkit-scrollbar { display: none; }
.check-carousel .check {
  flex: 0 0 calc((100% - 4.8rem) / 5);
  scroll-snap-align: start;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(20, 37, 31, 0.15);
  transition: background 0.15s ease;
}
.carousel__btn:hover { background: var(--emerald-soft); }
.carousel__btn[hidden] { display: none; }
.carousel__btn--prev { left: -21px; }
.carousel__btn--next { right: -21px; }

.chip {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--green-deeper);
  border-radius: 999px;
  padding: 0.15em 0.7em;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- route / how it works ---------- */
.route {
  list-style: none;
  position: relative;
  margin-top: 2.5rem;
  padding-left: 0.4rem;
}
/* dashed connector per stop, so the line ends at the last marker */
.route__stop:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 12px;
  bottom: -12px;
  border-left: 3px dashed var(--amber);
}
.route__stop {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2.4rem;
}
.route__stop:last-child { padding-bottom: 0; }
.route__marker {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--amber);
  font-weight: 600;
  display: grid;
  place-items: center;
  border: 3px solid var(--amber);
  z-index: 1;
}
.route__stop p { color: var(--ink-soft); max-width: 46em; }

/* ---------- testimonials ---------- */
.testimonials .section__lede { margin-bottom: 0; }
.t-marquee {
  overflow: hidden;
  margin: 2.6rem -1.4rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.t-track {
  display: flex;
  width: max-content;
  animation: t-scroll 55s linear infinite;
}
.t-marquee + .t-marquee { margin-top: 1.2rem; }
.t-track--reverse {
  animation-direction: reverse;
  animation-duration: 62s;
}
.t-marquee:hover .t-track,
.t-marquee:focus-within .t-track { animation-play-state: paused; }
@keyframes t-scroll { to { transform: translateX(-50%); } }
.t-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  padding-right: 1.2rem;
}
.t-card {
  flex: 0 0 auto;
  width: min(340px, 78vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.t-stars {
  color: var(--amber);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  line-height: 1;
}
.t-card blockquote {
  font-size: 0.99rem;
  color: var(--ink);
  text-wrap: pretty;
}
.t-who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.t-avatar {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--emerald-soft);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.t-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
}
.t-place {
  display: block;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
@media (prefers-reduced-motion: reduce) {
  .t-marquee { overflow-x: auto; }
  .t-track { width: auto; }
  .t-track .t-list[aria-hidden="true"] { display: none; }
}

/* ---------- form ---------- */
.section--form { background: var(--emerald-soft); }
.form__emotive {
  margin-top: 1.3rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--amber);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--green-deep);
  max-width: 33em;
  text-wrap: pretty;
}
.offer-deadline {
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--green-deep);
}
.offer-deadline .banner__digits { font-size: 1.1em; }
.form { margin-top: 1rem; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__field { margin-bottom: 1.1rem; }
.form__field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.req { color: var(--red); }
.opt { font-weight: 400; color: var(--ink-soft); font-size: 0.82rem; }
.form__field input,
.form__field textarea {
  width: 100%;
  font: inherit;
  padding: 0.7em 0.9em;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s ease;
}
.form__field textarea { resize: vertical; min-height: 4.5em; }
.form__field input:focus,
.form__field textarea:focus { border-color: var(--emerald); outline: none; box-shadow: 0 0 0 3px rgba(63, 143, 38, 0.18); }
.form__field input[aria-invalid="true"] { border-color: var(--red); }
.form__error {
  color: var(--red);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.form__submit { width: 100%; margin-top: 0.4rem; }
.form__privacy {
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.9rem;
  letter-spacing: 0.04em;
}
.form__success {
  background: #fff;
  border: 1.5px solid var(--emerald);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 1rem;
}
.form__success h3 { font-size: 1.5rem; }
.form__success p { color: var(--ink-soft); margin-top: 0.5rem; }
.form__share {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95rem;
  padding: 0.65em 1.4em;
}
.share-btn svg { width: 1.2em; height: 1.2em; fill: currentColor; flex-shrink: 0; }
.share-btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 2px 0 #128c7e;
}
.share-btn--wa:hover { transform: translateY(-2px); box-shadow: 0 5px 14px rgba(18, 140, 126, 0.4); }
.share-btn--copy {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.share-btn--copy:hover { box-shadow: inset 0 0 0 2px var(--ink-soft); }

/* ---------- faq ---------- */
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 1.2rem;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  color: var(--emerald);
  font-size: 1.2rem;
}
.faq[open] summary::after { content: "–"; }
.faq p { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- legal / info pages ---------- */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 1.4rem; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35em;
}
.legal__meta { color: var(--ink-soft); font-size: 0.78rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.3rem; margin: 2.2rem 0 0.5rem; }
.legal h3 { margin-top: 1.3rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin: 0.65rem 0; }
.legal ul, .legal ol { margin: 0.65rem 0 0.65rem 1.35rem; }
.legal li { margin: 0.35rem 0; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--emerald); }
.legal .faq { border-bottom: 1px solid var(--line); padding: 0.9rem 0; }
.legal .faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}
.legal .faq p { margin-top: 0.6rem; }

/* ---------- footer ---------- */
.footer {
  background: var(--green-deeper);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.4rem 2rem;
}
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.brand-word--footer { display: inline-flex; font-size: 1.9rem; }
.footer__tag { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; margin-top: 0.3rem; }
.footer__contact { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; }
.footer__contact a { color: #b7e39c; text-decoration: none; }
.footer__contact a:hover { text-decoration: underline; }
.footer__head {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}
.footer__wa { display: inline-flex; align-items: center; gap: 0.45em; }
.footer__wa svg { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }
.footer__legal {
  max-width: 1160px;
  margin: 2.2rem auto 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- responsive ---------- */
.br-desktop { display: none; }
@media (min-width: 900px) {
  .br-desktop { display: inline; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 1rem; }
  .check-carousel .check { flex-basis: min(300px, 78%); }
  .reality-grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .wa-bubble { left: 0.4rem; }

  /* grids become swipeable carousels on small screens */
  .carousel--mobile .check-grid,
  .carousel--mobile .stat-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.3rem;
  }
  .carousel--mobile .check-grid::-webkit-scrollbar,
  .carousel--mobile .stat-grid::-webkit-scrollbar { display: none; }
  .carousel--mobile .check-grid > .check {
    flex: 0 0 min(300px, 78%);
    scroll-snap-align: start;
  }
  .carousel--mobile .stat-grid > .stat {
    flex: 0 0 min(280px, 82%);
    scroll-snap-align: start;
  }
  .carousel--mobile .carousel__btn--prev { left: -10px; }
  .carousel--mobile .carousel__btn--next { right: -10px; }
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .nav__inner { gap: 1rem; justify-content: space-between; }
  .brand-word { font-size: 1.25rem; }
  .brand-mark { width: 38px; }
  .nav__cta { font-size: 0.78rem; padding: 0.5em 1em; }
}

/* ---------- about / company page ---------- */
.brand-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--emerald-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
}
.brand-banner img {
  width: 84px;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.2rem;
  border-radius: 12px;
}
.brand-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.brand-banner__body { color: var(--ink-soft); font-size: 0.95rem; }
.company-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin: 1rem 0 1.4rem;
}
.company-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.company-card__type {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0.25rem 0 0.7rem;
}
.company-card p { margin: 0.3rem 0; }
.director-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.4rem;
}
.director-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.director-card__av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: #b7e39c;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
}
.director-card__name { font-family: var(--font-display); font-weight: 700; }
.director-card__role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0.15rem 0 0.45rem;
}
.footer__legal a { color: rgba(255, 255, 255, 0.6); }
