:root {
  --bg: #070908;
  --surface: #101412;
  --surface-2: #161c19;
  --ink: #eef3ee;
  --muted: #9aa59c;
  --line: rgba(255, 255, 255, 0.08);
  --lime: #d1ff4d;
  --lime-2: #b6e62e;
  --lime-dim: rgba(209, 255, 77, 0.12);
  --display: "Syne", sans-serif;
  --sans: "Onest", "Segoe UI", sans-serif;
  --wrap: 1180px;
  --header: 72px;
  --r: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(209, 255, 77, 0.08), transparent 55%),
    radial-gradient(700px 480px at 100% 8%, rgba(80, 140, 255, 0.08), transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; border-radius: 0; }
ul { list-style: none; }
::selection { background: var(--lime); color: #111; }

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  background: var(--lime);
  color: #111;
  padding: 8px 12px;
  border-radius: 10px;
}
.skip-link:focus { top: 12px; }

h1, h2, h3, .brand-name {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 3.1rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.03em; }

.lede { color: var(--muted); max-width: 40rem; font-size: 1.05rem; }

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}
.kicker::before,
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}
.updated { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--lime);
  color: #111;
  box-shadow: 0 10px 30px rgba(209, 255, 77, 0.22);
}
.btn-primary:hover { background: var(--lime-2); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  height: var(--header);
}
.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px;
  background: rgba(10, 14, 12, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.site-header.scrolled .wrap {
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 34px; height: 34px; border-radius: 10px; }
.brand-name {
  font-size: 1.2rem;
  line-height: 1;
}
.brand-name small {
  display: block;
  margin-top: 3px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-weight: 600; font-size: 0.92rem; color: var(--muted); }
.nav a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span { width: 16px; height: 1.5px; background: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 110px);
  align-items: stretch;
  gap: 20px;
  width: min(var(--wrap), calc(100% - 40px));
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
  padding: 0;
  border: 0;
}
.hero-copy {
  padding: 48px 12px 36px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero .lede { margin: 22px 0 28px; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  border: 1px solid var(--line);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.72);
}
.hero-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 9, 8, 0.7);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(var(--wrap), calc(100% - 40px));
  margin: 22px auto 0;
  position: relative;
  z-index: 1;
  border: 0;
}
.stat {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--lime);
}
.stat .k { margin-top: 6px; color: var(--muted); font-size: 0.9rem; }

.clients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 22px 0 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}
.clients span:first-child { color: var(--lime); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.7rem; font-weight: 800; }

section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.hero { border-bottom: 0; }
.section-head { max-width: 38rem; margin-bottom: 36px; }
.section-head h2 { margin: 10px 0 12px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-copy p { margin-bottom: 14px; color: var(--muted); }
.expertise {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.expertise li {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.photo-col { display: grid; gap: 14px; }
.frame {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.frame img { width: 100%; height: 240px; object-fit: cover; filter: saturate(0.85); }
.frame figcaption {
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.principles { display: grid; gap: 10px; }
.principle {
  padding: 18px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.principle .n { color: var(--lime); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; }
.principle p { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

.svc-list { display: grid; gap: 10px; }
.svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.svc-head {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 18px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.svc-head .n { font-family: var(--display); font-size: 1.2rem; color: var(--lime); }
.svc-head h3 { font-size: 1.2rem; }
.svc-head .chev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--lime);
}
.svc.open { border-color: rgba(209, 255, 77, 0.28); box-shadow: 0 0 0 1px rgba(209, 255, 77, 0.08); }
.svc-body { display: none; padding: 0 18px 20px 86px; }
.svc.open .svc-body { display: block; }
.svc-body p { color: var(--muted); margin-bottom: 14px; }
.svc-body ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.svc-body li { font-size: 0.92rem; color: var(--ink); }

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.more-item {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  min-height: 140px;
}
.more-item p { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px 12px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.why-row .n { font-family: var(--display); color: var(--lime); font-size: 1.2rem; }
.why-row h3 { grid-column: 2; }
.why-row p { grid-column: 2; color: var(--muted); font-size: 0.92rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  min-height: 200px;
}
.step .n { font-family: var(--display); font-size: 2rem; color: var(--lime); line-height: 1; margin-bottom: 16px; }
.step p { color: var(--muted); margin-top: 8px; font-size: 0.92rem; }

.cover-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; }
.countries { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.countries li {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 600;
}
.notes { display: grid; gap: 8px; }
.note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.note span { color: var(--muted); font-size: 0.86rem; }
.note strong { display: block; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pills li {
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.9rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.partner-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.partner-card p { color: var(--muted); margin-top: 8px; font-size: 0.94rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 8px;
  padding: 0 18px;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 0;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item button::after { content: "+"; color: var(--lime); }
.faq-item.open button::after { content: "–"; }
.faq-a { display: none; padding: 0 0 16px; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.chips li {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-meta { color: var(--muted); }
.contact-meta a { color: var(--lime); font-weight: 700; }

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0b0e0c;
  color: var(--ink);
  padding: 12px 12px;
  outline: none;
  border-radius: 12px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-dim);
}
.field textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: var(--lime); }
.form-status.err { color: #ff8b7a; }

.site-footer {
  background: #050605;
  color: var(--muted);
  padding: 56px 0 28px;
  position: relative;
  z-index: 1;
}
.site-footer .brand-name { color: var(--ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.footer-col a, .footer-col p { display: block; margin-bottom: 8px; font-size: 0.94rem; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  max-width: 860px;
  margin: 0 auto;
  background: #101412;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(16px);
}
.cookie-bar.show { display: flex; }
.cookie-bar a { color: var(--lime); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

.legal { padding: 48px 0 96px; }
.legal-card {
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
}
.legal h2 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 18px; list-style: disc; }
.legal a { color: var(--lime); text-decoration: underline; }
.legal-nav { display: flex; align-items: center; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; }

@media (max-width: 980px) {
  .hero, .about-grid, .cover-grid, .contact-grid, .footer-grid, .why-list, .steps, .svc-body ul, .expertise, .more-grid, .partner-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { padding: 28px 4px; }
  .hero-photo { min-height: 280px; }
  .svc-body { padding-left: 18px; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(var(--header) + 18px);
    left: 8px;
    right: 8px;
    background: #101412;
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 8px;
  }
  .nav.open { display: flex; }
  .site-header { top: 8px; }
}

@media (max-width: 640px) {
  .stat-bar, .field-row { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .brand-name small { display: none; }
  .site-header .wrap { border-radius: 18px; }
}
