:root {
  --bg: #ffffff;
  --text: #142033;
  --muted: #5f6f86;
  --line: #e7edf5;
  --soft: #f6f9fc;
  --soft-2: #eef4fb;
  --primary: #1b5fa7;
  --primary-dark: #144b83;
  --accent: #1f8f7a;
  --shadow: 0 18px 45px rgba(16, 41, 77, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 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% - 32px));
  margin: 0 auto;
}

.narrow { width: min(820px, calc(100% - 32px)); }
.center { text-align: center; }

.topbar {
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  color: var(--muted);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 237, 245, 0.9);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}
.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  color: var(--muted);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(27, 95, 167, 0.22);
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}
.btn-outline {
  background: #fff;
  border-color: var(--line);
}
.btn.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
  background:
    radial-gradient(circle at top left, rgba(27,95,167,0.10), transparent 38%),
    radial-gradient(circle at right center, rgba(31,143,122,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,95,167,0.08), rgba(31,143,122,0.05));
}
.hero::before {
  width: 320px;
  height: 320px;
  right: -100px;
  top: 40px;
}
.hero::after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 10px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.hero h1 {
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1;
  margin: 18px 0 18px;
}
.hero-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-points li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 600;
}
.hero-card-wrap { position: relative; }
.hero-card,
.contact-card,
.panel,
.area-box,
.service-card,
.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  background: rgba(31,143,122,0.10);
  color: var(--accent);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.hero-card h3 {
  font-size: 28px;
  margin: 0 0 12px;
}
.hero-card p,
.info-panel p,
.contact-copy p,
.panel p,
.service-card p,
.intro p,
.section-head p { color: var(--muted); }
.phone-pill {
  margin-top: 18px;
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 700;
}
.info-panel {
  margin-top: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 800;
  flex: 0 0 auto;
}
.floating-card {
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.section {
  padding: 82px 0;
}
.intro h2,
.services h2,
.areas h2,
.contact-section h2,
.split-section h2 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  margin: 16px 0 14px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -35px -35px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(27,95,167,0.05);
}
.service-card.highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}
.service-number {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.service-card h3,
.area-box h3,
.panel h2 {
  margin-top: 0;
}
.split-section {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.panel {
  padding: 32px;
}
.panel.accent {
  background: linear-gradient(180deg, #ffffff 0%, #f2fbf9 100%);
}
.feature-list,
.area-box ul {
  margin: 18px 0 0;
  padding-left: 20px;
}
.feature-list li,
.area-box li {
  margin-bottom: 10px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.area-box {
  padding: 28px;
}
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.contact-card {
  padding: 30px;
}
.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-of-type {
  margin-bottom: 16px;
}
.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}
.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 38px;
  color: var(--muted);
}
.footer strong { color: var(--text); }
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(20,75,131,0.25);
}

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

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .areas-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .section-head,
  .footer-inner,
  .topbar-inner,
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 42px; }
  .section { padding: 64px 0; }
  .hero-card,
  .contact-card,
  .panel,
  .area-box,
  .service-card { padding: 22px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .nav-actions { width: 100%; flex-wrap: wrap; }
}
