* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b1020;
  --bg-soft: #111833;
  --card: #ffffff;
  --text: #1b2333;
  --muted: #5d6b85;
  --primary: #2457ff;
  --primary-dark: #1a43ca;
  --accent: #14b8a6;
  --line: #e7ecf5;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(18, 38, 94, 0.12);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #f6f8fc;
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 16, 32, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), #62d7ff);
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.2);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: #dce4ff;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-sm { padding: 9px 14px; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #3a7bff);
  color: #fff;
  box-shadow: 0 8px 20px rgba(36, 87, 255, 0.35);
}

.btn-primary:hover { transform: translateY(-1px); }

.btn-outline {
  border-color: #a8b8e8;
  color: #dce4ff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.hero {
  background: radial-gradient(circle at top right, #2a3d82 0%, #0b1020 45%, #090d1a 100%);
  color: #fff;
  padding: 78px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  color: #8dc9ff;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-subtitle {
  color: #c7d3f7;
  margin-bottom: 24px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #dbe6ff;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.section {
  padding: 74px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin-bottom: 10px;
}

.section-head p { color: var(--muted); }

.cards-grid {
  display: grid;
  gap: 18px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card, .service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card h3, .service-card h3 { margin-bottom: 8px; }
.card p, .service-card p { color: var(--muted); }

.why {
  background: linear-gradient(120deg, #eef3ff, #f7fbff);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.check-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.check-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px;
}

.highlight-box {
  background: linear-gradient(140deg, var(--primary), #3d7dff);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.highlight-box h3 { margin-bottom: 10px; }
.highlight-box p { color: #e8efff; margin-bottom: 16px; }

.trust {
  background: var(--bg-soft);
  color: #fff;
}

.trust .section-head p { color: #b4c1e6; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 6px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.contact-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 9px;
}

.contact-list a { color: var(--primary-dark); }

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

summary {
  font-weight: 600;
  cursor: pointer;
}

details p {
  margin-top: 8px;
  color: var(--muted);
}

.final-cta-box {
  background: linear-gradient(130deg, #101c3e, #142b60);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px;
}

.form-row { margin-bottom: 12px; }
.form-row label { display: block; margin-bottom: 6px; font-weight: 500; }
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
}

.form-feedback {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #d5e8ff;
}

.site-footer {
  background: #070b17;
  color: #d1daf4;
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: 8px; }
.site-footer a { color: #d1daf4; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .why-grid,
  .location-grid,
  .final-cta-box { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    right: 4%;
    top: 74px;
    background: #0f1730;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px;
    min-width: 220px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .grid-4,
  .grid-3,
  .trust-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
}