:root {
  color-scheme: light;
  --ink: #1a1008;
  --ink-soft: #4a3f2f;
  --blue: #2d6a4f;
  --blue-deep: #1a4a2e;
  --aqua: #c97d10;
  --sky: #faf6ee;
  --sky-strong: #f0e8d8;
  --line: #ddd0b8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(45, 106, 79, 0.14);
  --font: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(45, 106, 79, 0.16);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--sky);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(45, 106, 79, 0.32);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 92px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  min-height: 78px;
  margin-inline: auto;
  background: rgba(244, 251, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 28px;
  opacity: 0.85;
}

.brand-word {
  color: var(--blue-deep);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-since {
  color: var(--aqua);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-cta,
.button,
.lead-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
}

.header-cta,
.button-primary,
.lead-form button {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #d4891a 0%, #1a4a2e 100%);
  color: var(--white);
  padding: 0.72rem 1.15rem;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-deep);
  padding: 0.72rem 1.15rem;
}

.hero {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 0;
  text-align: center;
}

.hero-kicker,
.section-kicker,
.stage-label {
  margin: 0 0 1rem;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 940px;
  margin: 0 auto 1.3rem;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
  font-weight: 700;
  line-height: 1.06;
}

h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 710px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.product-stage {
  margin-top: clamp(3rem, 7vw, 5.5rem);
}

.stage-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto 1rem;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.stage-tabs::-webkit-scrollbar {
  display: none;
}

.stage-tab {
  position: relative;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: #66808e;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
}

.stage-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--aqua);
  content: "";
  transition: transform 180ms ease;
}

.stage-tab.active {
  color: var(--blue-deep);
}

.stage-tab.active::after {
  transform: scaleX(1);
}

.stage-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.stage-panel.changing {
  opacity: 0.55;
  transform: translateY(4px);
}

.stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.4rem);
}

.stage-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
}

.stage-copy p:not(.stage-label) {
  color: var(--ink-soft);
}

.stage-copy a,
.product-details a {
  align-self: flex-start;
  margin-top: 0.8rem;
  color: var(--blue-deep);
  font-weight: 800;
}

.stage-copy a::after,
.product-details a::after {
  content: "  >";
}

.stage-image-wrap {
  display: grid;
  min-width: 0;
  place-items: center;
  background: linear-gradient(145deg, #fdf3e3, #fff8f0 62%, #f5e8d0);
}

.stage-image-wrap img {
  width: 100%;
  height: 490px;
  object-fit: contain;
  padding: 2rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 2rem));
  margin: 2rem auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  padding: 1.5rem 1rem;
  text-align: center;
}

.signal-strip div + div {
  border-left: 1px solid var(--line);
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  color: var(--blue-deep);
  font-size: 1.05rem;
}

.signal-strip span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section > h2,
.section-heading-row h2,
.story-copy h2,
.reach-heading h2,
.enquiry-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
}

.intro-section {
  text-align: center;
}

.intro-section > h2,
.health-section > h2 {
  max-width: 880px;
  margin-inline: auto;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.product-rows {
  display: grid;
  gap: 1px;
  margin-top: 4rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--white);
  text-align: left;
}

.product-row.reverse .product-visual {
  order: 2;
}

.product-visual {
  display: grid;
  place-items: center;
  min-width: 0;
}

.blue-wash {
  background: #eaf7fc;
}

.aqua-wash {
  background: #e5f7f4;
}

.product-visual img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.2rem);
}

.product-details > span {
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-details h3 {
  margin: 0.45rem 0 1rem;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.08;
}

.product-details p,
.story-copy > p,
.section-heading-row > p,
.reach-heading > p,
.enquiry-copy > p {
  color: var(--ink-soft);
}

.product-details ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0;
  padding: 0;
  list-style: none;
}

.product-details li::before {
  margin-right: 0.6rem;
  color: var(--aqua);
  content: "+";
  font-weight: 800;
}

.home-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.story-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.story-points div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.story-points strong {
  color: var(--blue-deep);
}

.story-points span {
  color: var(--ink-soft);
}

.story-gallery {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1rem;
  align-items: end;
}

.story-gallery img {
  width: 100%;
  height: 570px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
}

.story-gallery img + img {
  height: 430px;
}

