:root {
  --ink: #102b20;
  --muted: #5f6f67;
  --green: #178143;
  --green-dark: #0d4f2c;
  --green-soft: #e8f5e8;
  --warm: #f8f7f1;
  --white: #ffffff;
  --line: #dce4dd;
  --amber: #f0b84b;
  --red: #d94b3d;
  --shadow: 0 24px 60px rgba(18, 55, 34, 0.13);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  transform: translateY(-150%);
  border-radius: 6px;
  color: var(--white);
  background: var(--green-dark);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(16, 43, 32, 0.09);
  background: rgba(248, 247, 241, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner,
.legal-shell,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 750;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #33483d;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.text-link {
  text-underline-offset: 4px;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--green);
  text-decoration: underline;
}

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

.icon-button,
.language-button {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.icon-button {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  line-height: 1;
}

.language-button {
  padding: 0 12px;
  font-size: 13px;
  font-weight: 750;
}

.language-button:hover,
.icon-button:hover {
  border-color: var(--green);
}

.hero {
  min-height: calc(100vh - 68px);
  max-height: 860px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(232, 245, 232, 0.42)),
    var(--warm);
}

.hero .section-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: 64px;
  padding-block: 72px 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.5vw, 82px);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 780;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid var(--green-dark);
  border-radius: 7px;
  font-size: 15px;
  font-weight: 750;
}

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

.button-primary:hover {
  background: #073c20;
}

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

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.button-arrow {
  font-size: 19px;
  line-height: 1;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  min-height: 620px;
  position: relative;
  align-self: end;
}

.hero-icon {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 0;
  width: 96px;
  height: 96px;
  border: 6px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(15, 65, 37, 0.18);
}

.phone-shot {
  position: absolute;
  right: 0;
  bottom: -150px;
  width: min(430px, 88%);
  border: 9px solid var(--white);
  border-radius: 46px;
  box-shadow: var(--shadow);
}

.proof-strip {
  color: var(--white);
  background: var(--green-dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  min-height: 116px;
  padding: 27px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.proof-value {
  display: block;
  margin-bottom: 2px;
  font-size: 23px;
  font-weight: 800;
}

.proof-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section {
  padding-block: 104px;
}

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

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-heading p,
.feature-copy p,
.privacy-copy p,
.legal-lead,
.article p,
.article li {
  color: var(--muted);
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.feature-index {
  color: var(--green);
  font-weight: 800;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

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

.showcase figure {
  margin: 0;
}

.showcase img {
  width: 100%;
  border: 6px solid var(--white);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 18px 44px rgba(18, 55, 34, 0.12);
}

.showcase figure:nth-child(2) {
  transform: translateY(-26px);
}

.privacy-band {
  color: var(--white);
  background: #143c28;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
  align-items: start;
}

.privacy-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 30px;
}

.privacy-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 38px;
}

.privacy-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-copy h3 {
  color: var(--white);
}

.privacy-band .text-link {
  display: inline-block;
  margin-top: 28px;
  color: #bfecc8;
  font-weight: 700;
}

.cta-band {
  text-align: center;
  background: var(--green-soft);
}

.cta-band p {
  max-width: 570px;
  margin: 0 auto 26px;
  color: var(--muted);
}

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

.footer-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-copy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

.legal-hero {
  padding: 82px 0 58px;
  border-bottom: 1px solid var(--line);
  background: var(--green-soft);
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(40px, 6vw, 68px);
}

.legal-lead {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
}

.article {
  width: min(760px, 100%);
  padding-block: 66px 110px;
}

.article h2 {
  margin: 44px 0 12px;
  font-size: 25px;
}

.article h2:first-child {
  margin-top: 0;
}

.article p,
.article li {
  line-height: 1.75;
}

.article ul {
  padding-left: 20px;
}

.article a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-block {
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
}

.contact-block p {
  margin: 0;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
}

.faq details p {
  margin: 12px 0 0;
}

[data-lang-panel][hidden] {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 12px;
  }

  .icon-button {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    max-height: none;
  }

  .hero .section-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 64px;
  }

  .hero-visual {
    width: min(520px, 100%);
    height: 620px;
    min-height: 0;
    margin-inline: auto;
    overflow: hidden;
  }

  .hero-icon {
    left: 3%;
  }

  .phone-shot {
    position: relative;
    right: auto;
    bottom: auto;
    width: 78%;
    margin-left: auto;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .proof-item {
    padding-inline: 20px;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .section-inner,
  .legal-shell,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .brand span {
    font-size: 15px;
  }

  .section {
    padding-block: 72px;
  }

  h1 {
    font-size: 44px;
  }

  .hero .section-inner {
    padding-top: 52px;
  }

  .hero-visual {
    height: 520px;
  }

  .hero-icon {
    width: 76px;
    height: 76px;
    border-width: 4px;
    border-radius: 19px;
  }

  .phone-shot {
    border-width: 6px;
    border-radius: 32px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .proof-item {
    min-height: auto;
    padding-block: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .feature-row {
    grid-template-columns: 44px 1fr;
    gap: 10px 16px;
  }

  .feature-row p {
    grid-column: 2;
  }

  .showcase {
    grid-template-columns: repeat(3, 72%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 26px 14vw 20px 0;
  }

  .showcase figure,
  .showcase figure:nth-child(2) {
    transform: none;
    scroll-snap-align: start;
  }

  .privacy-copy {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 16px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
