:root {
  --green-950: #092417;
  --green-900: #103a24;
  --green-800: #174d2f;
  --green-700: #23633a;
  --green-500: #3f8b58;
  --green-100: #dce9df;
  --green-50: #f3f7f4;
  --orange: #f58220;
  --orange-dark: #bd5105;
  --orange-soft: #fff0e2;
  --white: #ffffff;
  --ink: #142219;
  --muted: #637068;
  --line: rgba(16, 58, 36, 0.14);
  --shadow: 0 24px 70px rgba(9, 36, 23, 0.16);
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--green-50);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.top-strip {
  position: relative;
  z-index: 30;
  height: 34px;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
}

.top-strip__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--green-900);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px 10px 10px 2px;
  background: var(--green-900);
  overflow: hidden;
}

.brand-mark::after {
  position: absolute;
  right: -7px;
  bottom: -8px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.brand-mark i {
  position: absolute;
  z-index: 1;
  width: 5px;
  border-radius: 4px;
  background: #fff;
  transform: skew(-13deg);
}

.brand-mark i:nth-child(1) { left: 9px; height: 19px; }
.brand-mark i:nth-child(2) { left: 17px; height: 13px; }
.brand-mark i:nth-child(3) { left: 25px; height: 21px; }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--green-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 28px;
  color: #31443a;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  line-height: 1.2;
}

.header-contact small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-contact strong {
  margin-top: 4px;
  color: var(--green-900);
  font-size: 14px;
}

.header-cta,
.primary-button,
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  background: var(--green-900);
  color: #fff;
  font-size: 13px;
}

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

.buy-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 110px);
  padding: 42px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 24%, rgba(63, 139, 88, 0.38), transparent 29%),
    linear-gradient(115deg, #092417 0%, #103a24 45%, #174d2f 100%);
  color: #fff;
}

.buy-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}

.hero-texture {
  position: absolute;
  z-index: -1;
  top: -20%;
  left: 40%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-texture::before,
.hero-texture::after {
  position: absolute;
  inset: 10%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.hero-texture::after {
  inset: 22%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.9fr) minmax(315px, 0.74fr);
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 22px 0 44px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
}

.hero-copy h1 {
  max-width: 670px;
  margin-bottom: 22px;
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.choice-block {
  max-width: 610px;
}

.choice-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-list button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.choice-list button:hover,
.choice-list button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.hero-mobile-actions {
  display: none;
  align-items: center;
  margin-top: 22px;
  gap: 18px;
}

.primary-button {
  min-height: 54px;
  padding: 0 20px;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(153, 66, 4, 0.27);
  color: #fff;
  font-size: 13px;
}

.primary-button:hover {
  background: #ff8b36;
  box-shadow: 0 16px 34px rgba(153, 66, 4, 0.34);
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-product {
  position: relative;
  align-self: stretch;
  min-height: 590px;
  padding-top: 20px;
}

.product-orbit {
  position: absolute;
  top: 13%;
  left: 2%;
  width: 96%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.product-orbit::before {
  position: absolute;
  inset: 10%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.hero-product__image {
  position: absolute;
  top: 28px;
  right: -20px;
  left: -20px;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  background: #eef2ee;
}

.hero-product__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 36, 23, 0.38), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-product__image img {
  width: 100%;
  height: 100%;
}

.scene-image {
  object-fit: cover;
}

.studio-image {
  object-fit: contain;
  padding: 16px;
  background: #f2f3f1;
}

.availability-chip {
  position: absolute;
  z-index: 2;
  top: 48px;
  left: -2px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 7px;
  background: rgba(9, 36, 23, 0.88);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.availability-chip span,
.form-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58d082;
  box-shadow: 0 0 0 4px rgba(88, 208, 130, 0.15);
}

.product-caption {
  position: absolute;
  right: 10px;
  bottom: 20px;
  left: 10px;
  z-index: 2;
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(7, 29, 18, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
}

.product-caption > span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-caption strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.product-caption p {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
  line-height: 1.5;
}

.product-caption ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  gap: 7px 11px;
  list-style: none;
}

.product-caption li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  font-weight: 700;
}

.product-caption li svg {
  width: 13px;
  color: var(--orange);
}

.quote-card {
  position: relative;
  z-index: 4;
  padding: 25px;
  border: 0px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.quote-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--orange), #ffb36f);
  content: "";
}

.quote-card__head p {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  gap: 9px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card__head p span {
  color: var(--orange);
}

.quote-card__head h2 {
  margin-bottom: 7px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.quote-card__head small {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
}

.quote-form {
  display: grid;
  gap: 11px;
}

.quote-form label {
  display: grid;
  gap: 6px;
}

.quote-form label > span {
  color: #425049;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-width: 0;
  min-height: 43px;
  padding: 0 11px;
  border: 1px solid #dce5df;
  border-radius: 8px;
  outline: 0;
  background: #f8faf8;
  color: var(--ink);
  font-size: 12px;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(63, 139, 88, 0.12);
  background: #fff;
}

.quote-form input::placeholder {
  color: #96a099;
}

.quote-submit {
  width: 100%;
  margin-top: 3px;
}

.quote-submit svg:last-child {
  margin-left: auto;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1px 0 0;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-note span {
  display: block;
  width: 5px;
  height: 5px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust div {
  position: relative;
  padding: 20px 22px 24px;
}

.hero-trust div:first-child {
  padding-left: 0;
}

.hero-trust div:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.section {
  position: relative;
  padding: 108px 0;
}

.showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 130, 32, 0.08), transparent 22%),
    #f5f8f5;
}

.showcase::before {
  position: absolute;
  top: 0;
  right: 6%;
  width: 260px;
  height: 100%;
  background-image: radial-gradient(rgba(16, 58, 36, 0.12) 1px, transparent 1px);
  background-size: 16px 16px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 65%, transparent);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  margin-bottom: 44px;
  gap: 60px;
}

.section-heading h2,
.selector-copy h2,
.faq-intro h2 {
  margin-bottom: 0;
  color: var(--green-950);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.equipment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.equipment-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(9, 36, 23, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.equipment-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(9, 36, 23, 0.13);
}

.equipment-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 58, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 58, 36, 0.035) 1px, transparent 1px),
    #eef3ef;
  background-size: 28px 28px;
}

