:root {
  --green-950: #153526;
  --green-900: #1c4733;
  --green-800: #255a41;
  --green-700: #2f6d50;
  --mint-100: #eef6f2;
  --stone-50: #f8f7f3;
  --stone-100: #eeeae2;
  --stone-300: #cfc8ba;
  --ink: #111312;
  --muted: #61685f;
  --white: #ffffff;
  --gold: #caa45d;
  --line: rgba(28, 71, 51, 0.14);
  --shadow: 0 18px 46px rgba(22, 55, 40, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone-50);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
li,
a,
button,
span,
summary,
td,
th {
  overflow-wrap: anywhere;
}

main,
section,
article,
div,
ul,
ol {
  min-width: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  background: var(--white);
  color: var(--green-900);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 247, 243, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topline {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 1rem;
  color: var(--white);
  background: var(--green-950);
  font-size: 0.86rem;
}

.topline span,
.topline a {
  white-space: nowrap;
}

.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
}

.brand img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  color: #273029;
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: var(--green-800);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 10px 24px rgba(28, 71, 51, 0.16);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--green-800);
  box-shadow: 0 16px 30px rgba(28, 71, 51, 0.18);
}

.button.secondary,
.button.ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--green-900);
}

.button svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-900);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: 5rem max(1rem, calc((100vw - var(--max)) / 2)) 4rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 53, 38, 0.95), rgba(37, 90, 65, 0.84)),
    var(--green-900);
  overflow: hidden;
}

.hero-copy,
.page-hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 0.9rem 0 1rem;
  font-size: 4.35rem;
  line-height: 0.96;
  max-width: 900px;
  overflow-wrap: break-word;
}

.hero p,
.page-hero p,
.section-intro p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.trust-points span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.hero-photo {
  width: 100%;
  min-height: 440px;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-product {
  position: absolute;
  right: -1rem;
  bottom: 1.3rem;
  width: 48%;
  min-width: 210px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(248, 247, 243, 0.92);
  box-shadow: var(--shadow);
}

.hero-lock {
  margin: auto;
  max-height: 300px;
  object-fit: contain;
}

.metrics-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: -2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.metrics-strip div {
  background: var(--white);
  padding: 1.25rem;
}

.metrics-strip strong {
  display: block;
  color: var(--green-900);
  font-size: 1.8rem;
  line-height: 1;
}

.metrics-strip span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

.section,
.split-section,
.brand-panels,
.process-grid,
.contact-layout,
.related-strip,
.cta-band,
.legal-content {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section.shaded {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--stone-100);
}

.section-intro {
  margin-bottom: 2rem;
}

.section-intro h2,
.split-copy h2,
.cta-band h2,
.contact-card h2,
.enquiry-form h2,
.legal-content h2 {
  margin: 0.6rem 0 0.7rem;
  color: var(--green-950);
  font-size: 2.35rem;
  line-height: 1.08;
}

.section-intro p,
.split-copy p,
.contact-card p,
.legal-content p {
  color: var(--muted);
}

.category-grid,
.download-grid,
.gallery-grid,
.team-grid,
.product-overview-grid {
  display: grid;
  gap: 1rem;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card,
.download-card,
.product-overview-card,
.team-card,
.process-card,
.contact-card,
.enquiry-form,
.gallery-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card {
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.product-overview-card:hover,
.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 109, 80, 0.28);
  box-shadow: 0 16px 34px rgba(28, 71, 51, 0.13);
}

.category-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--mint-100);
  transition: transform 360ms ease, filter 360ms ease;
}

.category-card:hover .category-img,
.gallery-tile:hover .gallery-img,
.brand-panel:hover .brand-img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.category-card span,
.product-overview-card span {
  display: block;
  margin: 1rem 1rem 0.25rem;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.category-card h3,
.product-overview-card h2 {
  margin: 0 1rem 0.35rem;
  color: var(--green-950);
  font-size: 1.22rem;
  line-height: 1.18;
}

.category-card p,
.product-overview-card p {
  margin: 0 1rem 1.15rem;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0;
}

.split-img,
.brand-img,
.product-main-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-img {
  aspect-ratio: 1 / 1;
}

.check-list,
.feature-list {
  padding: 0;
  margin: 1.2rem 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 2rem;
  border-bottom: 1px solid var(--line);
  color: #2f3831;
  font-weight: 700;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  background: var(--green-700);
  border-radius: 50%;
}

.check-list li::after,
.feature-list li::after {
  content: "";
  position: absolute;
  left: 0.43rem;
  top: 1.11rem;
  width: 0.36rem;
  height: 0.62rem;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green-900);
  font-weight: 900;
}

