:root {
  --bg: #f4f7fb;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: #ffffff;
  --text: #0b1220;
  --muted: #5b6a80;
  --line: rgba(11,18,32,0.08);
  --accent: #1b6dff;
  --accent-2: #30c7b5;
  --shadow: 0 18px 60px rgba(12, 23, 43, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(48,199,181,0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(27,109,255,0.14), transparent 28%),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.glass {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 999px;
}

.brand img { height: 54px; width: auto; }
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(27,109,255,0.28);
}
.mobile-toggle { display: none; }

.hero {
  padding: 56px 0 32px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.hero-copy,
.hero-card,
.section-card,
.info-card,
.contact-card,
.legal-card {
  border-radius: var(--radius);
}
.hero-copy {
  padding: 44px;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27,109,255,0.08);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.04;
  margin: 16px 0 18px;
  letter-spacing: -0.05em;
}
.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}
.btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(27,109,255,0.25);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0b1220 0%, #15223a 100%);
  color: #fff;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(8,16,31,0.28);
}
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}
.hero-card::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -70px;
  background: rgba(48,199,181,0.18);
}
.hero-card::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -50px;
  background: rgba(27,109,255,0.18);
}
.dashboard {
  position: relative;
  z-index: 1;
}
.panel {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 16px;
}
.panel small { color: rgba(255,255,255,0.68); display: block; margin-bottom: 8px; }
.panel strong { display: block; font-size: 1.25rem; margin-bottom: 4px; }
.routes {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.route-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.95rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(48,199,181,0.14);
  color: #96ffee;
  font-size: 0.9rem;
  font-weight: 700;
}

main section {
  padding: 34px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin: 0 0 8px;
  letter-spacing: -0.04em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.grid-3,
.grid-2,
.process-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.contact-grid { grid-template-columns: 1fr 1fr; }
.legal-grid { grid-template-columns: 1fr 1fr; }

.section-card,
.info-card,
.contact-card,
.legal-card {
  padding: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27,109,255,0.14), rgba(48,199,181,0.18));
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-card h3,
.info-card h3,
.contact-card h3,
.legal-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.section-card p,
.info-card p,
.contact-card p,
.legal-card p,
.section-card li,
.contact-card li,
.legal-card li {
  margin: 0;
  color: var(--muted);
}
.check-list,
.legal-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li,
.legal-list li {
  position: relative;
  padding-left: 22px;
}
.check-list li::before,
.legal-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  position: absolute;
  left: 0;
  top: 0.62em;
}

.process-step {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), #fff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.process-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #0b1220;
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.process-step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.process-step p { margin: 0; color: var(--muted); }

.cta-band {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b1220, #15223a);
  color: #fff;
  box-shadow: 0 24px 70px rgba(8,16,31,0.26);
}
.cta-band p { color: rgba(255,255,255,0.78); }
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cta-band .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}

.contact-card strong,
.legal-note strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-card .placeholder {
  color: var(--text);
  font-weight: 700;
}
.contact-card ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }

.site-footer {
  padding: 26px 0 42px;
}
.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 24px;
}
.footer-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}
.footer-meta a:hover { color: var(--text); }

.legal-page {
  padding: 44px 0 56px;
}
.legal-hero {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #0b1220 0%, #15223a 100%);
  color: #fff;
  margin-bottom: 24px;
}
.legal-hero p { color: rgba(255,255,255,0.76); max-width: 66ch; }
.legal-body {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.legal-body h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.legal-body p,
.legal-body li {
  color: var(--muted);
}
.legal-body ul {
  margin: 0;
  padding-left: 18px;
}
.legal-alert {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(27,109,255,0.08);
  color: var(--text);
  border: 1px solid rgba(27,109,255,0.12);
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .process-grid,
  .contact-grid,
  .legal-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .hero-copy,
  .hero-card { padding: 28px; }
}

@media (max-width: 760px) {
  .site-header { padding: 12px 0; }
  .nav-shell { border-radius: 28px; padding: 14px 16px; flex-wrap: wrap; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }
  .nav-links.open { display: flex; }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
  }
  .nav-cta { display: none; }
  .hero { padding-top: 32px; }
  .hero-stats { grid-template-columns: 1fr; }
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
