:root {
  color-scheme: light;
  --ink: #14211d;
  --muted: #607068;
  --paper: #f7f7f1;
  --surface: #ffffff;
  --line: #d9ded4;
  --green: #95c93d;
  --green-dark: #244f38;
  --teal: #1b6a63;
  --blue: #315f86;
  --amber: #d6972a;
  --shadow: 0 18px 48px rgba(31, 49, 42, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 52px);
  background: rgba(247, 247, 241, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.contact-strip a,
.site-header nav,
.header-actions,
.hero-actions,
.proof-row,
.panel-boxes,
.price-filters,
.site-footer,
.mobile-bar {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  min-width: 240px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-header nav {
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-header nav a,
.lang-toggle,
.icon-action {
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
}

.site-header nav a:hover,
.lang-toggle:hover,
.icon-action:hover {
  border-color: var(--line);
  background: white;
}

.header-actions {
  gap: 8px;
}

.lang-toggle,
.icon-action {
  cursor: pointer;
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.icon-action {
  min-width: 44px;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(38px, 6vw, 82px) clamp(16px, 4vw, 52px) 24px;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: 78px;
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.intro > p,
.section-head p,
.payment p,
.team-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid var(--line);
}

.button.primary {
  color: white;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: white;
}

.proof-row {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.proof-row span {
  min-width: 132px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-row strong,
.proof-row small {
  display: block;
}

.proof-row strong {
  font-size: 24px;
}

.proof-row small {
  color: var(--muted);
  font-size: 12px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dfe8dc;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 300px;
  padding: 14px;
  color: white;
  background: rgba(20, 33, 29, .88);
  border-radius: 8px;
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge span {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 22px clamp(16px, 4vw, 52px) 0;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.contact-strip a {
  gap: 12px;
  min-width: 0;
  padding: 16px;
  background: white;
  text-decoration: none;
}

.contact-strip span {
  flex: 0 0 auto;
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #eef6e2;
  border-radius: 8px;
  font-weight: 900;
}

.contact-strip strong,
.contact-strip small {
  display: block;
  min-width: 0;
}

.contact-strip strong {
  overflow-wrap: anywhere;
}

.contact-strip small {
  color: var(--muted);
}

.section {
  padding: clamp(50px, 7vw, 96px) clamp(16px, 4vw, 52px);
}

.intro,
.payment,
.team,
.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
}

.section-head {
  max-width: 880px;
  margin-bottom: 28px;
}

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

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

.reason {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  text-align: left;
  padding: 14px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  cursor: pointer;
}

.reason span {
  grid-row: span 2;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e9eee5;
  color: var(--green-dark);
  font-weight: 900;
}

.reason strong,
.reason small {
  min-width: 0;
}

.reason strong {
  font-size: 16px;
}

.reason small {
  color: var(--muted);
}

.reason.active {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(149, 201, 61, .18);
}

.reason.active span {
  color: white;
  background: var(--green-dark);
}

.reason-panel {
  min-height: 420px;
  padding: clamp(22px, 4vw, 42px);
  background: #16362d;
  color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-kicker {
  color: var(--green);
  font-weight: 850;
  margin: 0 0 10px;
}

.reason-panel p:not(.panel-kicker) {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.panel-boxes {
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}

.panel-boxes div {
  flex: 1 1 220px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.panel-boxes strong,
.panel-boxes span,
.panel-boxes a {
  display: block;
}

.panel-boxes strong {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.reason-panel .button.secondary {
  border-color: rgba(255, 255, 255, .3);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(16px, 4vw, 52px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.proof-band div {
  min-height: 150px;
  padding: 22px;
  background: white;
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  font-size: 22px;
  margin-bottom: 8px;
}

.proof-band span {
  color: var(--muted);
}

.service-grid,
.price-grid,
.payment-grid {
  display: grid;
  gap: 14px;
}

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

.service {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service span,
.service strong {
  display: block;
  padding-left: 16px;
  padding-right: 16px;
}

.service span {
  padding-top: 16px;
  color: var(--teal);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 12px;
}

.service strong {
  padding-top: 6px;
  padding-bottom: 18px;
  font-size: 18px;
}

.price-section {
  background: #edf2e6;
}

.price-filters {
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.price-filter {
  min-height: 42px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.price-filter.active {
  color: white;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

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

.price-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card.is-hidden {
  display: none;
}

.price-card strong {
  font-size: 17px;
}

.price-card span {
  color: var(--green-dark);
  font-size: 32px;
  font-weight: 900;
}

.price-card small {
  color: var(--muted);
}

.payment {
  background: #f8faf7;
}

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

.payment-grid span {
  min-height: 90px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 22px;
}

.team {
  align-items: center;
}

.team img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card,
.request-card {
  padding: clamp(20px, 4vw, 36px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-card div {
  display: grid;
  gap: 4px;
}

.contact-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.request-card label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  background: #fbfcfa;
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.request-card small {
  color: var(--muted);
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px clamp(16px, 4vw, 52px) 92px;
  color: white;
  background: #14211d;
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  gap: 8px;
  padding: 8px;
  background: rgba(20, 33, 29, .94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-bar a {
  flex: 1;
  min-height: 46px;
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  font-weight: 850;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .hero,
  .intro,
  .payment,
  .team,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-strip,
  .proof-band,
  .service-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-header nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

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

  .media-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .contact-strip,
  .proof-band,
  .service-grid,
  .price-grid,
  .payment-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    margin-top: 10px;
  }

  .reason-panel {
    min-height: auto;
  }

  .mobile-bar {
    display: flex;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .lang-toggle,
  .icon-action {
    padding-left: 9px;
    padding-right: 9px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .section {
    padding-left: 12px;
    padding-right: 12px;
  }
}
