:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-header: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
  min-height: 100vh;
}

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

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

a {
  color: var(--sky-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--sky-700);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-header);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  min-height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-right: auto;
}

.logo span {
  color: var(--sky-500);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
}

.nav a {
  color: var(--gray-700);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-trigger:hover {
  color: var(--sky-600);
}

.nav-trigger-icon {
  transition: transform 0.2s ease;
}

.nav-trigger[aria-expanded="true"] .nav-trigger-icon {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.2s ease;
  z-index: 10;
}

.dropdown-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dropdown-list a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: var(--gray-700);
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-list a:hover {
  background: var(--sky-50);
  color: var(--sky-600);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.cta {
  background: linear-gradient(135deg, var(--sky-500), var(--sky-600));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: #fff;
}

.nav-close {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}

.nav-close svg {
  width: 20px;
  height: 20px;
}

main {
  margin-top: 72px;
}

.hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.8), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--gray-900);
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin: 0 0 2rem;
  max-width: 56ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--sky-500), var(--sky-600));
  color: #fff;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--sky-600);
  border: 2px solid var(--sky-200);
}

.btn.secondary:hover {
  background: var(--sky-50);
  border-color: var(--sky-300);
  color: var(--sky-700);
}

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

.hero-call {
  padding-inline: 1.25rem;
  border-radius: 999px;
  gap: 0.75rem;
}

.hero-call svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: none;
  background: rgba(14, 165, 233, 0.12);
  border-radius: 999px;
  padding: 0.3rem;
}

.hero-call path {
  fill: var(--sky-500);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stats dt {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sky-500);
}

.stats dd {
  margin: 0;
  color: var(--gray-500);
}

.hero-panel {
  position: relative;
}

.panel-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
}

.panel-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.panel-card li {
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--sky-50);
  color: var(--sky-600);
  font-weight: 600;
}

section {
  padding: 4rem 0;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--sky-500);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-head p {
  max-width: 56ch;
  color: var(--gray-500);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 249, 255, 0.9));
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.coverage {
  background: linear-gradient(135deg, rgba(186, 230, 253, 0.7), rgba(255, 255, 255, 0.9));
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.pill-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-list li {
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.coverage-panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.coverage-panel ol {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.testimonials {
  background: radial-gradient(circle at top left, rgba(186, 230, 253, 0.6), #f0f9ff);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

blockquote {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.5;
}

figure {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.contact {
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 20% auto -10% 60%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.9), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-color: rgba(14, 165, 233, 0.25);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-tags span {
  background: linear-gradient(135deg, var(--sky-600), var(--sky-400));
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-card.compact h4 {
  margin-bottom: 0.25rem;
}

.contact-card.compact p {
  margin: 0;
  color: var(--gray-500);
}

form {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
  display: grid;
  gap: 0.4rem;
}

input,
textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.hidden {
  position: absolute;
  left: -10000px;
}

.site-footer {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-500);
}

.glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -2;
  opacity: 0.5;
  animation: drift 16s ease-in-out infinite;
}

.glow-one {
  top: 10%;
  left: 10%;
  background: rgba(125, 211, 252, 0.7);
}

.glow-two {
  bottom: 5%;
  right: 8%;
  background: rgba(56, 189, 248, 0.6);
  animation-delay: 6s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-40px) translateX(20px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@media (max-width: 720px) {
  .site-header .container {
    gap: 0.75rem;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(4.5rem, 8vh, 6rem) clamp(1.25rem, 5vw, 2.5rem) 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -25px 0 65px rgba(0, 0, 0, 0.2);
    z-index: 25;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav > a,
  .nav .nav-trigger {
    justify-content: space-between;
    width: 100%;
    padding: 0.35rem 0;
  }

  .nav-close {
    display: inline-flex;
  }

  .nav .dropdown-panel {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.02);
    border: none;
    box-shadow: none;
    padding: 0.25rem 0 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.2s ease;
  }

  .nav .dropdown-panel.is-open {
    opacity: 1;
    visibility: visible;
    max-height: 420px;
  }

  .nav .dropdown-list {
    gap: 0.4rem;
  }

  .cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}