:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #59646b;
  --line: #dfe5e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f49;
  --red: #b42318;
  --gold: #b7791f;
  --shadow: 0 18px 50px rgba(23, 32, 38, 0.13);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(223, 229, 232, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.brand-mark {
  display: block;
  width: 36px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.quick-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.text-link {
  color: var(--muted);
  font-size: 0.94rem;
}

.call-link,
.primary-button,
.secondary-button,
.callback-button,
.submit-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  white-space: normal;
}

.call-link,
.primary-button,
.submit-button {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(180, 35, 24, 0.22);
}

.call-link {
  padding: 0 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  align-items: center;
  min-height: calc(100vh - 64px);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 58px) clamp(24px, 4vw, 48px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 740px;
  font-size: 4.35rem;
}

h2 {
  font-size: 2.75rem;
}

.hero-text {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.callback-button {
  padding: 0 22px;
  max-width: 100%;
}

.secondary-button,
.callback-button {
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 11px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
}

.hero-media {
  overflow: hidden;
  align-self: stretch;
  min-height: min(440px, 58vw);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #e7ebe9;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: min(440px, 58vw);
  object-fit: cover;
  display: block;
}

.product-band,
.quote-section,
.contact-band {
  padding: clamp(44px, 6vw, 78px) clamp(18px, 4vw, 58px);
}

.section-heading {
  max-width: 850px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 14px;
  margin-top: 26px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.06);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2f0;
}

.product-card h3 {
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 13px 15px;
  border-left: 4px solid var(--teal);
  font-size: 1rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-intro {
  position: sticky;
  top: 92px;
}

.quote-intro p:not(.eyebrow) {
  color: var(--muted);
}

.callback-button {
  margin-top: 18px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  background: #f6f8f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.honeypot {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #27343b;
  font-size: 0.92rem;
  font-weight: 800;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  font: inherit;
  text-overflow: ellipsis;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.full-span,
.submit-button {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, auto);
  gap: 24px;
  align-items: center;
}

address {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

.contact-actions {
  display: grid;
  gap: 10px;
  min-width: min(100%, 290px);
}

.contact-actions a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-actions svg {
  width: 20px;
  height: 20px;
  fill: var(--teal);
}

.mobile-callbar {
  display: none;
}

.thanks-page {
  min-height: 100vh;
  background: var(--paper);
}

.locked-thanks .thanks-page {
  visibility: hidden;
}

.thanks-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(24px, 5vw, 72px);
}

.thanks-panel {
  max-width: 760px;
  padding: clamp(24px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 920px) {
  .hero,
  .quote-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .quote-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: center;
    gap: 12px;
  }

  .quick-actions .text-link,
  .quick-actions .call-link {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .product-card h3 {
    min-height: 52px;
    padding: 11px 12px;
    font-size: 0.94rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mobile-callbar {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 31px;
    height: 33px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 250px;
  }

  .product-card h3 {
    min-height: 56px;
    font-size: 0.9rem;
  }

  .hero-actions a {
    min-height: 46px;
  }
}