.equipment-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 6px;
  background: var(--orange);
  content: "";
}

.equipment-media img {
  width: 100%;
  height: 100%;
  transition: transform 350ms ease;
}

.equipment-card:hover .equipment-media img {
  transform: scale(1.035);
}

.card-index,
.card-category {
  position: absolute;
  z-index: 2;
  top: 15px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-index {
  left: 17px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-900);
  color: #fff;
}

.card-category {
  right: 17px;
  padding: 8px 10px;
  border: 1px solid rgba(16, 58, 36, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-800);
  backdrop-filter: blur(8px);
}

.equipment-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.equipment-content h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  min-height: 52px;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.equipment-content > p {
  min-height: 84px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.equipment-content dl {
  padding-block: 12px;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.equipment-content dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-block: 5px;
}

.equipment-content dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.equipment-content dd {
  margin: 0;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 800;
}

.card-cta {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  margin-top: auto;
  background: var(--green-900);
  color: #fff;
  font-size: 11px;
}

.card-cta svg {
  margin-left: auto;
  color: var(--orange);
}

.swipe-hint {
  display: none;
}

.selector-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 28px 28px,
    var(--green-950);
  color: #fff;
}

.selector-section::after {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.selector-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
}

.section-kicker--light {
  color: var(--orange);
}

.selector-copy h2 {
  max-width: 660px;
  color: #fff;
}

.selector-copy > p:not(.section-kicker) {
  max-width: 610px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.7;
}

.selector-buttons {
  display: grid;
  gap: 9px;
}

.selector-buttons button {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.selector-buttons button span {
  color: var(--orange);
  font-size: 10px;
}

.selector-buttons button:hover,
.selector-buttons button.is-active {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.13);
  color: #fff;
}

.recommendation-card {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.recommendation-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  border-bottom-left-radius: 110px;
  background: var(--orange-soft);
  content: "";
}

