:root {
  --bg: #f6f8f5;
  --surface: #ffffff;
  --surface-2: #eef4f0;
  --ink: #12211b;
  --muted: #607068;
  --line: #dfe7e1;
  --brand: #0e6b4e;
  --brand-2: #dff4e9;
  --brand-dark: #084d38;
  --accent: #d7f36b;
  --shadow: 0 18px 60px rgba(18, 33, 27, .10);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { 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(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 99px; }
.kicker { font-size: 1.02rem; color: var(--muted); max-width: 680px; }

h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin: 0; }
h1 { font-size: clamp(3.2rem, 7.5vw, 6.7rem); font-weight: 780; }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.25rem); font-weight: 760; }
h3 { font-size: 1.45rem; font-weight: 720; letter-spacing: -.02em; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 33, 27, .06);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: .08em; }
.brand img { width: 34px; height: 34px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { color: #394b43; font-size: .94rem; font-weight: 650; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.lang-btn:hover { color: var(--brand); }
.lang-btn.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 3px 10px rgba(18,33,27,.12);
}
.standalone-lang {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 20;
}

.menu-btn { display: none; border: 1px solid var(--line); background: var(--surface); width: 44px; height: 44px; border-radius: 12px; cursor: pointer; }
.mobile-nav { display: none; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(14, 107, 78, .18); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-light { background: var(--surface); border-color: var(--line); }
.btn-light:hover { border-color: #c8d4cc; }
.btn-dark { background: var(--ink); color: #fff; }

.hero { padding: 50px 0 76px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.hero-copy { padding: 28px 0; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { max-width: 740px; }
.hero-copy h1 .soft { color: #829188; }
.hero-copy .lead { margin-top: 28px; font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--muted); max-width: 640px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .88rem; }
.hero-note span { display: inline-flex; gap: 7px; align-items: center; }
.hero-note span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(215, 243, 107, .20); }
.hero-visual { position: relative; min-height: 590px; }
.hero-photo { position: absolute; inset: 0; border-radius: 44px; object-fit: cover; width: 100%; height: 100%; box-shadow: var(--shadow); }
.hero-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: min(310px, 76%);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.75);
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(18,33,27,.16);
}
.hero-card strong { display: block; font-size: 1.12rem; margin-bottom: 5px; }
.hero-card p { color: var(--muted); font-size: .9rem; }
.hero-badge { position: absolute; right: -14px; top: 32px; width: 120px; height: 120px; background: var(--accent); border-radius: 50%; display: grid; place-items: center; text-align: center; font-weight: 900; line-height: 1.04; transform: rotate(8deg); box-shadow: 0 12px 30px rgba(107,130,20,.18); }

.logo-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.55); }
.logo-strip-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.logo-strip p { color: var(--muted); font-size: .92rem; }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: .84rem; font-weight: 700; color: #405149; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-head h2 { max-width: 720px; }
.section-head .kicker { max-width: 480px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; }
.card-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--brand-2); color: var(--brand); display: grid; place-items: center; margin-bottom: 34px; }
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); }