.text-link svg {
  width: 1rem;
  height: 1rem;
}

.download-grid {
  grid-template-columns: repeat(4, 1fr);
}

.download-card {
  padding: 1rem;
}

.download-card span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  color: var(--white);
  background: var(--green-800);
  font-size: 0.72rem;
  font-weight: 900;
}

.download-card strong,
.download-card small {
  display: block;
}

.download-card strong {
  margin-top: 0.8rem;
  color: var(--green-950);
  line-height: 1.2;
}

.download-card small {
  margin-top: 0.35rem;
  color: var(--muted);
}

.download-card.muted {
  pointer-events: none;
  background: rgba(255, 255, 255, 0.72);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-table,
.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.comparison-table th,
.comparison-table td,
.spec-table th,
.spec-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th,
.spec-table th {
  color: var(--green-950);
  background: var(--mint-100);
  font-weight: 900;
}

.comparison-table td,
.spec-table td {
  color: #2f3831;
}

.spec-panel,
.enquiry-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.5rem;
  align-items: start;
}

.spec-panel h2,
.enquiry-panel h2 {
  margin: 0.6rem 0 0.6rem;
  color: var(--green-950);
  font-size: 2rem;
  line-height: 1.08;
}

.spec-panel p,
.enquiry-panel p {
  color: var(--muted);
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.mini-card-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.mini-card {
  min-height: 116px;
  display: grid;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(232, 243, 238, 0.96), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.mini-card span {
  color: var(--green-950);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.enquiry-panel {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.enquiry-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.enquiry-panel li {
  padding: 0.78rem;
  border-radius: var(--radius);
  color: var(--green-950);
  background: var(--mint-100);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--green-950);
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.showcase-section {
  padding-top: 2rem;
}

.showcase-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.showcase-track {
  display: flex;
  transition: transform 620ms ease;
  will-change: transform;
}

.showcase-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(120deg, rgba(21, 53, 38, 0.9), rgba(47, 109, 80, 0.68)),
    var(--green-900);
}

.showcase-img {
  width: min(760px, 100%);
  max-height: 460px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--mint-100);
}

.showcase-slide figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--white);
  background: rgba(21, 53, 38, 0.78);
  font-weight: 900;
}

.showcase-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.showcase-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.6rem;
  cursor: pointer;
}

.trust-section {
  padding-top: 4rem;
}

.trust-grid,
.consult-grid,
.comparison-card-grid {
  display: grid;
  gap: 1rem;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-card,
.consult-card,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-card:hover,
.consult-card:hover,
.comparison-card:hover,
.process-card:hover,
.team-card:hover,
.brand-panel:hover,
.gallery-tile:hover,
.enquiry-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 109, 80, 0.28);
  box-shadow: 0 16px 34px rgba(28, 71, 51, 0.12);
}

.trust-card {
  min-height: 180px;
  padding: 1.2rem;
  display: grid;
  align-content: end;
  background:
    linear-gradient(150deg, rgba(232, 243, 238, 0.98), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.trust-card strong {
  color: var(--green-950);
  font-size: 1.22rem;
}

.trust-card p,
.consult-card p,
.comparison-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.dealer-preview {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 53, 38, 0.95), rgba(47, 109, 80, 0.88)),
    var(--green-900);
  box-shadow: var(--shadow);
}

.dealer-preview h2 {
  margin: 0.65rem 0;
  color: var(--white);
  font-size: 2.35rem;
  line-height: 1.08;
}

.dealer-preview p {
  color: rgba(255, 255, 255, 0.82);
}

.dealer-preview-media {
  position: relative;
  min-height: 360px;
}

.dealer-img {
  width: 88%;
  min-height: 320px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--mint-100);
}

.dealer-img.small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  min-height: 180px;
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

