* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f6f8fc;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0b63f6;
  --primary-2: #00a3ff;
  --dark: #0b1220;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(2, 6, 23, 0.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: flex; gap: 10px; align-items: center; text-decoration: none; color: #fff; }
.brand-icon { font-size: 1.45rem; }
.brand strong { display: block; font-size: 1rem; }
.brand small { opacity: 0.8; font-size: .75rem; }
.menu { display: flex; gap: 20px; align-items: center; }
.menu a { color: #dbeafe; text-decoration: none; font-weight: 500; }
.menu a:hover { color: #fff; }
.menu-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white !important;
  padding: 10px 16px;
  border-radius: 10px;
}
.menu-toggle { display: none; background: none; border: 0; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: #fff; margin: 5px 0; }
.hero {
  position: relative;
  padding: 72px 0 60px;
  background: radial-gradient(circle at top left, #1e3a8a, #0b1220 62%);
  color: #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; }
.kicker { color: #93c5fd; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; font-size: .8rem; }
.hero h1 { font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.15; margin-bottom: 16px; }
.hero p { color: #dbeafe; max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.hero-highlights { list-style: none; display: grid; gap: 6px; color: #cfe2ff; font-size: .95rem; }
.hero-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
}
.section { padding: 80px 0; }
.section-soft { background: linear-gradient(180deg, #f8fbff, #eef4ff); }
.section-dark { background: #0b1220; color: #f1f5f9; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.section h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.2; margin-bottom: 10px; }
.section p { color: var(--muted); }
.section-dark p, .section-dark .kicker, .section-dark h2 { color: #cbd5e1; }
.cards { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.card .icon { font-size: 1.6rem; margin-bottom: 8px; }
.card h3 { margin-bottom: 6px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.check-list { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.check-list li::before { content: '✔'; color: #0b63f6; margin-right: 8px; font-weight: 800; }
.info-panel { background: #fff; border: 1px solid #dbeafe; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.info-panel h3 { margin-bottom: 14px; }
.info-panel dl div { margin-bottom: 12px; }
.info-panel dt { font-size: .8rem; color: #64748b; text-transform: uppercase; }
.info-panel dd { font-weight: 600; }
.service-card { border-top: 4px solid #3b82f6; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.trust-cards { display: grid; gap: 12px; }
.mini-card { background: rgba(15, 23, 42, .45); border: 1px solid rgba(148, 163, 184, .25); border-radius: 14px; padding: 16px; }
.mini-card strong { display: block; color: #fff; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid #dbeafe; }
.map-frame iframe { width: 100%; height: 330px; border: 0; }
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 10px; }
.faq-list details { background: #fff; border-radius: 12px; border: 1px solid #dbeafe; padding: 16px 18px; }
.faq-list summary { font-weight: 700; cursor: pointer; }
.cta-final { padding-top: 30px; }
.cta-box {
  text-align: center;
  background: linear-gradient(120deg, #0b63f6, #0ea5e9);
  color: #fff;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: var(--shadow);
}
.cta-box p { color: #e0f2fe; margin: 8px 0 20px; }
.footer { background: #020617; color: #cbd5e1; padding-top: 44px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.footer h3, .footer h4 { color: #fff; margin-bottom: 10px; }
.footer ul { list-style: none; display: grid; gap: 6px; }
.footer a { color: #93c5fd; text-decoration: none; }
.footer-links { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.copyright { border-top: 1px solid rgba(148,163,184,.2); margin-top: 24px; padding: 14px 0 20px; font-size: .9rem; }
@media (max-width: 980px) {
  .hero-grid, .grid-4, .grid-3, .two-col, .trust-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #0b1220;
    border-bottom: 1px solid rgba(255,255,255,.12);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 4%;
  }
  .menu.open { display: flex; }
  .hero-grid, .grid-4, .grid-3, .two-col, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-media img { height: 300px; }
  .section { padding: 64px 0; }
}