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

:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #eef3fb;
  --text: #13233a;
  --muted: #56657a;
  --primary: #0b5bd3;
  --primary-2: #1b7af0;
  --dark: #0f1b2d;
  --accent: #19a87a;
  --border: #d9e2f0;
  --shadow: 0 12px 30px rgba(11, 40, 83, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

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

.logo-icon {
  font-size: 1.3rem;
}

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

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.menu a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
}

.hero {
  padding: 72px 0 48px;
  background: radial-gradient(circle at 90% 10%, #e6f0ff 0%, #f5f8fc 45%, #f5f8fc 100%);
}

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

.kicker {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

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

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 60ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all .2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow);
}

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

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-sm {
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--dark);
  color: #fff !important;
}

.hero-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: var(--surface-2);
}

.section-head {
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 8px;
}

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

.four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(16, 41, 82, 0.06);
}

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

.card h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.card p,
.service-card p,
.why-grid p,
.trust-grid p,
.location-grid p,
.faq-list p {
  color: var(--muted);
}

.why-grid,
.trust-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

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

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

.why-box,
.cta-box {
  background: linear-gradient(145deg, #0e2447, #153668);
  color: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.why-box p,
.cta-box p {
  color: rgba(255,255,255,0.85);
  margin: 10px 0 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.trust-cards {
  display: grid;
  gap: 14px;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 300px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

.faq-list {
  display: grid;
  gap: 10px;
}

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

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

.cta-final {
  background: linear-gradient(180deg, transparent, #e8f0fd);
}

.footer {
  background: #0b1628;
  color: #d8e0ef;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 20px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer a {
  color: #d8e0ef;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 26px;
  padding: 16px 0;
  text-align: center;
  font-size: 0.93rem;
}

@media (max-width: 980px) {
  .four-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid,
  .why-grid,
  .trust-grid,
  .location-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    right: 4%;
    top: 75px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    min-width: 220px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu.open { display: flex; }
}

@media (max-width: 560px) {
  .four-cols { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .hero-image { min-height: 300px; }
}