:root {
  --canvas: #FAFAF7;
  --white: #FFFFFF;
  --ink: #0B0B0A;
  --muted: #5F5B4A;
  --line: #E3DEC8;
  --brand: #B7A536;
  --brand-dark: #8F7F23;
  --brand-hover: #9A8A2A;
  --brand-soft: #F3EFCF;
  --success: #16A34A;
  --warning: #F59E0B;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(183, 165, 54, 0.38);
  outline-offset: 4px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(227, 222, 200, 0.95);
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-link {
  border-radius: 12px;
  background: transparent;
  padding: 0;
}

.header-logo {
  display: block;
  width: min(330px, 42vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo-link {
  align-items: flex-start;
}

.footer-logo {
  display: block;
  width: 180px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.nav-link {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease;
}

.nav-link[aria-current="page"],
.nav-link:hover {
  color: var(--ink);
}

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

.nav-link[aria-current="page"]::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 0 22px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

.section {
  padding-block: 80px;
}

.section-white {
  background: var(--white);
}

.section-tight {
  padding-block: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
}

.h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}

.h3 {
  font-size: 24px;
  font-weight: 750;
  line-height: 1.2;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.copy {
  color: var(--muted);
}

.small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  position: relative;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: var(--ink);
  border-color: var(--brand);
}

.button-primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 11, 10, 0.12);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 22px rgba(11, 11, 10, 0.06);
}

.hero {
  padding: 86px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-proof {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
}

.hero-visual {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0B0B0A;
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease;
}

.hero-visual:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}

.hero-visual img {
  display: block;
  width: 100%;
  transition: transform 420ms ease;
}

.hero-visual:hover img {
  transform: scale(1.018);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading .copy {
  max-width: 430px;
  margin: 0;
}

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

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

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

.card:hover {
  border-color: rgba(183, 165, 54, 0.72);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 11, 10, 0.055);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.card-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card:hover .card-icon,
.offer-item:hover .card-icon,
.journey-step:hover .card-icon {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--ink);
  transform: translateY(-2px);
}

.card-muted {
  background: #FBFAEF;
}

.metric {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-dark);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card a:hover {
  color: var(--brand-dark);
  transform: translateX(4px);
}

.text-link {
  position: relative;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--ink);
}

p .text-link {
  display: inline-block;
  margin-top: 12px;
}

.number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 800;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}

.person {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.person strong {
  display: block;
  color: var(--ink);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 24px;
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(183, 165, 54, 0.72);
  background: #FFFEF8;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.25;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-item[open] summary::after {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: rotate(45deg);
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid #2B2A23;
  border-top: 4px solid var(--brand);
  border-radius: 16px;
  background: var(--ink);
  padding: 38px;
  color: var(--white);
}

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

.cta-band .button-primary {
  background: var(--brand);
  color: var(--ink);
}

.cta-band .button-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.cta-band p {
  max-width: 620px;
  margin: 12px 0 0;
  opacity: 0.78;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 560px;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

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

.footer-links a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.mobile-action-bar {
  display: none;
}

.legal-content {
  max-width: 900px;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.legal-content strong {
  color: var(--ink);
  font-weight: 800;
}

.legal-content a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(183, 165, 54, 0.18);
}

.error-box {
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.06);
  color: #991B1B;
  padding: 16px;
  font-size: 15px;
}

.success-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.mini-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand);
}

.consent-field .small {
  margin: 8px 0 0 32px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--brand);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.offer-item {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.offer-item .card-icon {
  margin-bottom: 24px;
}

.offer-item:hover {
  background: #FFFEF8;
}

.offer-item:last-child {
  border-right: 0;
}

.offer-item h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.offer-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.offer-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 820px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.offer-note .success-dot {
  flex: 0 0 auto;
  margin-top: 8px;
}

.offer-note p {
  margin: 0;
}

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

.journey-step {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.journey-step:hover {
  background: rgba(243, 239, 207, 0.38);
}

.journey-step:last-child {
  border-right: 0;
}

.journey-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--brand-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.journey-step h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.journey-step p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.systems-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}

.systems-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.systems-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  padding: 10px 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.systems-list span:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-2px);
}

.value-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 58px;
  align-items: start;
  border-top: 4px solid var(--brand);
  background: var(--ink);
  padding: 42px;
  color: var(--white);
}

.value-band .eyebrow {
  color: var(--brand-soft);
}

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

.value-points {
  display: grid;
  gap: 18px;
}

.value-points p {
  margin: 0;
  opacity: 0.8;
}

.value-points .button {
  justify-self: start;
  margin-top: 6px;
}

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

.landing-proof {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.proof-list div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.proof-list dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-list dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 84px;
  }

  .container {
    width: min(100% - 32px, 1200px);
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .header-logo {
    width: min(260px, 62vw);
    max-height: 52px;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }

  .section {
    padding-block: 64px;
  }

  .hero {
    padding: 62px 0 60px;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .offer-grid,
  .journey-grid,
  .systems-panel,
  .value-band,
  .comparison-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .offer-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-item:last-child {
    border-bottom: 0;
  }

  .journey-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-step:last-child {
    border-bottom: 0;
  }

  .systems-panel,
  .value-band {
    gap: 30px;
  }

  .hero-grid {
    gap: 38px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .copy {
    margin-top: 16px;
  }

  .cta-band {
    padding: 28px;
  }

  .value-band {
    padding: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: block;
    border-top: 1px solid rgba(227, 222, 200, 0.9);
    background: rgba(250, 250, 247, 0.96);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    backdrop-filter: blur(14px);
  }

  .mobile-action-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 10px;
    max-width: 520px;
    margin-inline: auto;
  }

  .mobile-action {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  }

  .mobile-action-primary {
    border-color: var(--brand);
    background: var(--brand);
    color: var(--ink);
  }

  .mobile-action-secondary {
    background: var(--white);
    color: var(--ink);
  }

  .mobile-action:active {
    transform: translateY(1px);
  }

  .mobile-action-icon {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: currentColor;
  }

  .mobile-action-icon svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .card,
  .faq-item {
    padding: 22px;
  }

  .consent-field .small {
    margin-left: 0;
  }
}

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

  .button:hover,
  .card:hover,
  .hero-visual:hover,
  .hero-visual:hover img,
  .service-card a:hover,
  .footer-links a:hover,
  .systems-list span:hover,
  .card:hover .card-icon,
  .offer-item:hover .card-icon,
  .journey-step:hover .card-icon {
    transform: none;
  }
}
