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

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0e7490;
  --primary-dark: #155e75;
  --accent: #2563eb;
  --border: #dbe3ee;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 40%, #f8fafc 100%);
  line-height: 1.6;
}

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

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand-text {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}

.hero {
  padding: 78px 0 54px;
}

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

.tag {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

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

.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

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

.hero-points {
  list-style: none;
  color: #1e293b;
  display: grid;
  gap: 6px;
}

.hero-image-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 12px;
}

.section {
  padding: 74px 0;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.2;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ecfeff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

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

.check-list {
  margin-top: 16px;
  padding-left: 18px;
  color: #1e293b;
}

.info-box {
  background: #0f172a;
  color: #e2e8f0;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-box h3 {
  color: #fff;
  margin-bottom: 10px;
}

.info-box p { margin-bottom: 18px; }

.trust-section {
  background: linear-gradient(130deg, #0f172a, #1e293b);
}

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

.trust-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 22px;
  color: #e2e8f0;
}

.trust-card h3 { color: #fff; margin-bottom: 8px; }

.location .map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}

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

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

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

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

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

.cta-final {
  padding-top: 24px;
}

.cta-box {
  background: linear-gradient(135deg, #0e7490, #1d4ed8);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box h2 { margin-bottom: 10px; }
.cta-box p { margin-bottom: 20px; opacity: 0.95; }

.footer {
  background: #0b1220;
  color: #cbd5e1;
  margin-top: 70px;
}

.footer-grid {
  padding: 50px 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer h3, .footer h4 { color: #fff; margin-bottom: 10px; }
.footer p { margin-bottom: 8px; }
.footer a { color: #93c5fd; text-decoration: none; }

.copyright {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 12px 0;
  font-size: 0.92rem;
}

@media (max-width: 992px) {
  .hero-grid,
  .split,
  .benefits-grid,
  .services-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image-card img { height: 360px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }

  .nav {
    position: absolute;
    top: 76px;
    right: 4%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    min-width: 210px;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .hero-grid,
  .split,
  .benefits-grid,
  .services-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  .cta-box {
    padding: 28px 20px;
  }
}