.consult-grid {
  grid-template-columns: repeat(4, 1fr);
}

.consult-card {
  padding: 1.1rem;
  min-height: 210px;
}

.consult-card span {
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 900;
}

.consult-card h3,
.comparison-card span {
  margin: 0.5rem 0 0;
  color: var(--green-950);
  font-size: 1.18rem;
  line-height: 1.15;
}

.comparison-card-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.2rem;
}

.comparison-card {
  padding: 1rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(232, 243, 238, 0.92)),
    var(--white);
}

.comparison-card span {
  display: block;
  font-weight: 900;
}

.comparison-card strong {
  color: var(--green-950);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 5rem;
  padding: 2rem;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band .button.ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.page-hero {
  padding: 5rem max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 53, 38, 0.94), rgba(47, 109, 80, 0.86)),
    var(--green-900);
}

.page-hero.compact {
  min-height: 360px;
  display: grid;
  align-content: center;
}

.page-hero.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
}

.product-main-img {
  aspect-ratio: 4 / 3;
  background: var(--mint-100);
  object-fit: contain;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--mint-100);
  transition: transform 360ms ease, filter 360ms ease;
}

.related-strip {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.related-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.related-strip a {
  color: var(--green-900);
  font-weight: 800;
}

.product-overview-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-overview-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
}

.product-overview-card picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: var(--mint-100);
}

.overview-visual {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background-color: var(--mint-100);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.overview-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: var(--mint-100);
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-card {
  padding: 1.2rem;
}

.team-card strong,
.team-card span {
  display: block;
}

.team-card strong {
  font-size: 1.25rem;
  color: var(--green-950);
}

.team-card span {
  color: var(--muted);
}

.brand-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 5rem 0;
}

.brand-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--mint-100);
  transition: transform 360ms ease, filter 360ms ease;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 5rem 0;
}

.process-card {
  padding: 1.2rem;
}

.process-card span {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.process-card h2 {
  margin: 0.4rem 0;
  color: var(--green-950);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 5rem 0;
}

.contact-card,
.enquiry-form {
  padding: 1.4rem;
  min-width: 0;
  overflow: hidden;
}

.contact-card p,
.contact-card a,
.enquiry-form label,
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.enquiry-form {
  display: grid;
  gap: 0.9rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--green-950);
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.82rem;
  background: var(--stone-50);
}

.map-note {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 5rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.legal-content {
  padding: 4rem 0;
  max-width: 850px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-950);
  padding: 4rem max(1rem, calc((100vw - var(--max)) / 2)) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
}

.footer-logo {
  width: 230px;
  height: auto;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius);
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 1.08rem;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin: 0.35rem 0;
}

.site-footer a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.social-row span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.footer-bottom span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.floating-contact {
  position: fixed;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  display: grid;
  gap: 0.55rem;
}