.business-section {
  width: 100%;
  padding-inline: max(1rem, calc((100% - 1120px) / 2));
  background: var(--white);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: end;
}

.section-heading-row > p {
  margin-bottom: 0.6rem;
}

.business-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.business-steps article {
  min-height: 260px;
  padding: 1.6rem 1.4rem;
}

.business-steps article + article {
  border-left: 1px solid var(--line);
}

.business-steps span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
}

.business-steps h3 {
  margin: 2.6rem 0 0.7rem;
  font-size: 1.35rem;
}

.business-steps p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.dealer-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: 4rem;
  border-radius: 16px;
  background: var(--blue-deep);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.dealer-proof h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.1;
}

.proof-table {
  display: grid;
}

.proof-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1rem 0;
}

.proof-table span {
  color: #b8d4df;
  font-size: 0.83rem;
}

.proof-table strong {
  font-size: 0.9rem;
}

.health-section {
  text-align: center;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  text-align: left;
}

.article-list a {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 1.6rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.article-list a:hover {
  transform: translateY(-4px);
  border-color: #c9a870;
  box-shadow: var(--shadow);
}

.article-list span {
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-list h3 {
  margin: 2.2rem 0 0.9rem;
  font-size: 1.35rem;
  line-height: 1.28;
}

.article-list p {
  color: var(--ink-soft);
}

.article-list b {
  margin-top: auto;
  color: var(--blue-deep);
  font-size: 0.86rem;
}

.reach-section {
  width: 100%;
  padding-inline: max(1rem, calc((100% - 1120px) / 2));
  background: var(--white);
}

.reach-heading {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: end;
}

.reach-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -3rem;
}

.map-card {
  margin-top: 3.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--sky);
}

.map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.map-canvas > img {
  width: 100%;
  height: 100%;
  opacity: 0.78;
  filter: sepia(1) hue-rotate(155deg) saturate(0.65) brightness(1.07);
  object-fit: contain;
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transform: translate(-50%, -50%);
  color: var(--blue-deep);
  font-size: 0.68rem;
  white-space: nowrap;
}

.map-pin i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #e04d54;
  box-shadow: 0 0 0 5px rgba(224, 77, 84, 0.15);
}

.map-pin b {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.18rem 0.35rem;
}

/* pin positions: x = (lon+180)/360, y = Mercator((1-ln(tan+sec)/π)/2) */
.usa      { left: 22%;  top: 30%; }
.uk       { left: 48%;  top: 22%; }
.finland  { left: 55%;  top: 16%; }
.cyprus   { left: 58%;  top: 32%; }
.georgia  { left: 61%;  top: 28%; }
.nigeria  { left: 51%;  top: 46%; }
.india    { left: 70%;  top: 39%; }
.srilanka { left: 71%;  top: 46%; }
.malaysia { left: 79%;  top: 48%; }
.australia{ left: 85%;  top: 63%; }

.india-network {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 1.5rem 2rem;
}

