:root {
  --ink: #17211f;
  --muted: #5d6862;
  --line: #d9ded7;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --green: #14634f;
  --green-dark: #0b3f34;
  --tomato: #7a2231;
  --gold: #8a3f4b;
  --mist: #edf4ef;
  --shadow: 0 20px 60px rgba(23, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(217, 222, 215, 0.8);
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-text strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.05;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--green);
}

.header-cta,
button {
  border: 0;
  border-radius: 8px;
  background: var(--tomato);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.header-cta {
  min-width: max-content;
  padding: 11px 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(38px, 7vw, 94px) clamp(18px, 5vw, 72px) 36px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hero-text,
.section-heading p,
.split p,
.quote-card p,
.faq p,
.footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.search-panel {
  max-width: 680px;
  margin: 32px 0 20px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: block;
  margin: 2px 8px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.search-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 99, 79, 0.14);
}

.search-panel input {
  min-height: 50px;
  border: 0;
  padding: 0 14px;
}

.search-panel button,
.quote-card button {
  min-height: 50px;
  padding: 0 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 900;
}

.hero-action-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.proof-strip strong {
  color: var(--green-dark);
  font-size: 14px;
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.panel-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.panel-block span,
.category-card .step {
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-block strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.panel-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.panel-grid div {
  padding: 14px;
  border-radius: 8px;
  background: var(--mist);
}

.panel-grid strong {
  margin: 6px 0 0;
}

.section,
.solutions,
.faq {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 740px;
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.onboarding {
  padding-top: clamp(24px, 4vw, 40px);
}

.onboarding-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.onboarding-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.onboarding-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.onboarding-cta {
  display: grid;
  gap: 12px;
}

.onboarding-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.category-card div {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 20px;
}

.category-card p,
.solution-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.category-card .category-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.category-card h3 {
  margin: 0;
}

.solutions {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(24px, 5vw, 72px);
  background: var(--green-dark);
  color: #fff;
}

.solutions .eyebrow {
  color: var(--gold);
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.solution-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.solution-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.solution-list p {
  color: rgba(255, 255, 255, 0.75);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.quote-card {
  position: sticky;
  top: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.quote-card label {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-actions a,
.direct-contact a,
.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
}

.contact-actions button {
  width: 100%;
  background: var(--green);
}

.contact-actions a {
  padding: 0 14px;
  background: #f4eee6;
  color: var(--ink);
}

.quote-card input,
.quote-card textarea {
  margin-top: 8px;
  padding: 12px;
}

.quote-card textarea {
  min-height: 112px;
  resize: vertical;
}

.faq {
  padding-top: 0;
}

.trust {
  padding-top: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.direct-contact a {
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.footer-brand {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.faq h2 {
  max-width: 720px;
}

details {
  border-top: 1px solid var(--line);
  background: #fff;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 900;
}

details p {
  max-width: 820px;
  padding-bottom: 22px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: #101615;
  color: #fff;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer a {
  min-width: max-content;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #15110a;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .section-heading,
  .solutions,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .onboarding-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .search-panel div,
  .catalog-grid,
  .onboarding-grid,
  .solution-list,
  .trust-grid,
  .panel-grid,
  .hero-actions,
  .contact-actions,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-panel button {
    width: 100%;
  }

  .proof-strip {
    display: grid;
  }

  .footer {
    display: grid;
  }

  .footer a {
    min-width: 0;
    text-align: center;
  }
}
