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

:root {
  --bg: #0b1220;
  --bg-soft: #111a2c;
  --surface: #ffffff;
  --surface-soft: #f3f6fc;
  --text: #1a2433;
  --text-light: #5a6880;
  --primary: #3b82f6;
  --primary-strong: #2563eb;
  --accent: #22d3ee;
  --border: #dbe4f2;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(17, 27, 46, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(10, 18, 32, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
}

.brand-mark {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 0.75rem;
  color: #c7d6ef;
  letter-spacing: 1.6px;
}

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

.nav a {
  color: #e7eefc;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover { color: #fff; }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
}

.hero {
  background: radial-gradient(circle at 10% 20%, #1a2f57 0%, #0b1220 45%, #060b15 100%);
  color: #fff;
  padding: 64px 0 82px;
}

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

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

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

.hero-text {
  color: #d8e4fb;
  margin-bottom: 1.4rem;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #00142c;
}

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

.btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.hero-highlights {
  list-style: none;
  color: #c8d8f7;
  display: grid;
  gap: 0.45rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  left: -20px;
  bottom: 20px;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  max-width: 280px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.section {
  padding: 78px 0;
}

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

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

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

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.icon { font-size: 1.6rem; margin-bottom: 0.5rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.check-list {
  margin-top: 1rem;
  padding-left: 1.1rem;
}

.stats-wrap {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.stat-title {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}

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

.trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.contact-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
  list-style: none;
}

.map-card {
  background: linear-gradient(160deg, #0f1a30, #1a3a67);
  color: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

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

.faq-list details + details {
  margin-top: 0.7rem;
}

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

.cta-final {
  background: linear-gradient(120deg, #0d1a30, #132b4d);
  color: #fff;
}

.cta-box {
  text-align: center;
}

.cta-box p {
  max-width: 720px;
  margin: 0.8rem auto 1.2rem;
  color: #d2ddf3;
}

.footer {
  background: #070d18;
  color: #d5def1;
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr 1.3fr 1.2fr;
}

.footer a {
  color: #e8f0ff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.4rem;
  padding: 1rem 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    right: 4%;
    top: 74px;
    background: #0e1628;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    width: min(280px, 92vw);
    display: none;
  }

  .nav.open { display: flex; }
  .menu-toggle { display: flex; }

  .hero-grid,
  .two-col,
  .services-grid,
  .trust-box,
  .footer-grid,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .hero-media img { height: 320px; }
  .floating-card { position: static; margin-top: 0.8rem; max-width: 100%; }
}
