:root {
  --bg: #0b1220;
  --bg-soft: #111b2e;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #1a2433;
  --text-soft: #54627a;
  --primary: #2d6bff;
  --primary-strong: #1146c9;
  --accent: #0bc5ea;
  --success: #16a34a;
  --danger: #dc2626;
  --border: #d8e1ee;
  --shadow: 0 12px 30px rgba(13, 32, 67, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1120px;
  --space: 1rem;
  --font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 30%, #f7fbff 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 10px; background: #fff; padding: .5rem .75rem; z-index: 9999; border-radius: .5rem; }
.skip-link:focus { left: 10px; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11, 18, 32, 0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: #fff; font-weight: 700; letter-spacing: .2px; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--primary), var(--accent)); color: #fff; font-size: .78rem;
}
.main-nav { display: flex; align-items: center; gap: 1.1rem; }
.main-nav a { color: #d8e3ff; font-weight: 500; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .78rem 1.15rem; font-weight: 600;
  transition: .25s ease; border: 1px solid transparent;
}
.btn:focus-visible { outline: 3px solid #93c5fd; outline-offset: 2px; }
.btn-primary { background: linear-gradient(145deg, var(--primary), var(--primary-strong)); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-outline { border-color: #b8c8ea; color: var(--primary-strong); background: #fff; }
.btn-outline:hover { background: #edf3ff; }
.hero { padding: 5.5rem 0 3.5rem; }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.kicker { color: var(--primary-strong); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; margin-bottom: .7rem; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
h2 { font-size: clamp(1.45rem, 3vw, 2.25rem); line-height: 1.2; }
h3 { font-size: 1.15rem; line-height: 1.3; }
.hero-content p { color: var(--text-soft); margin-bottom: 1rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.2rem 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; }
.hero-badges li { background: #e9f0ff; border: 1px solid #cfddff; padding: .45rem .75rem; border-radius: 999px; font-size: .9rem; }
.hero-visual img { border-radius: var(--radius); box-shadow: var(--shadow); min-height: 280px; object-fit: cover; }
.section { padding: 4rem 0; }
.section-alt { background: var(--surface-soft); border-top: 1px solid #e4ecf8; border-bottom: 1px solid #e4ecf8; }
.section-head { margin-bottom: 1.8rem; }
.cards-grid, .steps-grid { display: grid; gap: 1rem; }
.card, .step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.15rem; box-shadow: 0 8px 20px rgba(8, 31, 74, .06);
}
.card p, .step p { color: var(--text-soft); margin-top: .5rem; }
.step span {
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%; place-content: center;
  align-items: center; background: #e7efff; color: var(--primary-strong); font-weight: 700; margin-bottom: .7rem;
}
.faq-list { display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; border: 0; background: #fff; padding: 1rem; font-weight: 600; cursor: pointer;
}
.faq-question:hover { background: #f7faff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 1rem 1rem; color: var(--text-soft); }
.faq-item.open .faq-answer { max-height: 220px; }
.cta-block { text-align: center; }
.cta-content { background: linear-gradient(145deg, #0c1730, #1f3d78); color: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.cta-content p { color: #dbe7ff; margin: .75rem 0 1.2rem; }
.site-footer { background: #0b1220; color: #d2ddf7; margin-top: 2rem; }
.footer-grid { padding: 2.5rem 0; display: grid; gap: 1.2rem; }
.site-footer h3 { color: #fff; margin-bottom: .6rem; }
.site-footer ul { list-style: none; display: grid; gap: .5rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 1rem; font-size: .92rem; }
.page-hero { padding: 5.2rem 0 2.3rem; background: linear-gradient(145deg, #eaf1ff, #ffffff); }
.page-hero p { color: var(--text-soft); margin-top: .8rem; }
.legal-layout { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.legal-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.2rem;
}
.legal-card h2 { margin-bottom: .8rem; }
.legal-card h3 { margin: 1rem 0 .5rem; }
.legal-card p, .legal-card li { color: var(--text-soft); }
.legal-card ul { padding-left: 1.1rem; }
.legal-index a { display: block; padding: .3rem 0; color: var(--primary-strong); }
.contact-grid { display: grid; gap: 1rem; }
.info-card, .form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.info-list { list-style: none; display: grid; gap: .6rem; margin-top: .9rem; }
form { display: grid; gap: .8rem; }
label { font-weight: 600; font-size: .94rem; }
input, textarea {
  width: 100%; border: 1px solid #c9d6ef; border-radius: 10px; padding: .75rem .8rem; font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus { outline: 3px solid #bfdbfe; border-color: #7da6ff; }
.form-feedback { font-size: .93rem; padding: .6rem .7rem; border-radius: .6rem; display: none; }
.form-feedback.error { background: #fef2f2; color: var(--danger); display: block; }
.form-feedback.success { background: #f0fdf4; color: var(--success); display: block; }
.back-to-top {
  position: fixed; right: 16px; bottom: 16px; width: 44px; height: 44px; border: 0; border-radius: 999px;
  background: var(--primary); color: #fff; font-size: 1.1rem; display: none; cursor: pointer; box-shadow: var(--shadow);
}
.back-to-top.show { display: inline-grid; place-items: center; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid, .contact-grid, .legal-layout { grid-template-columns: 1.2fr .8fr; }
}
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute; inset: 74px 0 auto 0; background: #0f1b34; border-bottom: 1px solid rgba(255,255,255,.1);
    display: none; flex-direction: column; align-items: flex-start; padding: 1rem;
  }
  .main-nav.open { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}