:root {
  --bg: #05080b;
  --bg-soft: #0a0f14;
  --panel: #0d1318;
  --text: #f4f5f2;
  --muted: rgba(244,245,242,.84);
  --line: rgba(255,255,255,.1);
  --accent: #8ec63f;
  --accent-strong: #9fd54c;
  --dark: #081018;
  --white-button: #f4f4f0;
  --radius: 26px;
  --radius-lg: 34px;
  --shadow: 0 22px 50px rgba(0,0,0,.22);
  --max: 1280px;
  --header-h: 108px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text); background:
  radial-gradient(circle at top right, rgba(142,198,63,.12), transparent 25%),
  linear-gradient(180deg, #020406 0%, #04080c 100%);
  line-height: 1.55;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a, button, input, textarea, select { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
::selection { background: rgba(142,198,63,.24); color: var(--text); }
.skip-link {
  position: absolute; left: 16px; top: -48px; background: var(--text); color: var(--dark); padding: 10px 16px; border-radius: 999px; z-index: 999;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky; top: 0; z-index: 100; backdrop-filter: blur(16px); background: rgba(6,9,12,.82); border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-wrap {
  min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.brand img { width: 248px; max-width: 28vw; }
.site-nav { display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; }
.site-nav a { color: var(--muted); font-size: .96rem; white-space: nowrap; position: relative; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
.site-nav a:not(.button):not(.lang-link)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 1px; border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(142,198,63,.9), transparent); opacity: 0; transform: scaleX(.72); transform-origin: center; transition: opacity .22s ease, transform .22s ease;
}
.site-nav a:hover, .site-nav a:focus { color: var(--text); }
.site-nav a:not(.button):not(.lang-link):hover::after,
.site-nav a:not(.button):not(.lang-link):focus::after,
.site-nav a.is-active:not(.button):not(.lang-link)::after { opacity: 1; transform: scaleX(1); }
.site-nav a.is-active:not(.button):not(.lang-link) { color: var(--text); }
.lang-link {
  border: 1px solid var(--line); width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; flex: 0 0 auto;
}
.nav-toggle { display: none; background: none; border: 0; padding: 0; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 58px; padding: 0 26px; border-radius: 999px; border: none; cursor: pointer;
  font-weight: 700; font-size: 1rem; letter-spacing: -.015em;
  transition: transform .2s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
  background: var(--accent); color: var(--dark); box-shadow: 0 18px 36px rgba(0,0,0,.22), inset 0 -1px 0 rgba(0,0,0,.08);
}
.button:hover, .button:focus { transform: translateY(-2px); background: var(--accent-strong); box-shadow: 0 22px 42px rgba(0,0,0,.28), inset 0 -1px 0 rgba(0,0,0,.08); }
.button:active { transform: translateY(0); }
.button-light {
  background: rgba(244,244,240,.96); color: var(--dark); box-shadow: 0 14px 30px rgba(0,0,0,.14); border: 1px solid rgba(255,255,255,.4);
}
.button-light:hover, .button-light:focus { background: #ffffff; box-shadow: 0 18px 34px rgba(0,0,0,.18); }
.button-small { min-height: 50px; padding: 0 22px; }
.nav-cta { min-width: 176px; }
.kicker, .eyebrow {
  display: inline-block; color: var(--accent); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
}
main section { padding: 28px 0; }
.section-tight { padding: 26px 0; }
.anchor-section { scroll-margin-top: calc(var(--header-h) + 16px); }
.hero-intro { padding: 34px 0 12px; }
.hero-intro-inner { display: block; }
.hero-heading { max-width: 1180px; }
.hero-heading h1 {
  margin: 14px 0 20px; font-size: clamp(2.2rem, 3.55vw, 3.55rem); line-height: .98; letter-spacing: -.05em; max-width: 18.5ch;
}
.hero-heading h1 .line { display: block; }
.lead { max-width: 980px; color: var(--muted); font-size: clamp(1.05rem, 1.45vw, 1.18rem); line-height: 1.68; }
.hero-stage-wrap { position: relative; }
.hero-stage-image img { width: 100%; height: clamp(540px, 62vw, 760px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero-stage-overlay {
  position: absolute; left: 28px; bottom: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 760px;
}
.hero-actions {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: min(100%, 760px);
}
.hero-actions .button { width: 100%; }
.hero-note {
  background: linear-gradient(180deg, rgba(10,14,18,.8), rgba(8,12,16,.9)); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 24px 26px; box-shadow: 0 18px 44px rgba(0,0,0,.28); max-width: 720px; backdrop-filter: blur(10px);
}
.hero-note p { margin: 10px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.section-header { margin-bottom: 18px; }
.section-header.narrow { max-width: 920px; }
.section-header.slim { max-width: 640px; }
.section-header h2 {
  margin: 10px 0 10px; font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.04; letter-spacing: -.038em; text-wrap: balance;
}
.section-header p { margin: 0; color: var(--muted); font-size: 1.04rem; line-height: 1.64; }
.cards, .contact-grid, .aligned-grid, .form-row, .footer-grid { display: grid; gap: 22px; }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 10px; font-size: 1.28rem; line-height: 1.15; letter-spacing: -.02em; }
.card p { margin: 0; color: var(--muted); line-height: 1.62; }
.aligned-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; gap: 28px; }
.grid-balanced > * { min-width: 0; }
.media-equal, .portrait-equal { min-height: 100%; display: flex; }
.media-equal img, .portrait-equal img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.media-match-text { min-height: 520px; }
.media-equal img { aspect-ratio: 1 / 1; }
.portrait-equal img { aspect-ratio: .96 / 1.02; object-position: center 14%; }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.accent-list { display: grid; gap: 14px; margin-top: 22px; }
.accent-list div { padding: 15px 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02); line-height: 1.5; }
.section-cta { margin: 20px 0 0; }
.contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
.contact-balanced > * { min-width: 0; }
.form-panel, .contact-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.form-panel { height: 100%; }
.contact-panel p { margin: 0 0 18px; color: var(--muted); }
.contact-panel strong { color: var(--text); }
label { display: block; margin-bottom: 8px; font-weight: 600; }
input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--text); font: inherit;
}
.form-panel-premium {
  padding: 32px;
}

.form-intro {
  margin-bottom: 24px;
}

.form-intro h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1;
}

.premium-form .form-block {
  margin-bottom: 18px;
}

.premium-form .form-block label,
.premium-form .form-field label {
  margin-bottom: 9px;
}

.premium-form select,
.premium-form input,
.premium-form textarea {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.premium-form select:hover,
.premium-form input:hover,
.premium-form textarea:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.18);
}