.india-network div {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.india-network strong {
  color: var(--blue);
  font-size: 2.7rem;
  line-height: 1;
}

.india-network span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.india-network p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.enquiry-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.enquiry-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.enquiry-types span {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 0.45rem 0.65rem;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: clamp(1.2rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
}

.lead-form label {
  align-self: end;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--sky);
  color: var(--ink);
  padding: 0 0.8rem;
}

.lead-form button {
  grid-column: 1 / -1;
  margin-top: 0.8rem;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 5rem;
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-footer strong {
  color: var(--blue-deep);
  font-size: 1.3rem;
}

.site-footer span,
.site-footer nav {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 1rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .stage-panel,
  .product-row,
  .home-story,
  .section-heading-row,
  .dealer-proof,
  .reach-heading,
  .enquiry-section {
    grid-template-columns: 1fr;
  }

  .product-row.reverse .product-visual {
    order: 0;
  }

  .business-steps,
  .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-steps article:nth-child(3) {
    border-left: 0;
  }

  .reach-heading .section-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 0.7rem;
  }

  .brand-since {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .stage-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(155px, 1fr));
  }

  .stage-panel {
    min-height: 0;
  }

  .stage-image-wrap {
    order: -1;
  }

  .stage-image-wrap img {
    height: 330px;
    padding: 1.2rem;
  }

  .signal-strip,
  .business-steps,
  .article-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .signal-strip div + div,
  .business-steps article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-row {
    min-height: 0;
  }

  .product-visual img {
    height: 350px;
    padding: 1.4rem;
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }

  .story-gallery img,
  .story-gallery img + img {
    height: 390px;
  }

  .proof-table > div,
  .india-network {
    grid-template-columns: 1fr;
  }

  .business-steps article {
    min-height: 0;
  }

  .business-steps h3 {
    margin-top: 1.5rem;
  }

  .map-canvas {
    min-height: 310px;
    aspect-ratio: auto;
  }

  .map-pin b {
    display: none;
  }

  .map-pin i {
    width: 9px;
    height: 9px;
  }

  .india-network {
    gap: 0.8rem;
    padding: 1.2rem;
  }

  .lead-form button {
    grid-column: auto;
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* ══════════════════════════════════════════
   ENQUIRY MODAL
   ══════════════════════════════════════════ */
.enq-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,15,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 500;
  align-items: flex-start;
  justify-content: center;
  padding: 5.5rem 1rem 1.5rem;
  overflow-y: auto;
}
.enq-overlay.open {
  display: flex;
}
.enq-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 7rem);
}
.enq-modal-head {
  background: linear-gradient(135deg, #1a4a2e 0%, #2d6a4f 100%);
  padding: 1.6rem 1.8rem 1.4rem;
}
.enq-modal-head h2 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
}
.enq-modal-head p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}
.enq-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.enq-close:hover { background: rgba(255,255,255,0.25); }
.enq-body { padding: 1.6rem 1.8rem; overflow-y: auto; flex: 1; }
.enq-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.enq-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.enq-field input {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--sky);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.enq-field input:focus {
  border-color: var(--blue);
  background: #fff;
}
.enq-field input.error {
  border-color: #d64747;
}
.enq-field-error {
  font-size: 0.74rem;
  color: #d64747;
  display: none;
}
.enq-field-error.show { display: block; }
.enq-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  padding: 0.75rem 1rem;
  background: var(--sky);
  border-radius: 8px;
  border-left: 3px solid var(--blue);
}
.enq-submit {
  width: 100%;
  background: linear-gradient(135deg, #2d6a4f 0%, #1a4a2e 100%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
}
.enq-submit:hover { opacity: 0.88; }
.enq-submit:active { opacity: 0.75; }

/* Thank-you state */
.enq-thankyou {
  display: none;
  padding: 2.5rem 1.8rem;
  text-align: center;
}
.enq-thankyou.show { display: block; }
.enq-body.hide { display: none; }
.enq-ty-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2d6a4f 0%, #1a4a2e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.enq-ty-icon svg { color: #fff; }
.enq-thankyou h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.enq-thankyou p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 1.4rem;
}
.enq-ty-close {
  background: var(--sky-strong);
  border: none;
  border-radius: 100px;
  padding: 0.7rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  color: var(--ink);
}

/* WA fallback modal */
.wa-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,15,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.wa-overlay.open { display: flex; }
.wa-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  overflow: hidden;
}
.wa-modal-head {
  background: #25D366;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-modal-head svg { flex-shrink: 0; }
.wa-modal-head h2 { color: #fff; font-size: 1rem; font-weight: 800; margin: 0; }
.wa-modal-body { padding: 1.4rem 1.6rem; }
.wa-modal-body p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; margin: 0 0 1.2rem; }
.wa-modal-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.wa-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}
.wa-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue-deep);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}
.wa-dismiss {
  background: none;
  border: none;
  font-size: 0.82rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  padding: 0.4rem;
}

