:root {
  --bg: #07112f;
  --bg-soft: #0c1945;
  --panel: rgba(255,255,255,0.08);
  --panel-strong: rgba(255,255,255,0.12);
  --text: #ecf2ff;
  --muted: #b9c6ee;
  --line: rgba(255,255,255,0.14);
  --blue: #33b6ff;
  --purple: #8f4cff;
  --green: #29d17d;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(3, 8, 30, 0.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(143,76,255,0.25), transparent 28%),
    radial-gradient(circle at top left, rgba(51,182,255,0.18), transparent 24%),
    linear-gradient(180deg, #060d27 0%, #081338 40%, #060d27 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.center { text-align: center; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
}
.section-heading h2, .hero h1, .cta-band h2 {
  margin: 0;
  line-height: 1.08;
}
.section-heading p, .hero-text { color: var(--muted); }
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(5, 10, 26, 0.7);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand img { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow); }
nav { display: flex; gap: 22px; color: var(--muted); }
nav a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  border: 1px solid var(--line); background: transparent; color: var(--white); border-radius: 999px;
  padding: 10px 14px; font: inherit; cursor: pointer;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 22px; font-weight: 700; transition: .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 16px; font-size: .94rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--green), #13a763);
  color: #041123; box-shadow: 0 10px 30px rgba(41, 209, 125, 0.35);
}
.btn-secondary {
  background: rgba(255,255,255,0.06); border-color: var(--line); color: var(--white);
}
.hero { padding: 86px 0 72px; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); max-width: 12ch; }
.hero-text { font-size: 1.08rem; max-width: 60ch; margin: 18px 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none;
}
.hero-points li {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted);
  background: rgba(255,255,255,0.04);
}
.hero-card, .info-box, .service-card, .step-card, .brochure-card, .cta-band-inner {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hero-card {
  border-radius: 28px; padding: 24px;
}
.hero-card img { border-radius: 22px; }
.hero-card-content { padding: 18px 6px 6px; }
.hero-card-content h3 { margin: 0 0 8px; font-size: 2rem; }
.mini-label { margin: 0 0 8px; color: var(--blue); font-weight: 700; }
.problem-grid, .cards.two-up, .brochures-grid, .footer-grid {
  display: grid; gap: 22px;
}
.problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-box {
  padding: 28px; border-radius: 24px;
}
.info-box h3 { margin-top: 0; }
.info-box.highlight { outline: 2px solid rgba(51,182,255,0.28); }
.cards.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card {
  padding: 28px; border-radius: 28px;
}
.service-card.featured { outline: 2px solid rgba(143,76,255,0.28); }
.badge {
  display: inline-block; margin-bottom: 16px; padding: 8px 12px; border-radius: 999px;
  background: rgba(51,182,255,0.12); color: var(--blue); font-weight: 700;
}
.service-card h3 { margin: 0 0 12px; font-size: 1.55rem; }
.service-card p { color: var(--muted); }
.service-card ul { padding-left: 18px; color: var(--text); }
.service-card li { margin: 10px 0; }
.service-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 22px;
}
.cards.four-up {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
.step-card {
  border-radius: 24px; padding: 24px;
}
.step-card span {
  width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple)); font-weight: 800; margin-bottom: 14px;
}
.step-card h3 { margin: 0 0 10px; }
.step-card p { margin: 0; color: var(--muted); }
.brochures-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.brochure-card {
  border-radius: 24px; overflow: hidden;
}
.brochure-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.brochure-card div { padding: 18px; }
.brochure-card h3 { margin: 0 0 8px; }
.brochure-card p { margin: 0 0 16px; color: var(--muted); }
.downloads { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band-inner {
  padding: 28px; border-radius: 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.site-footer {
  padding: 36px 0 44px; border-top: 1px solid var(--line); background: rgba(2, 5, 18, 0.52);
}
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
.site-footer h3, .site-footer h4 { margin-top: 0; }
.site-footer p, .site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--white); }
@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid, .cards.two-up, .cards.four-up, .brochures-grid, .footer-grid, .problem-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .hero { padding-top: 56px; }
  .section { padding: 72px 0; }
  .brand span { display: none; }
  .nav { min-height: 68px; }
  .hero h1 { max-width: none; }
}
