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

:root {
  --bg: #f6f8fc;
  --white: #ffffff;
  --primary: #5f3dc4;
  --primary-dark: #4327a1;
  --secondary: #0f766e;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 14px 35px rgba(34, 41, 57, 0.12);
  --radius: 18px;
}

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

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(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #7c4dff);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-text {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.nav a {
  font-weight: 500;
  color: #374151;
}

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

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

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: #111827;
  border-radius: 2px;
}

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

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

.eyebrow {
  display: inline-block;
  background: rgba(95, 61, 196, 0.1);
  color: var(--primary);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.15;
  margin-bottom: 15px;
}

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

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7f56d9);
  color: #fff;
  box-shadow: 0 10px 24px rgba(95, 61, 196, 0.25);
}

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

.btn-secondary {
  border-color: var(--border);
  background: #fff;
  color: #111827;
}

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

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-metrics div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.hero-metrics strong {
  display: block;
  font-size: 0.95rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 70px 0;
}

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

.section h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.2;
}

.cards-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card,
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
  background: rgba(15, 118, 110, 0.1);
}

.card h3,
.service-card h3 {
  margin-bottom: 8px;
}

.card p,
.service-card p,
.why p,
.location p,
.final-cta p {
  color: var(--muted);
}

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

.check-list {
  list-style: none;
  margin-top: 16px;
}

.check-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.why-card,
.trust-box,
.map-wrap,
.final-cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.why-card,
.final-cta-box {
  padding: 24px;
}

.trust-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 22px;
}

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

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

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

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

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

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 44px 0 24px;
}

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

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 14px 0 24px;
  font-size: 0.9rem;
}

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

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 4%;
    gap: 14px;
  }

  .nav.active {
    display: flex;
  }
}

@media (max-width: 620px) {
  .cards-grid,
  .services-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }
}
