:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #18212f;
  --muted: #58657a;
  --primary: #1f6feb;
  --primary-2: #0d4fc2;
  --accent: #1db954;
  --border: #dbe3ee;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(18, 38, 63, 0.08);
  --max: 1160px;
  --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);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; background: #000; color: #fff; padding: .5rem .75rem; border-radius: 8px; z-index: 2000;
}
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 4rem 0; }
.section-head { margin-bottom: 1.5rem; }
.section-head h2 { font-size: clamp(1.45rem, 2.2vw, 2.2rem); margin-bottom: .4rem; }
.section-head p { color: var(--muted); }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; color: var(--text); text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow);
}
.brand-text { letter-spacing: .5px; }
.main-nav {
  display: flex; align-items: center; gap: 1rem;
}
.main-nav a { font-weight: 600; color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1rem; border-radius: 12px; border: 1px solid transparent;
  font-weight: 700; text-decoration: none; transition: .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff !important; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.btn-outline { border-color: var(--primary); color: var(--primary) !important; background: #fff; }
.btn-outline:hover { background: #edf4ff; text-decoration: none; }
.menu-toggle {
  display: none; border: 1px solid var(--border); background: #fff;
  width: 44px; height: 44px; border-radius: 10px; padding: .5rem; cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: var(--text); margin: 5px 0; }
.hero { padding-top: 5.2rem; }
.hero-grid { display: grid; gap: 2rem; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; margin: .4rem 0 1rem; }
.hero h1 span { color: var(--primary); }
.eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.lead { color: var(--muted); max-width: 58ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.4rem 0; }
.hero-highlights { list-style: none; display: grid; gap: .5rem; }
.hero-highlights li::before { content: "✔"; color: var(--accent); margin-right: .45rem; }
.hero-media { position: relative; }
.hero-card {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(255,255,255,.96);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .7rem .8rem;
}
.grid { display: grid; gap: 1rem; }
.cards-3 { grid-template-columns: 1fr; }
.cards-2 { grid-template-columns: 1fr; }
.card, .service-card, .step, .contact-card, .legal-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.2rem;
}
.card h3, .service-card h3, .step h3 { margin-bottom: .35rem; }
.step { position: relative; padding-left: 4rem; }
.step span {
  position: absolute; left: 1rem; top: 1rem; width: 2rem; height: 2rem; border-radius: 999px;
  background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 700;
}
.faq-list { display: grid; gap: .75rem; }
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 700; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .9rem 1rem;
}
.faq-item[open] summary { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.faq-item p {
  border: 1px solid var(--border); border-top: none; background: #fff;
  padding: .9rem 1rem; border-bottom-left-radius: var(--radius-sm); border-bottom-right-radius: var(--radius-sm);
}
.contact-grid { display: grid; gap: 1rem; }
.form-group { margin-bottom: .9rem; }
label { display: block; font-weight: 600; margin-bottom: .35rem; }
input, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 10px;
  padding: .75rem .8rem; font: inherit; color: var(--text); background: #fff;
}
input:focus, textarea:focus, .btn:focus, .main-nav a:focus { outline: 3px solid rgba(31,111,235,.25); outline-offset: 2px; }
.form-message { margin-top: .75rem; font-weight: 600; }
.form-message.error { color: #b42318; }
.form-message.success { color: #067647; }
.site-footer {
  background: #0f1724; color: #e5edf8; padding-top: 2.2rem; margin-top: 2rem;
}
.site-footer a { color: #d6e7ff; }
.footer-grid { display: grid; gap: 1rem; }
.footer-grid h3 { margin-bottom: .4rem; font-size: 1.04rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 1rem; padding: 1rem 0; font-size: .95rem; }
.to-top {
  position: fixed; right: 1rem; bottom: 1rem; width: 44px; height: 44px;
  border: none; border-radius: 999px; background: var(--primary); color: #fff; cursor: pointer;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.legal-layout { display: grid; gap: 1.2rem; }
.legal-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.legal-content h1 { margin-bottom: .3rem; font-size: clamp(1.5rem, 2.4vw, 2.3rem); }
.legal-meta { color: var(--muted); margin-bottom: 1rem; }
.legal-content h2 { margin-top: 1.2rem; margin-bottom: .45rem; font-size: 1.15rem; }
.legal-content ul { margin-left: 1.15rem; }
.reveal { opacity: 0; transform: translateY(14px); transition: .5s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; align-items: center; }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-2 { grid-template-columns: repeat(2, 1fr); }
  .timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute; right: 1rem; top: 76px; width: min(92vw, 320px);
    background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow);
    padding: .8rem; display: none; flex-direction: column; align-items: stretch;
  }
  .main-nav.open { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}