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

:root {
  --bg: #070b14;
  --bg-soft: #0f1728;
  --card: #121b31;
  --text: #e8eefc;
  --muted: #b7c4e4;
  --primary: #4da3ff;
  --primary-strong: #287dff;
  --accent: #21d4c5;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.15);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 20% 0%, #15203a 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-mark {
  color: var(--accent);
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  font-weight: 500;
  color: #dce7ff;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.main-nav .nav-cta {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #041224;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--white);
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: 5.5rem 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(33, 212, 197, 0.16), transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(77, 163, 255, 0.14), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #9dc4ff;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.1rem;
  border-radius: 11px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #051426;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #dce7ff;
  background: rgba(255, 255, 255, 0.03);
}

.hero-trust {
  list-style: none;
  color: #d4e0fb;
  display: grid;
  gap: 0.35rem;
}

.hero-media img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 350px;
  object-fit: cover;
}

.section {
  padding: 4.8rem 0;
}

.section-head {
  margin-bottom: 1.8rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.07rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
  background: rgba(77, 163, 255, 0.14);
}

.section-dark {
  background: linear-gradient(120deg, rgba(25, 37, 65, 0.75), rgba(12, 17, 32, 0.95));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 0.8rem;
}

.check-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #dbe7ff;
}

.check-item span {
  color: var(--accent);
  margin-right: 0.45rem;
}

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

.trust-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.trust-badges {
  display: grid;
  gap: 0.8rem;
}

.badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.badge strong {
  display: block;
  margin-bottom: 0.35rem;
}

.badge span {
  color: var(--muted);
}

.section-location {
  background: rgba(255, 255, 255, 0.02);
}

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

.location-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

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

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.final-cta-box {
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 2rem;
  background: linear-gradient(130deg, rgba(77, 163, 255, 0.15), rgba(33, 212, 197, 0.08));
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 2.4rem;
  background: #060a13;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.6rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #b8c6e8;
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: #9cb0da;
}

@media (max-width: 980px) {
  .hero-grid,
  .why-grid,
  .trust-panel,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #0b1220;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

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

  .hero {
    padding-top: 4.8rem;
  }
}