.contact-pill {
  width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  animation: contactPulse 2.5s infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  filter: saturate(1.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.contact-pill span {
  position: absolute;
  left: 56px;
  padding: 0.38rem 0.55rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green-950);
  opacity: 0;
  transform: translateX(-6px);
  transition: 160ms ease;
  pointer-events: none;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-pill:hover span,
.contact-pill:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.contact-pill svg {
  width: 1.55rem;
  height: 1.55rem;
}

.contact-pill.whatsapp {
  background: #25d366;
}

.contact-pill.call {
  background: var(--green-800);
  animation-delay: 0.35s;
}

.contact-pill.mail {
  background: var(--gold);
  animation-delay: 0.7s;
}

.chatbot {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
}

.chatbot-toggle {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.chatbot-toggle:hover,
.chatbot-toggle:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background: var(--green-800);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(340px, calc(100vw - 2rem));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: 85% 100%;
}

.chatbot.open .chatbot-panel {
  animation: panelIn 180ms ease both;
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  background: var(--green-900);
  padding: 0.9rem 1rem;
}

.chatbot-head button {
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}

.chatbot-log {
  max-height: 220px;
  overflow: auto;
  padding: 1rem;
}

.bot-msg {
  margin: 0 0 0.7rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: var(--mint-100);
  color: #26312a;
  font-size: 0.92rem;
}

.chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}

.chatbot-chips button,
.chatbot-whatsapp {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0.45rem 0.62rem;
  color: var(--green-900);
  font-weight: 800;
  cursor: pointer;
  font-size: 0.84rem;
}

.chatbot-whatsapp {
  display: block;
  margin: 0 1rem 1rem;
  text-align: center;
  background: #25d366;
  color: var(--white);
  border-color: transparent;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0.01;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.motion-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes contactPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes riseIn {
  from {
    opacity: 0.01;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0.01;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 721px) {
  .motion-ready .hero-product {
    animation: floatCard 6s ease-in-out infinite;
  }
}

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

@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 112px 1rem auto 1rem;
    display: none;
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    justify-content: center;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero,
  .page-hero.product-hero,
  .split-section,
  .two-col,
  .contact-layout,
  .spec-panel,
  .enquiry-panel,
  .dealer-preview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.2rem;
    line-height: 1;
  }

  .hero-visual {
    min-height: 420px;
  }

  .category-grid,
  .download-grid,
  .gallery-grid,
  .process-grid,
  .team-grid,
  .brand-panels,
  .product-overview-grid,
  .mini-card-grid,
  .trust-grid,
  .consult-grid,
  .comparison-card-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topline {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-wrap {
    width: min(100% - 1rem, var(--max));
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand img {
    width: 170px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .main-nav {
    position: static;
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 0 0 0.45rem;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav {
    inset: auto;
  }

  .hero {
    padding: 3rem 0.85rem 3rem 3.55rem;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .hero > *,
  .page-hero > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.92rem;
    line-height: 1.05;
    max-width: 100%;
  }

  .hero p,
  .page-hero p,
  .section-intro p {
    font-size: 1rem;
  }

  .hero-copy,
  .page-hero-copy,
  .hero p,
  .page-hero p {
    width: min(100%, 285px);
    max-width: 285px;
    overflow-wrap: anywhere;
  }

  .hero h1,
  .page-hero h1,
  .hero-actions,
  .trust-points {
    max-width: 285px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-photo {
    min-height: 310px;
  }

  .hero-product {
    right: 0.5rem;
    width: 42%;
    min-width: 150px;
  }

  .hero-actions .button {
    width: min(100%, 224px);
  }

  .metrics-strip,
  .category-grid,
  .download-grid,
  .gallery-grid,
  .process-grid,
  .team-grid,
  .brand-panels,
  .product-overview-grid,
  .mini-card-grid,
  .trust-grid,
  .consult-grid,
  .comparison-card-grid,
  .enquiry-panel ul,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table,
  .spec-table {
    min-width: 560px;
  }

  .spec-panel h2,
  .enquiry-panel h2,
  .dealer-preview h2 {
    font-size: 1.7rem;
  }

  .showcase-slide {
    min-height: 360px;
    padding: 1rem;
  }

  .showcase-img {
    max-height: 300px;
  }

  .dealer-preview {
    padding: 1rem;
  }

  .dealer-preview-media {
    min-height: 300px;
  }

  .dealer-img {
    width: 100%;
    min-height: 260px;
  }

  .dealer-img.small {
    width: 48%;
    min-height: 140px;
  }

  .metrics-strip {
    margin-top: 0;
    width: calc(100% - 2rem);
  }

  .product-overview-card,
  .brand-panel {
    grid-template-columns: 1fr;
  }

  .overview-img {
    min-height: 240px;
  }

  .section,
  .split-section,
  .brand-panels,
  .process-grid,
  .contact-layout {
    padding: 3.5rem 0;
  }

  .section-intro h2,
  .split-copy h2,
  .cta-band h2,
  .contact-card h2,
  .enquiry-form h2 {
    font-size: 1.85rem;
  }

  .page-hero {
    padding: 3.5rem 0.85rem 3.5rem 3.55rem;
  }

  .related-strip,
  .footer-bottom {
    display: grid;
  }

  .floating-contact {
    left: 0.5rem;
  }

  .contact-pill {
    width: 44px;
    min-height: 44px;
  }

  .chatbot {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .chatbot-toggle {
    width: 52px;
    height: 52px;
    font-size: 0.86rem;
  }

  .chatbot-panel {
    bottom: 64px;
  }
}
