:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --brand: #0284c7;
  --brand-dark: #0f172a;
  --accent: #22c55e;
  --accent-soft: #dcfce7;
  --warning: #f59e0b;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  --max: 1180px;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
}

* { 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;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.section-pad { padding: 96px 0; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--brand-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 230px; height: auto; }
.header-tools { display: flex; align-items: center; gap: 14px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}
.site-nav a:hover, .site-nav a:focus { background: var(--bg-soft); color: var(--ink); }
.site-nav .nav-cta { background: var(--brand-dark); color: #fff; padding-inline: 18px; }
.site-nav .nav-cta:hover { background: var(--brand); color: #fff; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.lang-btn {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
}
.lang-btn:hover, .lang-btn:focus { background: var(--bg-soft); color: var(--ink); }
.lang-btn.is-active { background: var(--brand-dark); color: #fff; }

.hero { overflow: hidden; background: radial-gradient(circle at top left, #e0f2fe 0%, transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr); gap: 56px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 13px;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.03em; }
h1 { font-size: clamp(43px, 6vw, 76px); }
h2 { font-size: clamp(31px, 4vw, 52px); }
h3 { font-size: 22px; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); margin: 24px 0 32px; max-width: 680px; }
.hero-actions, .form-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { background: var(--brand-dark); color: #fff; box-shadow: 0 14px 26px rgba(15, 23, 42, .22); }
.btn-primary:hover { background: var(--brand); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { box-shadow: 0 12px 24px rgba(15, 23, 42, .08); }
.btn-light { background: #fff; color: var(--brand-dark); }
.trust-list { display: grid; gap: 10px; padding: 0; margin: 30px 0 0; list-style: none; color: var(--muted); font-weight: 700; }
.trust-list span { color: var(--accent); margin-right: 8px; }
.hero-visual img { filter: drop-shadow(0 30px 50px rgba(15, 23, 42, .14)); border-radius: 44px; }

.strip { background: var(--brand-dark); color: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.strip-grid div { padding: 24px; display: grid; gap: 2px; }
.strip-grid strong { font-size: 18px; }
.strip-grid span { color: #cbd5e1; }

.section-head { display: grid; gap: 12px; max-width: 760px; margin-bottom: 38px; }
.section-head p:not(.eyebrow), .muted { color: var(--muted); font-size: 18px; margin: 0; }
.cards { display: grid; gap: 20px; }
.services { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}
.service-card { display: grid; gap: 16px; }
.service-card p { margin: 0; color: var(--muted); }
.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: #e0f2fe;
}
.icon svg { width: 32px; height: 32px; }
.highlight-card { background: linear-gradient(135deg, #0f172a, #075985); color: #fff; border: 0; }
.highlight-card p { color: #dbeafe; }
.highlight-card .icon { background: rgba(255,255,255,.14); color: var(--accent); }

.soft-bg { background: var(--bg-soft); }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.text-link { display: inline-flex; margin-top: 24px; color: var(--brand); font-weight: 900; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}
.steps span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: #15803d;
  font-weight: 900;
}
.steps p { margin: 4px 0 0; color: var(--muted); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.about-card { border-radius: 34px; padding: 38px; background: #0f172a; color: #fff; min-height: 100%; }
.about-card p:last-child { color: #cbd5e1; font-size: 18px; }
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefits div { border: 1px solid var(--line); border-radius: 24px; padding: 24px; display: grid; gap: 8px; background: #fff; }
.benefits strong { font-size: 19px; }
.benefits span { color: var(--muted); }

.cta-band { background: linear-gradient(135deg, #0284c7, #16a34a); color: #fff; padding: 54px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-inner p { margin: 10px 0 0; color: #e0f2fe; }

.contact-section { background: linear-gradient(180deg, #fff, #f8fafc); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.contact-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.contact-pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-weight: 800; }
.small-note { color: var(--muted); font-size: 14px; }
.small-note code { background: #e2e8f0; padding: 2px 6px; border-radius: 7px; }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 30px;
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 8px; }
.two-cols { grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { font-weight: 800; font-size: 14px; color: #334155; }
input, textarea, select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
textarea { resize: vertical; min-height: 136px; }
input:focus, textarea:focus, select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14, 165, 233, .14); }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--muted); }
.consent-row input { width: 18px; height: 18px; margin-top: 3px; }
.form-status { margin: 0; color: var(--brand); font-weight: 800; min-height: 24px; }
.generated-links {
  border: 1px dashed #94a3b8;
  border-radius: 18px;
  padding: 14px;
  background: #f8fafc;
}
.generated-links p { margin: 0 0 10px; font-weight: 800; }
.generated-links a { display: inline-flex; margin: 6px 10px 0 0; color: var(--brand); font-weight: 900; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; background: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-weight: 700; }

@media (max-width: 900px) {
  .section-pad { padding: 72px 0; }
  .hero-grid, .split, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services, .benefits { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .menu-toggle { display: block; order: 3; }
  .header-tools { gap: 10px; }
  .language-switcher { order: 1; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    z-index: 50;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 16px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { height: 72px; gap: 10px; }
  .brand img { width: 168px; }
  .header-tools { gap: 8px; }
  .language-switcher { padding: 3px; }
  .lang-btn { min-width: 33px; min-height: 30px; font-size: 12px; }
  .services, .benefits, .two-cols { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; border-radius: 24px; }
  .hero-actions .btn, .form-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; }
}
