:root {
  --bg: #0b1220;
  --bg-soft: #111a2b;
  --card: #ffffff;
  --text: #111827;
  --muted: #5b6472;
  --line: #d8deea;
  --brand: #0f2d52;
  --brand-2: #9b7a47;
  --white: #ffffff;
  --max: 1160px;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(11, 18, 32, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7f8fb;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  background: var(--bg);
  color: rgba(255,255,255,0.86);
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 222, 234, 0.9);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand-wrap { display: flex; flex-direction: column; gap: 2px; }
.brand {
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--brand);
}
.brand-sub {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  color: #1d2430;
  font-weight: 600;
  font-size: 15px;
}
.nav a:hover { color: var(--brand); }

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn,
.btn:visited,
.nav a.btn,
.hero-actions a.btn,
.cta-box a.btn {
  color: var(--white) !important;
}
.btn-outline {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand);
}
.btn-outline:visited,
.nav a.btn-outline,
.hero-actions a.btn-outline,
.cta-box a.btn-outline {
  color: var(--brand) !important;
}

.hero {
  background:
    linear-gradient(135deg, rgba(15,45,82,0.94), rgba(11,18,32,0.92)),
    radial-gradient(circle at top right, rgba(155,122,71,0.25), transparent 30%);
  color: var(--white);
  padding: 92px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
}
.hero h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.86);
  max-width: 760px;
  margin: 0 0 26px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 28px;
}
.hero-card h3 { margin-top: 0; font-size: 22px; }
.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.88);
}

.section {
  padding: 76px 0;
}
.section.alt { background: #eef2f8; }
.section-dark {
  background: var(--bg);
  color: var(--white);
}
.section-dark .section-title,
.section-dark .section-intro,
.section-dark .card h3,
.section-dark .card,
.section-dark .metric strong,
.section-dark .metric span { color: var(--white); }
.section-dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 30px;
}
.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}
.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
}
.card p:last-child,
.card ul:last-child { margin-bottom: 0; }
.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.kicker {
  color: var(--brand-2);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metric {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.metric strong {
  display: block;
  font-size: 30px;
  margin-bottom: 4px;
}
.metric span {
  color: rgba(255,255,255,0.82);
}

.cta-box {
  padding: 34px;
  background: linear-gradient(135deg, #102947, #16375c);
  color: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.cta-box h2 { margin-top: 0; font-size: 34px; }
.cta-box p { color: rgba(255,255,255,0.88); }

.page-hero {
  background: linear-gradient(135deg, rgba(15,45,82,0.96), rgba(20,55,92,0.92));
  color: var(--white);
  padding: 74px 0 62px;
}
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
}
.page-hero p {
  margin: 0;
  max-width: 820px;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.list-check li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-2);
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 12px;
}
.contact-row {
  display: grid;
  gap: 6px;
}
.label {
  color: var(--muted);
  font-size: 14px;
}
.value { font-weight: 700; }

.footer {
  background: var(--bg);
  color: rgba(255,255,255,0.78);
  padding: 28px 0;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer a { color: rgba(255,255,255,0.92); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 14px;
}
.lang-switch.light {
  background: #fff;
  border-color: var(--line);
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .grid-2,
  .section-head {
    grid-template-columns: 1fr;
  }
  .site-header .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero, .section, .page-hero { padding-top: 60px; }
  .card, .hero-card, .cta-box { padding: 22px; }
  .nav { gap: 14px; }
  .hero p, .page-hero p { font-size: 17px; }
}


.brand-line { display:flex; align-items:center; gap:14px; }
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(11,18,32,0.14);
}
.brand-text { display:flex; flex-direction:column; gap:2px; }
.contact-row .value a { color: var(--brand); font-weight: 600; }
.notice { color: var(--muted); font-size: 15px; }
.page-hero {
  background: linear-gradient(135deg, rgba(15,45,82,0.94), rgba(11,18,32,0.92));
  color: var(--white);
  padding: 72px 0 56px;
}
.page-hero h1 { margin: 12px 0 12px; font-size: clamp(34px, 5vw, 52px); }
.page-hero p { margin: 0; max-width: 860px; color: rgba(255,255,255,0.85); }
.lang-switch { display:flex; gap:10px; align-items:center; font-weight:700; color: rgba(255,255,255,0.85); }
.lang-switch a { color: var(--white); }
.contact-card .contact-row { padding: 10px 0; border-bottom: 1px solid var(--line); display:grid; grid-template-columns: 170px 1fr; gap:16px; }
.contact-card .contact-row:last-of-type { border-bottom: 0; }
.contact-card .label { color: var(--muted); font-weight: 600; }
.list-check { list-style: none; padding-left: 0 !important; }
.list-check li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.list-check li::before { content: "•"; position:absolute; left:0; top:0; color: var(--brand-2); font-weight:800; }
.footer a { color: inherit; text-decoration: underline; }
@media (max-width: 980px) {
  .site-header .container, .section-head, .hero-grid, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr !important; display:grid; }
  .site-header .container { display:flex; flex-direction:column; align-items:flex-start; }
  .nav { width:100%; gap:14px; }
  .nav .btn, .nav .btn-outline { min-height:44px; }
}
@media (max-width: 640px) {
  .container { width:min(calc(100% - 24px), var(--max)); }
  .topbar .container { font-size:13px; }
  .brand-logo { width: 44px; height: 44px; border-radius: 10px; }
  .brand { font-size: 18px; }
  .brand-sub { font-size: 12px; }
  .hero, .page-hero { padding-top: 56px; }
  .hero h1 { font-size: 34px; }
  .hero p, .page-hero p { font-size: 17px; }
  .btn, .btn-outline { width:100%; }
  .hero-actions { flex-direction:column; }
  .contact-card .contact-row { grid-template-columns: 1fr; gap:6px; }
}
