:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --text: #152033;
  --muted: #5d6a7b;
  --primary: #102c57;
  --accent: #c6a15b;
  --border: #e8ebf2;
  --shadow: 0 20px 60px rgba(16, 44, 87, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.narrow { width: min(860px, calc(100% - 2rem)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,235,242,0.9);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
}
.brand-mini {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.top-phone {
  color: var(--primary);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(198,161,91,0.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.badge, .eyebrow {
  display: inline-block;
  background: rgba(16,44,87,0.08);
  color: var(--primary);
  border: 1px solid rgba(16,44,87,0.08);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 1rem 0;
}
.hero p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #183f7d);
  color: white;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: white;
  border: 1px solid var(--border);
}
.full { width: 100%; }

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hero-highlights article,
.panel,
.info-card,
.hero-card-inner,
.coverage-box {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-highlights article {
  padding: 1rem;
}
.hero-highlights strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.hero-highlights span { color: var(--muted); font-size: 0.95rem; }

.hero-card-inner {
  padding: 2rem;
  position: relative;
}
.hero-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(198,161,91,0.6), rgba(16,44,87,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.hero-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.45rem;
}
.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-card li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}
.hero-card li:last-child { border-bottom: none; }

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.65;
}
.hero-bg-shape-1 {
  width: 240px;
  height: 240px;
  background: rgba(198,161,91,0.18);
  top: 60px;
  right: -60px;
}
.hero-bg-shape-2 {
  width: 180px;
  height: 180px;
  background: rgba(16,44,87,0.09);
  bottom: 30px;
  left: -40px;
}

.section { padding: 5rem 0; }
.section-heading { margin-bottom: 2rem; }
.section-heading h2 {
  margin: 0.7rem 0 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.section-heading p { color: var(--muted); margin: 0; }
.center { text-align: center; }
.center-text { text-align: center; }
.lead { font-size: 1.08rem; color: var(--muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.info-card {
  padding: 1.45rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); }
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16,44,87,0.08), rgba(198,161,91,0.18));
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.info-card h3 { margin: 0 0 0.5rem; }
.info-card p { margin: 0; color: var(--muted); }

.areas {
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.area-pill {
  padding: 1.2rem;
  text-align: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: white;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow);
}

.coverage-box {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
}
.coverage-box h2 { margin: 0.5rem 0; }
.coverage-box p { margin: 0; color: var(--muted); }

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.panel { padding: 2rem; }
.panel h2 { margin: 0.6rem 0 1rem; }
.panel p { color: var(--muted); }

.footer {
  background: #0f1f39;
  color: white;
  padding: 2.4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}
.footer h3 { margin-top: 0; }
.footer p { color: rgba(255,255,255,0.84); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .card-grid,
  .areas-grid,
  .two-columns,
  .footer-grid,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .coverage-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .panel,
  .hero-card-inner,
  .coverage-box,
  .info-card {
    padding: 1.35rem;
  }
}
