* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

::selection {
  background: #67e8f9;
  color: #0f172a;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0ea5e9;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #0f172a;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-card {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.floating-badge {
  position: absolute;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 900;
  color: #0f172a;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(14px);
  animation: bob 5s ease-in-out infinite;
}

.floating-badge:nth-of-type(2) { animation-delay: 0.7s; }
.floating-badge:nth-of-type(3) { animation-delay: 1.2s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section-kicker {
  color: #0ea5e9;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card,
.plan-card,
.review-card,
.trust-card {
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 2rem;
  background: white;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 24px 80px rgba(14, 165, 233, 0.18);
}

.service-card {
  padding: 2rem;
}

.service-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #e0f2fe, #cffafe);
  color: #0284c7;
  font-size: 1.7rem;
  font-weight: 950;
}

.service-card h3,
.plan-card h3 {
  font-size: 1.45rem;
  font-weight: 950;
  color: #0f172a;
}

.service-card p,
.plan-card li {
  margin-top: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

.service-card a,
.plan-card a {
  display: inline-block;
  margin-top: 1.4rem;
  color: #0284c7;
  font-weight: 950;
}

.trust-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.10);
  padding: 1.6rem;
  color: white;
}

.trust-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #67e8f9;
  font-weight: 950;
}

.trust-card strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 950;
}

.trust-card p {
  margin-top: 0.6rem;
  color: #cbd5e1;
}

.plan-card {
  padding: 2rem;
}

.featured-plan {
  position: relative;
  border: 2px solid #0ea5e9;
  transform: scale(1.03);
  box-shadow: 0 24px 80px rgba(14, 165, 233, 0.2);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: #e0f2fe;
  padding: 0.45rem 0.85rem;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.plan-price {
  margin-top: 1rem;
  font-size: 2.35rem;
  font-weight: 950;
  color: #0f172a;
}

.plan-card ul {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.plan-card li::before {
  content: "✓";
  margin-right: 0.6rem;
  color: #0ea5e9;
  font-weight: 950;
}

.check-tab {
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: white;
  padding: 1rem 1.3rem;
  text-align: left;
  font-weight: 950;
  color: #334155;
  transition: all 0.2s ease;
}

.check-tab.active,
.check-tab:hover {
  background: #0f172a;
  color: white;
  border-color: #0f172a;
  transform: translateX(8px);
}

#checklistBox ul {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
}

#checklistBox li {
  color: #475569;
  font-weight: 700;
}

#checklistBox li::before {
  content: "✓";
  margin-right: 0.7rem;
  color: #0ea5e9;
  font-weight: 950;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.review-card p {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.review-card strong {
  display: block;
  margin-top: 1.5rem;
  font-weight: 950;
}

.review-card span {
  color: #94a3b8;
}

.area-pill {
  border-radius: 999px;
  background: #e0f2fe;
  padding: 0.8rem 1.1rem;
  color: #0369a1;
  font-weight: 950;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 2.5rem;
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(14, 165, 233, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff, #e0f2fe);
  background-size: 46px 46px, 46px 46px, auto;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.map-card p {
  position: relative;
  z-index: 2;
  border-radius: 999px;
  background: #0f172a;
  padding: 1rem 1.4rem;
  color: white;
  font-weight: 950;
}

.map-pulse {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 16px rgba(14, 165, 233, 0.15);
  animation: pulse 2.4s infinite;
}

.map-pulse.one { left: 25%; top: 28%; }
.map-pulse.two { right: 22%; top: 44%; animation-delay: .6s; }
.map-pulse.three { left: 48%; bottom: 24%; animation-delay: 1.1s; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.35); }
  70% { box-shadow: 0 0 0 28px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

form label {
  display: grid;
  gap: 0.5rem;
  color: #334155;
  font-weight: 950;
}

form input,
form select,
form textarea {
  width: 100%;
  border: 1px solid #dbeafe;
  border-radius: 1.2rem;
  background: #f8fbff;
  padding: 1rem;
  color: #0f172a;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: .1s; }
.delay-150 { transition-delay: .15s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.delay-400 { transition-delay: .4s; }

.magnetic-btn {
  position: relative;
  overflow: hidden;
}

.magnetic-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.42), transparent);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.magnetic-btn:hover::after {
  transform: translateX(120%);
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }

  .floating-badge {
    display: none;
  }

  .featured-plan {
    transform: none;
  }
}
