@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #f5f7fb;
  --bg-soft: #e8edf7;
  --panel: #ffffff;
  --ink: #0b1220;
  --text: #1f2933;
  --muted: #4b5563;
  --accent: #135ea8;
  --accent-2: #21b579;
  --accent-strong: #0b3f73;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font: "Space Grotesk", "Neue Haas Grotesk", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(135deg, #f8fbff, var(--bg));
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 8px rgba(20, 184, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a,
.drop-trigger {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.drop-trigger:hover {
  color: var(--text);
  background: rgba(19, 94, 168, 0.08);
  transform: translateY(-1px);
}

.dropdown {
  position: relative;
}

.drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.caret {
  font-size: 11px;
  color: var(--muted);
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  min-width: 320px;
  width: min(760px, 90vw);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 30;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(19, 94, 168, 0.08);
  border-color: rgba(19, 94, 168, 0.25);
}

@media (max-width: 720px) {
  .dropdown-menu {
    width: 92vw;
    min-width: 0;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  color: #ffffff;
  background: linear-gradient(120deg, var(--accent), #2b89d0);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(19, 94, 168, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.alt {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(19, 94, 168, 0.35);
}

.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.6;
}

.hero::before {
  background: var(--accent);
  top: -40px;
  left: -120px;
}

.hero::after {
  background: var(--accent-2);
  bottom: -60px;
  right: -120px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.headline {
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.lede {
  color: var(--muted);
  margin: 0 0 26px;
  font-size: 18px;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #e7edf6;
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 14px;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 16px 18px;
  border-radius: var(--radius);
  min-width: 150px;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 26px;
  display: block;
  color: var(--accent);
}

.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.section {
  padding: 40px 0 10px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.section p {
  margin: 0 0 20px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(19, 94, 168, 0.6);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--accent);
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.badge {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(19, 94, 168, 0.12);
  border: 1px solid rgba(19, 94, 168, 0.4);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  align-items: center;
}

.dot-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
}

.contact-banner {
  margin: 50px auto;
  max-width: 1100px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 20% 30%, rgba(19, 94, 168, 0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(33, 181, 121, 0.12), transparent 40%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.contact-banner .grid-two {
  gap: 28px;
}

.footer {
  padding: 40px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 40px;
  background: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.footer small {
  color: #6b7280;
}

.service-hero {
  padding: 70px 0 30px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.service-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.service-layout .card {
  height: 100%;
}

.table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row strong {
  color: var(--text);
}

.table-row span {
  color: var(--muted);
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-nav a {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--muted);
  transition: all 0.2s ease;
}

.mini-nav a:hover,
.mini-nav a.active {
  border-color: rgba(20, 184, 255, 0.6);
  color: var(--text);
  background: rgba(20, 184, 255, 0.1);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-links {
    width: 100%;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 70px;
  }
  .cta {
    width: 100%;
    justify-content: center;
  }
  .stats {
    flex-direction: column;
  }
}
