:root {
  --navy: #081b3c;
  --blue: #165cc8;
  --blue-dark: #0b3f93;
  --cyan: #3db8e6;
  --orange: #ff6b35;
  --ink: #112543;
  --muted: #5e6f86;
  --line: #dce6f4;
  --soft: #f4f8ff;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(10, 45, 94, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Tahoma, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  color: #cfdbef;
  background: var(--navy);
  font-size: .88rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 230, 244, .9);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; color: var(--navy); }
.brand img { width: 43px; height: 43px; border-radius: 12px; object-fit: cover; box-shadow: 0 6px 15px rgba(8,27,60,.16); }
.brand-text { display: grid; line-height: 1.1; }
.brand-name { font-size: 1.08rem; }
.brand-legal { color: var(--muted); font-size: .7rem; font-weight: 600; margin-top: 4px; }
.nav-links { display: flex; gap: 22px; align-items: center; color: #314866; font-size: .94rem; font-weight: 700; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language {
  cursor: pointer;
  border: 1px solid #cbd9eb;
  background: #fff;
  color: var(--blue-dark);
  border-radius: 9px;
  padding: 8px 11px;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  border: 0;
  color: var(--blue-dark);
  background: var(--soft);
  font-size: 1.45rem;
  line-height: 1;
  border-radius: 9px;
  padding: 7px 10px;
}

.hero {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 10%, rgba(61,184,230,.42), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,107,53,.25), transparent 30%),
    linear-gradient(132deg, #06152f 0%, #0c3b86 56%, #165cc8 100%);
}
.hero-inner {
  min-height: 520px;
  display: grid;
  align-items: center;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  padding: 78px 0;
}
.eyebrow {
  display: inline-flex;
  color: #d9efff;
  border: 1px solid rgba(217,239,255,.28);
  border-radius: 99px;
  background: rgba(255,255,255,.08);
  padding: 7px 13px;
  font-size: .86rem;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.15rem, 5vw, 4.15rem); line-height: 1.16; margin: 16px 0 18px; letter-spacing: -.035em; }
.hero p { max-width: 650px; color: #d5e4fa; font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 47px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.14); }
.button-primary { color: white; background: var(--orange); }
.button-secondary { color: #fff; background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.4); }
.identity-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  padding: 34px;
}
.identity-card::after {
  position: absolute; content: ""; width: 180px; height: 180px;
  left: -80px; bottom: -80px; border-radius: 50%; background: rgba(255,107,53,.25);
}
.identity-card img { position: relative; z-index: 1; width: 88px; height: 88px; border-radius: 20px; object-fit: cover; }
.identity-card h2 { position: relative; z-index: 1; margin: 18px 0 4px; font-size: 1.5rem; }
.identity-card p { position: relative; z-index: 1; margin: 0; color: #d8e7fb; }
.identity-line { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.22); margin-top: 21px; padding-top: 15px; font-size: .9rem; }
.identity-line span:last-child { color: #d7edff; }

.trust-strip { background: #eef7ff; border-bottom: 1px solid #d9eaf8; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 25px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 39px; height: 39px; flex: 0 0 39px; display: grid; place-items: center; color: var(--blue); font-size: 1.25rem; border-radius: 11px; background: #fff; box-shadow: 0 5px 13px rgba(20,73,140,.1); }
.trust-item strong { display: block; font-size: .9rem; }
.trust-item span { display: block; color: var(--muted); font-size: .8rem; }

.section { padding: 86px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 37px; }
.section-kicker { color: var(--blue); font-size: .83rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; margin: 7px 0 12px; letter-spacing: -.025em; }
.section-heading p { color: var(--muted); margin-bottom: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.service-card, .detail-card, .contact-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  box-shadow: 0 9px 25px rgba(14,51,97,.045);
}
.service-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px; border-radius: 13px; color: var(--orange); background: #fff0e9; font-size: 1.4rem; }
.service-card h3, .detail-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-card p, .detail-card p { color: var(--muted); margin-bottom: 0; font-size: .94rem; }
.business-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 38px; align-items: center; }
.business-copy p { color: var(--muted); }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.fact { padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.fact b { color: var(--blue-dark); display: block; font-size: .8rem; margin-bottom: 4px; }
.fact span { font-size: .95rem; font-weight: 700; }
.support-banner { color: #fff; border-radius: 22px; padding: 39px; background: linear-gradient(120deg, #0b3f93, #1662cd); display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.support-banner h2 { margin: 0 0 8px; font-size: 1.75rem; }
.support-banner p { color: #d8eafe; margin: 0; }
.support-banner .button { background: #fff; color: var(--blue-dark); white-space: nowrap; }

.page-hero { padding: 78px 0 60px; color: white; background: linear-gradient(120deg, #081b3c, #124caa); }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-bottom: 13px; }
.page-hero p { max-width: 720px; color: #d6e7ff; font-size: 1.05rem; margin-bottom: 0; }
.content { width: min(850px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 90px; }
.content h2 { margin-top: 40px; margin-bottom: 12px; font-size: 1.55rem; }
.content h3 { margin-top: 26px; margin-bottom: 8px; font-size: 1.16rem; }
.content p, .content li { color: #435872; }
.content ul, .content ol { padding-inline-start: 22px; }
.notice { margin: 27px 0; padding: 17px 19px; border-inline-start: 4px solid var(--orange); border-radius: 8px; background: #fff4ee; color: #643a29; }
.contact-list { display: grid; gap: 14px; margin-top: 24px; }
.contact-card strong { display: block; color: var(--blue-dark); margin-bottom: 4px; }
.contact-card a { color: var(--blue); font-weight: 800; overflow-wrap: anywhere; }

.site-footer { color: #cbd9ec; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .9fr; gap: 30px; padding: 49px 0 31px; }
.footer-brand { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer-brand span { display: block; margin-top: 9px; color: #a8bddb; font-size: .86rem; font-weight: 500; }
.footer-links h3 { color: white; font-size: .93rem; margin-bottom: 12px; }
.footer-links a { display: block; margin: 7px 0; color: #cbd9ec; font-size: .88rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(203,217,236,.18); padding: 20px 0; color: #9bb2d2; font-size: .78rem; }

@media (max-width: 850px) {
  .nav-links { display: none; position: absolute; top: 76px; inset-inline: 0; padding: 16px 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .hero-inner, .business-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 60px 0; gap: 32px; }
  .identity-card { max-width: 520px; }
  .trust-grid, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 12px; }
  .support-banner { display: block; }
  .support-banner .button { margin-top: 20px; }
}
@media (max-width: 500px) {
  .container { width: min(100% - 28px, 1140px); }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-inner > span { display: none; }
  .brand-legal { display: none; }
  .nav { min-height: 68px; }
  .nav-links { top: 68px; }
  .facts { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .support-banner { padding: 28px; }
  .page-hero { padding: 62px 0 48px; }
  .content { padding: 52px 0 70px; }
}
