:root {
  --bg: #0b1220;
  --surface: #101a2d;
  --surface-2: #15223a;
  --text: #e8eefc;
  --muted: #b2c0dd;
  --primary: #5ecbff;
  --primary-2: #4c7dff;
  --accent: #8ff2c8;
  --card: #13203a;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 45px rgba(1, 9, 24, 0.35);
}

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

html,
body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 20% 0%, #182948 0%, var(--bg) 45%);
  color: var(--text);
  scroll-behavior: smooth;
}

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

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

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

.section {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 15, 29, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-mark {
  color: var(--primary);
}

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

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.btn {
  border: 0;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

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

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

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-nav {
  padding: 10px 16px;
}

.hero-grid,
.why-grid,
.trust-grid,
.location-grid,
.footer-grid {
  display: grid;
  gap: 36px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tags span {
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: #d5e1f8;
}

.hero-visual img {
  border-radius: 22px;
  min-height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

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

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

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

.card,
.service-card,
.trust-card,
.highlight-box,
.cta-box {
  background: linear-gradient(145deg, var(--card), var(--surface));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card,
.service-card {
  padding: 24px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  background: rgba(94, 203, 255, 0.14);
}

.why-grid,
.location-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

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

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

.highlight-box,
.trust-card {
  padding: 28px;
}

.trust-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.contact-list a {
  color: #d7ebff;
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}

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

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

details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}

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

details p {
  margin-top: 10px;
}

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

.cta-box {
  padding: 36px;
  text-align: center;
}

.hero-actions.center {
  justify-content: center;
}

.site-footer {
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.14);
}

.footer-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 20px;
}

.footer-grid h4,
.footer-grid h3 {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 4%;
    width: min(320px, 92%);
    background: #0f1b31;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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