.premium-form textarea {
  min-height: 150px;
}

.form-footer {
  margin-top: 8px;
}

.form-footer .button {
  width: 100%;
}

.microcopy {
  margin: 12px 0 0;
  color: rgba(244,245,242,.62);
  font-size: .9rem;
  line-height: 1.5;
}

.form-field-empty {
  display: block;
}

@media (max-width: 980px) {
  .form-panel-premium {
    padding: 26px;
  }
}

@media (max-width: 640px) {
  .form-intro h3 {
    font-size: clamp(1.25rem, 6.2vw, 1.6rem);
  }

  .trust-points {
    gap: 8px;
  }

  .trust-points span {
    width: 100%;
    justify-content: center;
  }

  .form-field-empty {
    display: none;
  }

  .form-panel-premium {
    padding: 22px;
  }
}
select option { color: #111; }
textarea { min-height: 140px; resize: vertical; }
.form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { margin-bottom: 16px; }
.notice, .success { padding: 16px 18px; border-radius: 16px; margin-bottom: 18px; }
.notice { background: rgba(211,95,95,.12); border: 1px solid rgba(211,95,95,.34); }
.success { background: rgba(132,189,68,.12); border: 1px solid rgba(132,189,68,.34); }
.hp-field { position: absolute; left: -9999px; }
.site-footer { border-top: 1px solid var(--line); margin-top: 20px; padding: 36px 0 0; }
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
.footer-logo { width: 240px; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: var(--muted); }
.footer-grid h3 { margin-top: 0; }
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--line); margin-top: 28px; color: var(--muted); }
.cookie-note {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; max-width: 400px; background: rgba(14,17,20,.96); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 18px;
}
.cookie-note p { margin: 8px 0 12px; color: var(--muted); font-size: .95rem; }

