:root {
  --rk-navy-950: #081225;
  --rk-navy-900: #10213f;
  --rk-blue-700: #2251d1;
  --rk-blue-600: #2d63ef;
  --rk-cyan-500: #10b5d8;
  --rk-slate-800: #1e293b;
  --rk-slate-700: #334155;
  --rk-slate-500: #64748b;
  --rk-slate-100: #f1f5f9;
  --rk-slate-50: #f8fafc;
  --rk-success-600: #16a34a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--rk-slate-700);
  background:
    radial-gradient(circle at 4% 0%, #e0f2fe 0%, rgba(224, 242, 254, 0.2) 32%, transparent 52%),
    radial-gradient(circle at 100% 10%, #dbeafe 0%, rgba(219, 234, 254, 0.18) 30%, transparent 50%),
    var(--rk-slate-50);
}

.heading-font {
  font-family: "Sora", sans-serif;
}

.hero-bg {
  background:
    linear-gradient(112deg, rgba(8, 18, 37, 0.95), rgba(16, 33, 63, 0.88) 48%, rgba(34, 81, 209, 0.7)),
    url("hero image.png")
      center/cover no-repeat;
}

.service-hero-bg {
  background:
    linear-gradient(118deg, rgba(9, 19, 40, 0.94), rgba(16, 33, 63, 0.82)),
    url("hero image.png")
      center/cover no-repeat;
}

.subtle-grid {
  background-image:
    linear-gradient(to right, rgba(100, 116, 139, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(100, 116, 139, 0.09) 1px, transparent 1px);
  background-size: 32px 32px;
}

.surface-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 8px 30px -22px rgba(15, 23, 42, 0.65);
}

.surface-card-soft {
  border: 1px solid #dbeafe;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 28px -20px rgba(30, 64, 175, 0.35);
}

.lift-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.lift-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 18px 44px -28px rgba(15, 23, 42, 0.65);
}

.stat-pill {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.step-dot {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(145deg, var(--rk-blue-600), var(--rk-cyan-500));
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--rk-blue-700);
}

.reveal {
  animation: reveal-up 0.6s ease both;
}

.logo-badge {
  border: 1px solid #1e293b;
  border-radius: 0.8rem;
  background: #000000;
  padding: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-badge img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0.45rem;
}

.thumb-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0.8rem;
  background: #f1f5f9;
}

.thumb-landscape {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 0.8rem;
  background: #f1f5f9;
}

.mobile-sticky-cta {
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

.floating-mobile-call {
  position: fixed;
  right: 0.9rem;
  bottom: 5.9rem;
  z-index: 60;
}

@media (max-width: 640px) {
  .surface-card,
  .surface-card-soft {
    border-radius: 0.85rem;
  }

  .section-eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.07em;
  }

  .hero-bg h1,
  .service-hero-bg h1 {
    font-size: 1.9rem;
    line-height: 1.22;
  }

  .hero-bg {
    background:
      linear-gradient(112deg, rgba(8, 18, 37, 0.8), rgba(16, 33, 63, 0.72) 50%, rgba(34, 81, 209, 0.58)),
      url("hero image.png") center top/cover no-repeat;
  }

  .service-hero-bg {
    background:
      linear-gradient(118deg, rgba(9, 19, 40, 0.82), rgba(16, 33, 63, 0.72)),
      url("hero image.png") center top/cover no-repeat;
  }

  .thumb-square {
    max-width: 250px;
    margin-inline: auto;
  }

  .thumb-landscape {
    aspect-ratio: 16 / 10;
  }

  .floating-mobile-call {
    right: 0.75rem;
    bottom: 5.6rem;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