/* ══════════════════════════════════════════
   MOBILE CTA BAR
   ══════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
}

/* ══════════════════════════════════════════
   MOBILE LAYOUT — comprehensive fixes
   ══════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Sticky call/WA bar */
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
  }
  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 1rem 0.75rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .mcta-call {
    background: var(--blue-deep);
    color: #fff;
  }
  .mcta-wa {
    background: #25D366;
    color: #fff;
  }
  .mcta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  /* Push content above sticky bar */
  body {
    padding-bottom: 60px;
  }

  /* Shift floating WA button above sticky bar on mobile */
  .whatsapp-float {
    bottom: 72px;
  }

  /* Tighter section padding */
  .section {
    padding-block: 1.5rem;
  }

  /* Hero — less vertical padding */
  .hero {
    padding-block: clamp(2rem, 8vw, 3rem) clamp(2rem, 6vw, 2.5rem);
  }

  /* Stat bar — 2×2 grid on mobile (Issue 09) */
  .signal-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .signal-strip div {
    border-left: none !important;
    border-top: none !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .signal-strip div:nth-child(odd) {
    border-right: 1px solid var(--line) !important;
  }
  .signal-strip div:nth-last-child(-n+2) {
    border-bottom: none !important;
  }

  /* MII strip — single line, tight spacing */
  .mii-strip {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.4rem;
    padding-block: 0.75rem;
    padding-inline: 0.5rem;
    font-size: 0.75rem;
    overflow: hidden;
  }

  /* Product category tabs (line-icon-grid) — 2×2 */
  .line-icon-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Oil press sub-tabs — scrollable row */
  .oil-segment {
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
  }
  .oil-segment::-webkit-scrollbar { display: none; }
  .oil-seg-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Commercial machines banner — stack */
  .commercial-banner {
    grid-template-columns: 1fr !important;
  }

  /* Steps horizontal (business page) — stack */
  .steps-h {
    grid-template-columns: 1fr !important;
  }
  .step-h {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }
  .step-h:last-child { border-bottom: none; }

  /* Scheme strip — stack */
  .scheme-strip {
    grid-template-columns: 1fr !important;
  }

  /* Trust grid — stack */
  .trust-grid {
    grid-template-columns: 1fr !important;
  }

  /* FAQ — ensure full width */
  .faq-acc-q, .faq-acc-a {
    font-size: 0.88rem;
  }

  /* Footer — hide logo tagline span, show only logo */
  .site-footer {
    padding-bottom: 1.5rem;
  }

  /* Audience cards grid on homepage */
  .audience-grid {
    grid-template-columns: 1fr !important;
  }
  .audience-card {
    min-height: 220px !important;
  }
}

/* ════════════════════════════════════════════
   v2 NEW SECTIONS
   ════════════════════════════════════════════ */

/* ── marketplace trust strip ── */
.marketplace-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.marketplace-label {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}
.marketplace-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.marketplace-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sky);
  padding: 0.45rem 0.95rem;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
  transition: border-color 180ms, background 180ms;
  white-space: nowrap;
}
.marketplace-link:hover {
  border-color: var(--blue);
  background: #e4f2fa;
  color: var(--blue-deep);
}
.marketplace-link .ml-note {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.74rem;
}
.marketplace-note {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

/* ── health trend section ── */
.health-trend-section { text-align: center; }
.trend-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0 2rem;
}
.trend-stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 1.5rem 1.2rem;
}
.trend-stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trend-stat-desc {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ── business guide CTA box ── */
.biz-guide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(90deg, #eaf5fb 0%, #f0f8f4 100%);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  margin-bottom: 2rem;
}
.biz-guide-cta p { margin: 0; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.biz-guide-cta a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: var(--blue-deep);
  color: #fff;
  border-radius: 7px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

/* ── dealer teaser section ── */
.dealer-teaser-section {
  width: 100%;
  background: var(--blue-deep);
  padding-inline: max(1rem, calc((100% - 1120px) / 2));
}
.dealer-teaser-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.dealer-teaser-inner .section-kicker { color: var(--aqua); }
.dealer-teaser-inner h2 { color: var(--white); margin-bottom: 0.8rem; }
.dealer-teaser-lead { color: rgba(255,255,255,0.75) !important; }
.dealer-benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}
.dealer-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.dealer-benefits-list li::before {
  content: "✓";
  color: var(--aqua);
  font-weight: 800;
  flex-shrink: 0;
}
.dealer-cta-box {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  padding: 2rem 1.8rem;
  text-align: center;
  color: var(--white);
}
.dealer-cta-box strong { display: block; font-size: 1rem; margin-bottom: 0.4rem; }
.dealer-cta-box p { font-size: 0.84rem; color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; }
.btn-white {
  display: inline-flex;
  align-items: center;
  border: 2px solid #fff;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.72rem 1.4rem;
  text-decoration: none;
  transition: background 180ms;
}
.btn-white:hover { background: var(--sky); color: var(--blue-deep); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.62rem 1.1rem;
  text-decoration: none;
  margin-top: 0.6rem;
  transition: border-color 180ms;
}
.btn-outline-white:hover { border-color: #fff; color: #fff; }

/* ── testimonials ── */
.testimonials-section { text-align: center; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
  text-align: left;
}
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
}
.testimonial-tag {
  display: inline-block;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  padding: 0.18rem 0.45rem;
  margin-bottom: 0.8rem;
  width: fit-content;
}
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
  position: relative;
  padding-left: 1.2rem;
  font-style: italic;
}
.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.1em;
  color: var(--blue);
  font-size: 1.8rem;
  line-height: 1;
  font-style: normal;
}
.testimonial-author {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  margin-top: 1rem;
}
.testimonial-name { font-weight: 800; font-size: 0.86rem; color: var(--ink); }
.testimonial-role { font-size: 0.74rem; color: var(--ink-soft); margin-top: 0.15rem; }