.page-hero { padding: 34px 0 18px; }
.page-hero .section-header { max-width: 980px; }
.page-hero h1 {
  margin: 14px 0 12px; font-size: clamp(2.25rem, 3.25vw, 3.6rem); line-height: 1; letter-spacing: -.045em;
}
.page-hero p { margin: 0; max-width: 860px; color: var(--muted); font-size: 1.06rem; line-height: 1.68; }
.page-section { padding: 18px 0 30px; }
.legal-shell {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: 30px; padding: 30px; box-shadow: var(--shadow);
}
.legal-content { max-width: 860px; }
.legal-content h2, .legal-content h3 {
  margin: 28px 0 10px; font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.18; letter-spacing: -.025em;
}
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.72; }
.legal-content ul { margin: 10px 0 0; padding-left: 20px; }
.legal-content a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(142,198,63,.75); text-underline-offset: 3px; }
.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(142,198,63,.95); outline-offset: 3px;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
@media (max-width: 1180px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .92rem; }
  .brand img { width: 220px; max-width: 25vw; }
  .nav-cta { min-width: 160px; }
}
@media (max-width: 1100px) {
  .aligned-grid, .contact-grid, .cards, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero-stage-image img { height: 520px; }
  .media-match-text { min-height: auto; }
  .media-equal img, .portrait-equal img { aspect-ratio: 4 / 3; }
  .hero-stage-overlay { position: static; margin-top: 18px; max-width: none; }
  .hero-actions { grid-template-columns: 1fr; width: 100%; }
}
@media (max-width: 980px) {
  :root { --header-h: 88px; }
  .site-nav {
    position: absolute; left: 14px; right: 14px; top: calc(var(--header-h) - 10px); width: auto; background: rgba(10,12,14,.985); border: 1px solid var(--line); border-radius: 22px; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 10px; box-shadow: 0 24px 50px rgba(0,0,0,.34);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.button):not(.lang-link) { padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.02); }
  .site-nav .lang-link { width: 100%; height: 50px; border-radius: 16px; }
  .site-nav .nav-cta { width: 100%; min-width: 0; }
  .nav-toggle { display: inline-block; }
  .hero-heading h1 { max-width: 16.5ch; font-size: clamp(2rem, 5.2vw, 3rem); }
  .cookie-note { left: 16px; right: 16px; max-width: none; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 76px; gap: 14px; }
  .brand img { width: 176px; max-width: 54vw; }
  .hero-intro { padding-top: 18px; }
  .hero-heading h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); max-width: 15ch; }
  .lead { font-size: 1rem; line-height: 1.58; }
  .hero-actions { grid-template-columns: 1fr; width: 100%; }
  .button, .button-light { width: 100%; }
  .hero-stage-image img { height: 360px; }
  .hero-stage-overlay { left: 0; bottom: 0; gap: 14px; }
  .hero-note { padding: 20px 20px 22px; }
  main section, .section-tight { padding: 24px 0; }
  .section-header h2 { font-size: clamp(1.9rem, 10vw, 2.7rem); }
  .page-hero { padding-top: 22px; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.9rem); }
  .legal-shell { padding: 22px; border-radius: 24px; }
}