.recommendation-card > p:first-child {
  margin-bottom: 14px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recommendation-card h3 {
  position: relative;
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.recommendation-card h3 + p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.recommendation-line {
  width: 54px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 5px;
  background: var(--orange);
}

.recommendation-card ul {
  display: grid;
  padding: 0;
  margin-bottom: 26px;
  gap: 10px;
  list-style: none;
}

.recommendation-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #405248;
  font-size: 12px;
  font-weight: 700;
}

.recommendation-card li svg {
  color: var(--orange);
}

.advantages {
  background: #fff;
}

.section-heading--center {
  grid-template-columns: 1.1fr 0.7fr;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advantage-grid article {
  position: relative;
  padding: 32px 28px;
}

.advantage-grid article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.advantage-grid article > span {
  display: inline-grid;
  width: 35px;
  height: 35px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
}

.advantage-grid h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 18px;
}

.advantage-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.conversion-band {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: #fff;
}

.conversion-band::before {
  position: absolute;
  top: -120px;
  right: 10%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.conversion-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 240px;
  gap: 40px;
}

.conversion-band p {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversion-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.primary-button--light {
  flex: 0 0 auto;
  background: var(--green-950);
  box-shadow: 0 15px 35px rgba(83, 33, 0, 0.2);
}

.primary-button--light:hover {
  background: var(--green-900);
}

.faq {
  background:
    linear-gradient(rgba(16, 58, 36, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 58, 36, 0.025) 1px, transparent 1px),
    var(--green-50);
  background-size: 40px 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.section-kicker) {
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-intro a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
}

.faq-intro a svg {
  color: var(--orange);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(9, 36, 23, 0.04);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  color: var(--green-950);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 7px;
  background: var(--green-50);
  color: var(--orange);
  content: "+";
  font-size: 18px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 58px 22px 22px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  padding: 56px 0 24px;
  background: var(--green-950);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-bottom: 36px;
  gap: 60px;
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.54);
}

.footer-grid > p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer-contact span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact strong {
  font-size: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  gap: 10px;
  border: 3px solid #fff;
  border-radius: 30px;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(6, 38, 19, 0.24);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 24px;
  place-items: center;
  overflow-y: auto;
  background: rgba(4, 18, 11, 0.78);
  backdrop-filter: blur(10px);
}

.quote-modal {
  position: relative;
  width: min(100%, 590px);
  padding: 36px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
}

.quote-modal::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  border-radius: 20px 20px 0 0;
  background: var(--orange);
  content: "";
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-900);
  font-size: 23px;
  line-height: 1;
}