/* ── FAQ ── */
.faq-section { }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 1.3rem 1.4rem;
}
.faq-q {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.faq-a {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ── after-sales trust strip ── */
.aftersales-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.aftersales-strip span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 200ms, box-shadow 200ms;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 0.84rem;
  border-radius: 50px;
  padding: 0.72rem 1.1rem 0.72rem 0.85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms;
}
.whatsapp-float.wa-visible {
  opacity: 1;
  pointer-events: auto;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   DESKTOP SECTION SEPARATORS (Issue 13)
   ══════════════════════════════════════════ */
@media (min-width: 641px) {
  .business-section,
  .reach-section,
  .dealer-teaser-section {
    border-top: 1px solid var(--line);
  }
}

/* ── hide nav "Become a Dealer" on mobile (Issue 11) ── */
@media (max-width: 640px) {
  .nav-hide-mobile { display: none !important; }
}

/* ── MII strip: hide lower-priority items on mobile (Issue 12) ── */
@media (max-width: 640px) {
  .mii-hide-mobile { display: none !important; }
}

/* ── oil seg btn: short label on mobile (Issue 10) ── */
.seg-full { display: inline; }
.seg-short { display: none; }
@media (max-width: 640px) {
  .seg-full { display: none; }
  .seg-short { display: inline; }
}

/* ── hide WA float on mobile (sticky bar covers it) (Issue 05) ── */
@media (max-width: 640px) {
  .whatsapp-float { display: none !important; }
}

/* ── hide WA float on desktop (client has no WhatsApp API) ── */
@media (min-width: 641px) {
  .whatsapp-float { display: none !important; }
}

/* ── sub-page styles (business.html, dealer.html) ── */
.subpage-hero {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  text-align: center;
}
.subpage-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.step-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 1.6rem 1.4rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.86rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }

.dealer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.dealer-benefit-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.dbc-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.dbc-title { font-size: 0.85rem; font-weight: 800; margin-bottom: 0.5rem; }
.dbc-desc { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.45; margin: 0; }

.dealer-table {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.86rem;
}
.dealer-table th {
  background: var(--sky-strong);
  color: var(--blue-deep);
  font-weight: 800;
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.dealer-table td {
  padding: 0.8rem 1rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.dealer-table tr:last-child td { border-bottom: none; }
.dealer-table td:first-child { color: var(--ink); font-weight: 600; }

.support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
.support-list li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 1.2rem 1.4rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.support-list li strong { display: block; color: var(--ink); font-weight: 800; margin-bottom: 0.3rem; font-size: 0.9rem; }

.final-cta-section {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 4rem);
  margin-top: 1rem;
}
.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin: 1.5rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.contact-options a { color: var(--blue); font-weight: 700; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.back-link:hover { color: var(--blue); }

/* ── responsive for new sub-page components ── */
@media (max-width: 900px) {
  .dealer-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .dealer-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .trend-stats { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .support-list { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .dealer-benefits-grid { grid-template-columns: 1fr; }
}

/* Photo strip — 3-col grid on desktop, horizontal scroll on mobile */
.photo-strip-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.photo-strip-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}
@media (max-width: 600px) {
  .photo-strip-row {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }
  .photo-strip-row::-webkit-scrollbar { display: none; }
  .photo-strip-item {
    flex: 0 0 72vw;
    max-width: 260px;
    scroll-snap-align: start;
  }
}