.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.media-panel { min-height: 520px; border-radius: var(--radius-lg); overflow: hidden; position: relative; background: #dfe7e1; }
.media-panel img { width: 100%; height: 100%; object-fit: cover; }
.content-panel { border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 66px); background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.content-panel .eyebrow { color: #90dfc1; }
.content-panel .eyebrow::before { background: #90dfc1; }
.content-panel h2 { margin: 18px 0 22px; }
.content-panel p { color: #bac7c1; max-width: 580px; }
.content-panel .btn { margin-top: 30px; align-self: flex-start; background: #fff; color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: item; }
.step { position: relative; padding: 26px 26px 28px; border-top: 1px solid #bcc9c1; }
.step::before { counter-increment: item; content: "0" counter(item); display: block; color: var(--brand); font-weight: 850; margin-bottom: 52px; font-size: .9rem; letter-spacing: .08em; }
.step p { color: var(--muted); margin-top: 11px; }

.cta-band { background: var(--brand); color: #fff; border-radius: 36px; padding: clamp(34px, 6vw, 68px); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: url('../img/grid.svg'); opacity: .55; pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: #d9f6ea; }
.cta-band .eyebrow::before { background: #d9f6ea; }
.cta-band h2 { margin: 16px 0 20px; max-width: 790px; }
.cta-band p { color: #d6e9e1; max-width: 640px; }
.cta-band .btn { margin-top: 28px; background: #fff; color: var(--brand-dark); }

.page-hero { padding: 70px 0 54px; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: end; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.9rem); }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 580px; padding-bottom: 8px; }

.feature-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.feature-image { border-radius: 30px; overflow: hidden; min-height: 560px; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.stack { display: grid; gap: 18px; }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 28px; min-height: 168px; display: flex; flex-direction: column; justify-content: space-between; }
.stat-card .number { font-size: 2.6rem; line-height: 1; font-weight: 820; letter-spacing: -.05em; color: var(--brand); }
.stat-card p { color: var(--muted); max-width: 320px; }

.benefit-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.benefit-row { display: grid; grid-template-columns: 64px 1fr 1.2fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.benefit-row .index { font-weight: 850; color: var(--brand); }
.benefit-row p { color: var(--muted); }

.requirements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.requirement { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 24px; display: flex; gap: 18px; align-items: start; }
.requirement .check { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: var(--brand-2); color: var(--brand); display: grid; place-items: center; font-weight: 900; }
.requirement p { color: var(--muted); margin-top: 7px; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn { width: 100%; border: 0; background: transparent; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; font-weight: 760; cursor: pointer; color: var(--ink); }
.faq-answer { display: none; color: var(--muted); padding: 0 0 24px; max-width: 760px; }
.faq-item.open .faq-answer { display: block; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: 0 0 26px; transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.apply-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; align-items: start; }
.apply-aside { position: sticky; top: 106px; background: var(--ink); color: #fff; border-radius: 30px; padding: 34px; overflow: hidden; }
.apply-aside::after { content: ""; position: absolute; inset: auto -50px -50px auto; width: 180px; height: 180px; background: var(--accent); border-radius: 50%; opacity: .92; }
.apply-aside > * { position: relative; z-index: 1; }
.apply-aside p { color: #bec9c4; margin-top: 14px; }
.apply-meta { margin-top: 34px; display: grid; gap: 14px; }
.apply-meta div { display: flex; gap: 12px; align-items: start; }
.apply-meta b { display: block; font-size: .92rem; }
.apply-meta span { color: #aebbb4; font-size: .84rem; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 30px; padding: clamp(24px, 4vw, 44px); box-shadow: 0 10px 40px rgba(18,33,27,.05); }
.form-intro { margin-bottom: 30px; }
.form-intro h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.form-intro p { color: var(--muted); margin-top: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .9rem; font-weight: 730; }
input, textarea {
  width: 100%;
  border: 1px solid #d7e0da;
  background: #fbfcfb;
  color: var(--ink);
  border-radius: 14px;
  min-height: 52px;
  padding: 12px 14px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14,107,78,.08); background: #fff; }
input[type="file"] { padding: 10px; }
.field small { color: var(--muted); font-size: .78rem; }
.consent { margin: 22px 0; display: flex; gap: 10px; align-items: start; color: var(--muted); font-size: .86rem; }
.consent input { width: 18px; height: 18px; min-height: 0; margin-top: 2px; }
.submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-status { font-size: .9rem; color: var(--muted); }
.form-status.success { color: var(--brand); font-weight: 700; }
.form-status.error { color: #a63636; font-weight: 700; }

.privacy-copy { max-width: 780px; }
.privacy-copy h2 { font-size: 2rem; margin-top: 38px; }
.privacy-copy p, .privacy-copy li { color: var(--muted); }
.privacy-copy ul { padding-left: 20px; }

.site-footer { padding: 68px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 42px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.footer-brand p { color: var(--muted); max-width: 390px; margin-top: 14px; }
.footer-col h4 { margin: 0 0 14px; font-size: .9rem; }
.footer-col a { display: block; color: var(--muted); padding: 6px 0; font-size: .9rem; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: var(--muted); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav, .nav-actions .btn-light { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .mobile-nav { position: fixed; left: 20px; right: 20px; top: 82px; z-index: 70; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 20px; padding: 12px; box-shadow: var(--shadow); }
  .mobile-nav.open { display: grid; }
  .mobile-nav a { padding: 13px 14px; border-radius: 12px; font-weight: 700; }
  .mobile-nav a:hover { background: var(--surface-2); color: var(--brand); }
  .hero-grid, .page-hero-grid, .media-split, .feature-grid, .apply-shell { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .hero-card { left: 18px; }
  .hero-badge { right: 18px; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .step::before { margin-bottom: 24px; }
  .section-head { align-items: start; flex-direction: column; }
  .feature-image { min-height: 440px; }
  .apply-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .lang-switch { flex: 0 0 auto; }
  .lang-btn { min-width: 34px; height: 32px; padding: 0 8px; }
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 30px; }
  .hero-grid { gap: 30px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero-visual { min-height: 430px; }
  .hero-photo { border-radius: 28px; }
  .hero-badge { width: 96px; height: 96px; font-size: .82rem; }
  .hero-card { width: calc(100% - 36px); bottom: 18px; }
  .requirements-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .benefit-row { grid-template-columns: 48px 1fr; }
  .benefit-row p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .nav-actions .btn-primary { display: none; }
  .page-hero { padding-top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
