:root {
  --bg: #0b1020;
  --panel: #121933;
  --panel-2: #ffffff;
  --text: #0d1321;
  --text-light: #f5f7fb;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #2563eb;
  --accent-2: #06b6d4;
  --soft: #f4f7fb;
  --shadow: 0 20px 45px rgba(13, 19, 33, .10);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #0f172a;
  color: #dbeafe;
  font-size: 14px;
}
.topbar-wrap {
  display: flex; justify-content: space-between; gap: 16px; padding: 10px 0;
}
.site-header {
  position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,.85);
}
.site-header.simple { position: relative; }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo strong { display: block; font-size: 18px; }
.logo span { display: block; font-size: 12px; color: var(--muted); }
.logo-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; display: grid; place-items: center; font-weight: 800;
  box-shadow: var(--shadow);
}
nav { display: flex; gap: 22px; color: #334155; font-weight: 500; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; border: 0; cursor: pointer;
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent; color: var(--accent); border: 1.5px solid rgba(37,99,235,.25); box-shadow: none;
}
.hero {
  background: radial-gradient(circle at top left, rgba(37,99,235,.16), transparent 32%),
              radial-gradient(circle at top right, rgba(6,182,212,.18), transparent 28%),
              linear-gradient(180deg, #f8fbff 0%, #ffffff 80%);
  padding: 82px 0 56px;
}
.hero-grid, .grid.two, .footer-grid, .trust-grid { display: grid; gap: 28px; }
.hero-grid { grid-template-columns: 1.18fr .82fr; align-items: center; }
.eyebrow {
  display: inline-block; margin-bottom: 10px; padding: 8px 12px; border-radius: 999px;
  background: rgba(37,99,235,.08); color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .02em;
}
h1, h2, h3, h4 { line-height: 1.14; margin: 0 0 14px; }
h1 { font-size: clamp(42px, 7vw, 64px); letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.03em; }
h3 { font-size: 24px; }
.lead { font-size: 18px; color: #374151; max-width: 700px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0;
}
.hero-points span {
  padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid rgba(37,99,235,.10); font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-contact { display: grid; gap: 5px; color: #334155; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.booking-card { background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.booking-form { display: grid; gap: 14px; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: 15px 16px; border-radius: 16px; border: 1px solid #dbe2ea; font: inherit; outline: none;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  border-color: rgba(37,99,235,.55); box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.trust-strip { padding: 0 0 10px; }
.trust-grid { grid-template-columns: repeat(4, 1fr); }
.trust-grid > div {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px 20px;
  display: grid; gap: 5px; box-shadow: var(--shadow);
}
.trust-grid strong { font-size: 15px; }
.trust-grid span { color: var(--muted); font-size: 14px; }
.section { padding: 88px 0; }
.muted { background: var(--soft); }
.section-head { margin-bottom: 34px; max-width: 900px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.grid.two { grid-template-columns: 1fr 1fr; }
.grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 800; margin-right: 10px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card { min-height: 200px; }
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow);
}
.step span {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px;
  background: rgba(37,99,235,.10); color: var(--accent); font-weight: 800; margin-bottom: 16px;
}
.review-card strong { font-size: 20px; color: #f59e0b; }
.review-card span { color: var(--muted); font-size: 14px; }
.compliance-grid { align-items: stretch; }
.cta-section { padding-top: 20px; }
.cta-box {
  background: linear-gradient(135deg, #0f172a, #172554);
  color: var(--text-light); border-radius: 30px; padding: 34px; display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.site-footer {
  margin-top: 70px; background: #0f172a; color: #e5e7eb; padding: 46px 0;
}
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
.site-footer a, .site-footer p { color: #cbd5e1; display: block; margin: 6px 0; }
.page-top { padding-top: 56px; }
.legal-page { min-height: 100vh; background: linear-gradient(180deg, #f8fbff, #ffffff); }
.narrow { width: min(860px, calc(100% - 32px)); }
.back-link { display: inline-block; margin-bottom: 20px; color: var(--accent); font-weight: 700; }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 30; padding: 14px 18px; border-radius: 999px; background: #22c55e; color: #fff; font-weight: 800; box-shadow: var(--shadow);
}
@media (max-width: 1080px) {
  .hero-grid, .grid.two, .footer-grid, .trust-grid, .services-grid, .steps, .grid.three { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  nav { display: none; }
  .topbar-wrap, .cta-box, .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 52px; }
  .hero-grid, .grid.two, .footer-grid, .trust-grid, .services-grid, .steps, .grid.three { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .card, .step { padding: 22px; }
}
