
:root {
  --bg: #07111f;
  --bg-2: #0c1729;
  --bg-3: #10233f;
  --card: rgba(255,255,255,0.06);
  --card-strong: rgba(255,255,255,0.09);
  --line: rgba(255,255,255,0.12);
  --text: #f8fbff;
  --muted: #a7b4c8;
  --brand: #4ea1ff;
  --accent: #ff7a00;
  --success: #22c55e;
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(78,161,255,0.16), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(255,122,0,0.10), transparent 20%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

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

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(14px);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7,17,31,0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.2px;
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  padding: 4px;
  border: 1px solid var(--line);
}
.brand-text span:first-child { color: #dcecff; }
.brand-text span:last-child { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #dbe8f8;
}
.nav-links a:hover { color: #fff; }

.btn {
  display: inline-block;
  border: none;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #2d7ef0);
  box-shadow: 0 12px 35px rgba(78,161,255,0.35);
}
.btn-outline {
  color: #fff;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-light {
  color: #08111f;
  background: #fff;
}

.hero, .page-hero {
  position: relative;
  overflow: hidden;
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(78,161,255,0.18), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(255,122,0,0.12), transparent 22%);
  pointer-events: none;
}
.hero { padding: 88px 0 74px; }
.page-hero { padding: 72px 0 50px; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #dce9f8;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 14px; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h3 { font-size: 1.25rem; }
.lead {
  font-size: 1.08rem;
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 28px;
}
.pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #e8f2ff;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.card, .hero-card, .highlight, .form-wrap, .cta, .notice, .cookie-banner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.card, .hero-card, .highlight, .form-wrap, .notice { padding: 26px; }
.hero-card .logo-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}
.hero-card .logo-panel img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}
.safe-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(78,161,255,0.1);
  color: #ddecff;
  border: 1px solid rgba(78,161,255,0.2);
  font-size: 0.95rem;
}

section { padding: 76px 0; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.muted { color: var(--muted); }
.small { font-size: 0.94rem; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.icon-badge {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(78,161,255,0.24), rgba(255,122,0,0.16));
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}
.highlight { background: rgba(255,255,255,0.05); }
.notice { border-left: 4px solid var(--brand); }
.cta {
  padding: 42px;
  background: linear-gradient(135deg, rgba(78,161,255,0.16), rgba(255,122,0,0.14));
}

.contact-list, .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li, .check-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child, .check-list li:last-child { border-bottom: none; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  font: inherit;
  color: #fff;
  background: rgba(255,255,255,0.04);
}
textarea { min-height: 140px; resize: vertical; }
.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

footer {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  padding: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-banner.show { display: flex; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.page-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.page-list .card a { text-decoration: none; }

@media (max-width: 960px) {
  .hero-grid, .grid-2, .grid-3, .footer-grid, .form-grid, .page-list {
    grid-template-columns: 1fr;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner, .cookie-banner.show { display: block; }
  .cookie-actions { margin-top: 14px; }
}