.quote-modal h2 {
  max-width: 480px;
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 35px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.modal-intro {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.quote-form--compact input,
.quote-form--compact select {
  min-height: 48px;
}

@media (max-width: 1260px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { gap: 22px; }
  .desktop-nav { gap: 19px; }
  .header-contact { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr) minmax(300px, 0.68fr); gap: 22px; }
  .hero-copy h1 { font-size: 58px; }
  .hero-product { min-height: 560px; }
  .hero-product__image { height: 350px; }
  .quote-card { padding: 21px; }
  .quote-card__head h2 { font-size: 21px; }
}

@media (max-width: 1180px) and (min-width: 801px) {
  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .equipment-media {
    height: 280px;
  }

  .equipment-content h3,
  .equipment-content > p {
    min-height: 0;
  }
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .buy-hero { min-height: auto; padding-top: 38px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 32px; }
  .quote-card { display: none; }
  .hero-mobile-actions { display: flex; }
  .hero-product { min-height: 540px; }
  .hero-trust { margin-top: 10px; }
  .section { padding: 88px 0; }
  .equipment-media { height: 270px; }
  .selector-grid { gap: 50px; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid article:nth-child(2) { border-right: 0; }
  .advantage-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 800px) {
  .top-strip__inner span:first-child,
  .top-strip__divider { display: none; }
  .site-header { position: relative; }
  .header-inner { min-height: 68px; }
  .header-cta { min-height: 42px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-copy h1 { max-width: 620px; }
  .hero-lead { max-width: 620px; }
  .hero-product { min-height: 490px; }
  .hero-product__image { right: 0; left: 0; height: 340px; }
  .availability-chip { left: 18px; }
  .product-caption { right: 22px; bottom: 14px; left: 22px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .hero-trust div:nth-child(2)::after { display: none; }
  .hero-trust div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .hero-trust div:nth-child(3) { padding-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .equipment-grid {
    display: flex;
    width: auto;
    margin-right: -18px;
    overflow-x: auto;
    gap: 13px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .equipment-grid::-webkit-scrollbar { display: none; }
  .equipment-card { flex: 0 0 min(84vw, 390px); scroll-snap-align: start; }
  .equipment-media { height: 280px; }
  .swipe-hint { display: flex; align-items: center; margin-top: 18px; gap: 8px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
  .swipe-hint span { width: 34px; height: 2px; background: var(--orange); }
  .selector-grid { grid-template-columns: 1fr; gap: 42px; }
  .recommendation-card { padding: 30px; }
  .section-heading--center { grid-template-columns: 1fr; }
  .conversion-band__inner { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 48px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .top-strip { height: 29px; font-size: 9px; }
  .header-inner { min-height: 62px; gap: 12px; }
  .brand { gap: 8px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark i:nth-child(1) { left: 7px; }
  .brand-mark i:nth-child(2) { left: 14px; }
  .brand-mark i:nth-child(3) { left: 21px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 7px; }
  .header-cta { min-height: 38px; padding: 0 11px; font-size: 14px; }
  .header-cta svg { display: none; }
  .buy-hero { padding-top: 24px; }
  .hero-copy { padding-top: 6px; }
  .eyebrow { margin-bottom: 14px; font-size: 8px; gap: 7px; }
  .eyebrow span { padding: 6px 8px; }
  .hero-copy h1 { margin-bottom: 15px; font-size: clamp(43px, 13vw, 58px); line-height: .94; }
  .hero-lead { margin-bottom: 20px; font-size: 14px; line-height: 1.55; }
  .choice-list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .choice-list button { min-height: 39px; padding: 0 8px; font-size: 13px; }
  .hero-mobile-actions { display: grid; grid-template-columns: 1fr auto; margin-top: 17px; }
  .hero-mobile-actions .primary-button { min-height: 48px; padding: 0 14px; font-size: 16px; }
  .text-link { font-size: 11px; }
  .hero-product { min-height: 420px; padding-top: 10px; }
  .hero-product__image { top: 17px; height: 270px; border-radius: 15px; }
  .studio-image { padding: 5px; }
  .availability-chip { top: 31px; left: 12px; font-size: 8px; }
  .product-caption { right: 10px; bottom: 10px; left: 10px; padding: 15px; }
  .product-caption strong { font-size: 17px; }
  .product-caption p { font-size: 13px; }
  .product-caption ul { gap: 5px 8px; }
  .product-caption li { font-size: 9px; }
  .hero-trust { margin-top: 3px; }
  .hero-trust div { padding: 15px 10px; }
  .hero-trust div:first-child,
  .hero-trust div:nth-child(3) { padding-left: 0; }
  .hero-trust strong { font-size: 15px; }
  .hero-trust span { font-size: 12px; line-height: 1.4; }
  .section { padding: 70px 0; }
  .section-kicker { margin-bottom: 13px; font-size: 12px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2,
  .selector-copy h2,
  .faq-intro h2 { font-size: 35px; }
  .section-heading > p { font-size: 14px; }
  .equipment-card { flex-basis: 86vw; }
  .equipment-media { height: 242px; }
  .equipment-content { padding: 20px; }
  .equipment-content h3 {
    min-height: 0;
    font-size: 20px;
  }
  .equipment-content > p { min-height: 0; }
  .selector-copy > p:not(.section-kicker) { font-size: 16px; }
  .selector-buttons button { min-height: 54px; padding: 0 14px; font-size: 14px; }
  .recommendation-card { padding: 25px 22px; }
  .recommendation-card h3 { font-size: 29px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-grid article { padding: 25px 18px; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .advantage-grid article:last-child { border-bottom: 0; }
  .advantage-grid article > span { margin-bottom: 18px; }
  .conversion-band h2 { font-size: 34px; }
  .faq-list summary { padding: 19px 52px 19px 17px; font-size: 14px; }
  .faq-list summary::after { right: 15px; }
  .faq-list details p { padding: 0 17px 19px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > p { grid-column: auto; grid-row: auto; }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; padding: 0; border-width: 3px; justify-content: center; }
  .whatsapp-float span { display: none; }
  .modal-backdrop { align-items: end; padding: 0; }
  .quote-modal { width: 100%; max-height: 94vh; padding: 28px 18px 22px; border-radius: 20px 20px 0 0; overflow-y: auto; }
  .quote-modal::before { border-radius: 20px 20px 0 0; }
  .quote-modal h2 { padding-right: 28px; font-size: 29px; }
  .field-row { grid-template-columns: 1fr; }
  .timeline-field { display: none !important; }
}

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