/* =========================================================
   MedikVA – Main Stylesheet
   ========================================================= */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --sky: #0284c7;
  --sky-dark: #0369a1;
  --sky-light: #e0f2fe;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
}

/* ── Base ───────────────────────────────────────────────── */
* {
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--slate-900);
  overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
#mainNav {
  transition: all .3s ease;
  padding: 1.25rem 0;
  background: transparent;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, .88) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 16px rgba(0, 0, 0, .07);
  padding: .75rem 0;
}

#mainNav .nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: color .2s;
}

#mainNav .nav-link:hover {
  color: var(--sky);
}

/* Non-scrolled Navbar ONLY on index page (above dark Hero section) */
body.index-page #mainNav:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

body.index-page #mainNav:not(.scrolled) .nav-link:hover {
  color: #38bdf8;
}

/* Logo switching on index page */
body.index-page #mainNav:not(.scrolled) .logo-dark {
  display: none !important;
}

body.index-page #mainNav:not(.scrolled) .logo-light {
  display: inline-block !important;
}

body.index-page #mainNav.scrolled .logo-light {
  display: none !important;
}

body.index-page #mainNav.scrolled .logo-dark {
  display: inline-block !important;
}

body.index-page #mainNav:not(.scrolled) .navbar-toggler i {
  color: #ffffff !important;
}

@media (max-width: 767.98px) {
  body.index-page #mainNav:not(.scrolled) .navbar-collapse {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem;
    border-radius: 16px;
    margin-top: .75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-sky {
  background: var(--sky);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, .25);
  transition: all .2s;
}

.btn-sky:hover,
.btn-sky:focus {
  background: var(--sky-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-dark-pill {
  background: var(--slate-900);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .14);
  transition: all .2s;
}

.btn-dark-pill:hover {
  background: var(--sky);
  color: #fff;
}

.btn-outline-pill {
  background: #fff;
  color: var(--slate-900);
  border: 1.5px solid var(--slate-100);
  font-weight: 700;
  border-radius: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.btn-outline-pill:hover {
  background: var(--slate-50);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero-section {
  padding: 10rem 0 8rem;
  position: relative;
  overflow: hidden;
  background-color: var(--slate-900);
  color: #fff;
}

.hero-orb-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.35), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-orb-2 {
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(56, 189, 248, .8);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.03em;
  color: #ffffff;
  margin-bottom: 1.75rem;
}

.hero-section .hero-title span {
  color: #38bdf8 !important;
}

.hero-section .btn-outline-pill {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.hero-section .btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-image-wrap {
  border-radius: 56px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 48px 80px -16px rgba(0, 0, 0, .5);
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}

.hero-image-wrap:hover img {
  transform: scale(1.04);
}

.hero-float {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  z-index: 10;
  color: #fff;
}

.hero-float.dark {
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-float-top {
  top: -20px;
  right: -30px;
  animation: floatUp 6s ease-in-out infinite;
}

.hero-float-bot {
  bottom: -28px;
  left: -28px;
  animation: floatDown 7s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes floatDown {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(12px)
  }
}

.float-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.avatar-group img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-left: -12px;
  background: var(--slate-50);
}

.avatar-group img:first-child {
  margin-left: 0;
}

/* ── STATS ──────────────────────────────────────────────── */
.stats-section {
  border-top: 1.5px solid var(--slate-100);
  border-bottom: 1.5px solid var(--slate-100);
  background: rgba(248, 250, 252, .5);
  padding: 2.5rem 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  border: 1.5px solid var(--slate-100);
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* ── SERVICES ───────────────────────────────────────────── */
.service-card {
  padding: 1.5rem 1.75rem;
  border-radius: 32px;
  background: #fff;
  border: 1.5px solid var(--slate-100);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all .3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
  cursor: default;
}

.service-card:hover {
  background: rgba(240, 249, 255, .5);
  border-color: rgba(186, 230, 253, .5);
  box-shadow: 0 20px 40px rgba(2, 132, 199, .07);
  transform: translateY(-4px);
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform .3s;
}

.service-card:hover .svc-icon {
  transform: scale(1.1);
}

/* ── BENEFITS ───────────────────────────────────────────── */
.benefits-section {
  background: var(--slate-900);
  color: #fff;
  padding: 6rem 0;
  overflow: hidden;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bimg {
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.exp-badge {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--sky);
  padding: 2rem;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(2, 132, 199, .4);
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.step-card {
  position: relative;
  padding: 2rem;
  border-radius: 40px;
  border: 1.5px solid var(--slate-100);
  transition: all .3s;
  overflow: hidden;
}

.step-card:hover {
  border-color: rgba(186, 230, 253, .6);
  box-shadow: 0 16px 48px rgba(2, 132, 199, .06);
}

.step-bg-num {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  font-weight: 900;
  color: var(--slate-100);
  line-height: 1;
  transition: color .3s;
}

.step-card:hover .step-bg-num {
  color: rgba(224, 242, 254, .9);
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform .3s;
}

.step-card:hover .step-num {
  transform: scale(1.1);
}

/* ── PLATFORM SLIDER (redesigned) ───────────────────────── */
.platform-section {
  padding: 6rem 0;
  background: #ffffff;
  /* Changed from var(--slate-50) */
}

/* Header row: eyebrow left, title centre-left, arrows right */
.platform-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.platform-header-left {
  flex: 1;
}

.platform-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--sky);
  margin-bottom: .75rem;
}

.platform-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--slate-900);
  margin: 0;
}

/* Circular arrow buttons */
.platform-nav {
  display: flex;
  gap: .875rem;
  flex-shrink: 0;
}

.platform-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-200);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate-400);
  font-size: 1rem;
  transition: all .2s;
}

.platform-arrow:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
  box-shadow: 0 8px 20px rgba(2, 132, 199, .2);
}

/* Slide card */
.platform-slide-wrap {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--slate-100);
  /* box-shadow: 0 40px 100px rgba(0, 0, 0, .08); */
  margin: 1rem 0;
}

.platform-slide-wrap img {
  width: 100%;
  height: auto;
  min-height: 600px;
  max-height: 640px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  transition: transform .8s ease;
}

.platform-slide-wrap:hover img {
  transform: scale(1.02);
}

/* Caption overlay at bottom-left of image */
.platform-caption {
  position: absolute;
  bottom: 3.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem;
  z-index: 2;
  text-align: left;
  background-color: rgba(15, 23, 42, 0.5);
}

.platform-caption h4 {
  /* color: #ffffff; */
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: .25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.platform-caption p {
  /* color: rgba(255, 255, 255, 0.9); */
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

/* Bootstrap carousel: hide default controls */
#platformCarousel .carousel-control-prev,
#platformCarousel .carousel-control-next {
  display: none;
}

/* Dot indicators */
.platform-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  /* margin-top: 2rem; */
}

.dot-btn {
  height: 8px;
  border: none;
  border-radius: 4px;
  background: var(--slate-200);
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}

.dot-btn.active {
  width: 32px !important;
  background: var(--sky);
}

.dot-btn:not(.active) {
  width: 8px !important;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.review-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
  border: 1.5px solid rgba(255, 255, 255, .9);
  transition: transform .3s;
}

.review-card:hover {
  transform: scale(1.02);
}

/* ── CTA ────────────────────────────────────────────────── */
.cta-inner {
  background: var(--sky);
  border-radius: 60px;
  padding: 6rem 3rem;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  pointer-events: none;
}

.btn-cta-white {
  background: #fff;
  color: var(--sky);
  font-weight: 800;
  border-radius: 16px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  transition: all .2s;
  cursor: pointer;
}

.btn-cta-white:hover {
  background: var(--slate-50);
}

.btn-cta-ghost {
  background: rgba(3, 105, 161, .5);
  color: #fff;
  border: 1.5px solid rgba(186, 230, 253, .3);
  font-weight: 800;
  border-radius: 16px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  backdrop-filter: blur(8px);
  transition: all .2s;
  cursor: pointer;
}

.btn-cta-ghost:hover {
  background: var(--sky-dark);
  border-color: transparent;
}
a{
  text-decoration: none;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  padding: 6rem 0 3rem;
  border-top: 1.5px solid var(--slate-100);
  background-color: var(--slate-900);

}

.footer-logo-box {
  width: 40px;
  height: 40px;
  background: var(--sky);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  text-decoration: none;
  transition: color .2s;
  font-size: 1rem;
}

.footer-social:hover {
  color: var(--sky);
}

.footer-head {
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 2rem;
  color:#fff;
}

.footer-link {
  color: var(--slate-300);
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: block;
  margin-bottom: 1rem;
}
.copy-link {
  color: var(--sky);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  margin-bottom: 1rem;
}

.footer-link:hover {
  color: #ffffff;
}
.copy-link:hover {
  color: var(--sky);
}

/* ── MODAL ──────────────────────────────────────────────── */
.modal-content {
  border-radius: 40px;
  border: none;
}

.form-ctrl {
  background: var(--slate-50);
  border: 1.5px solid var(--slate-100);
  border-radius: 16px;
  padding: .75rem 1rem;
  font-weight: 500;
  width: 100%;
  outline: none;
  transition: all .2s;
  font-size: .95rem;
}

.form-ctrl:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, .12);
}

.form-lbl {
  font-size: .6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--slate-400);
  display: block;
  margin-bottom: .375rem;
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────── */
.eyebrow {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--sky);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.025em;
}



/* ============================================================
   remote-reception.css
   Companion stylesheet for remote-reception.html
   All design tokens match the original RemoteReceptionPage.tsx
   ============================================================ */

/* ── Base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a; /* slate-900 */
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ── Colour tokens ───────────────────────────────────────────── */
:root {
  --sky-50:  #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --emerald-400: #34d399;

  --rose-50:  #fff1f2;
  --rose-600: #e11d48;

  --indigo-400: #818cf8;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
}

/* ── Spacing helpers (mirrors Tailwind's scale) ──────────────── */
.mb-6  { margin-bottom: 1.5rem !important; }
.mb-8  { margin-bottom: 2rem   !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-12 { margin-bottom: 3rem   !important; }
.mb-16 { margin-bottom: 4rem   !important; }
.mt-8  { margin-top:    2rem   !important; }
.pt-4  { padding-top:   1rem   !important; }
.p-4   { padding:       1rem   !important; }
.p-8   { padding:       2rem   !important; }

/* ── Page wrapper ───────────────────────────────────────────── */
.rr-page {
  padding-top:    6rem;   /* pt-24 */
  /*padding-bottom: 5rem;   !* pb-20 *!*/
}

/* ── Back button ─────────────────────────────────────────────── */
.rr-back-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-500);
  transition: color 0.2s;
}
.rr-back-btn:hover { color: var(--sky-600); }
.rr-back-icon {
  transition: transform 0.2s;
}
.rr-back-btn:hover .rr-back-icon {
  transform: translateX(-4px);
}

/* ── Section spacings ───────────────────────────────────────── */
.pb-hero  { padding: 5rem 5rem; }
.py-section   { padding-top: 5rem; padding-bottom: 5rem; }
.py-section-lg { padding-top: 6rem; padding-bottom: 6rem; }

/* ── Decorative glows ───────────────────────────────────────── */
.rr-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.rr-glow--right {
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: rgba(224, 242, 254, 0.6); /* sky-50/60 */
  filter: blur(120px);
  transform: translate(33%, -25%);
}
.rr-glow--left {
  top: 50%; left: 0;
  width: 400px; height: 400px;
  background: rgba(219, 234, 254, 0.4); /* blue-50/40 */
  filter: blur(100px);
  transform: translate(-33%, -50%);
}

/* ── Entry animations ───────────────────────────────────────── */
.rr-fade-in {
  animation: fadeInUp 0.6s ease both;
}
.rr-fade-in-scale {
  animation: fadeInScale 0.7s 0.2s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Badge pills ────────────────────────────────────────────── */
.rr-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.rr-badge-pill--sky {
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--sky-700);
}
.rr-badge-pill--sky-dark {
  background: rgba(14, 165, 233, 0.2);
  color: var(--sky-300);
  border: none;
}

/* ── Hero typography ─────────────────────────────────────────── */
.rr-hero-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.rr-text-sky  { color: var(--sky-600); }
.rr-text-sky400 { color: var(--sky-400); }
.rr-text-rose { color: var(--rose-600); }
.rr-text-slate300 { color: #cbd5e1; }
.rr-text-slate400 { color: var(--slate-400); }
.rr-text-emerald  { color: var(--emerald-400); }

.rr-hero-sub {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.7;
  font-weight: 400;
  max-width: 40rem;
}

/* ── Primary CTA button ─────────────────────────────────────── */
.rr-btn-primary {
  padding: 1rem 2rem;
  background: var(--slate-900);
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(148,163,184,0.25);
  transition: background 0.2s, transform 0.1s;
}
.rr-btn-primary:hover { background: var(--sky-600); }
.rr-btn-primary:active { transform: scale(0.98); }

.rr-chevron-icon {
  transition: transform 0.2s;
}
.rr-btn-primary:hover .rr-chevron-icon { transform: translateX(4px); }

/* ── Trust row ──────────────────────────────────────────────── */
.rr-trust-row {
  border-top: 1px solid var(--slate-100);
}
.rr-trust-item {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Stats card (dark) ───────────────────────────────────────── */
.rr-stats-card {
  background: var(--slate-900);
  border: 8px solid var(--slate-100);
  border-radius: 36px !important;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.rr-rounded-card { border-radius: 36px !important; }

.rr-stats-card-header {
  border-bottom: 1px solid var(--slate-800);
}
.rr-stats-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.rr-stats-sub {
  font-size: 0.75rem;
  font-weight: 500;
}

/* ── Status pill (Active / pulsing dot) ─────────────────────── */
.rr-status-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(52, 211, 153, 0.2);
  color: var(--emerald-400);
  font-size: 0.75rem;
  font-weight: 700;
}
.rr-pulse-dot {
  display: inline-block;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--emerald-400);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ── Stat rows ──────────────────────────────────────────────── */
.rr-stat-row {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(30,41,59,0.8); /* slate-800/80 */
  border: 1px solid rgba(51,65,85,0.6); /* slate-700/60 */
}
.rr-stat-label {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 500;
}
.rr-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.125rem;
}
.rr-stat-value--emerald { color: var(--emerald-400) !important; }

/* ── System badges (inside stats card) ─────────────────────── */
.rr-sys-badge {
  padding: 0.125rem 0.5rem;
  background: var(--slate-700);
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #cbd5e1;
}

/* ── Sparkle note ───────────────────────────────────────────── */
.rr-sparkle-note {
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(to right, rgba(2,132,199,0.3), rgba(79,70,229,0.3));
  border: 1px solid rgba(14,165,233,0.3);
}
.rr-sparkle-text {
  font-size: 0.75rem;
  color: #cbd5e1;
  line-height: 1.4;
  font-weight: 500;
}

/* ── Section eyebrow / heading ──────────────────────────────── */
.rr-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky-600);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.rr-section-heading {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.rr-section-heading-lg {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.rr-section-sub {
  font-size: 1.0625rem;
  color: var(--slate-500);
  font-weight: 400;
}

/* ── Background / border utilities ─────────────────────────── */
.rr-bg-slate50  { background: var(--slate-50); }
.rr-bg-slate900 { background: var(--slate-900); }
.rr-border-y {
  border-top:    1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

/* ── Hover lift effects ─────────────────────────────────────── */
.rr-hover-lift {
  transition: transform 0.25s ease;
}
.rr-hover-lift:hover { transform: translateY(-4px); }

.rr-hover-lift-lg {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.rr-hover-lift-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(186,230,253,0.5) !important;
  border-color: var(--sky-600) !important;
}

.rr-hover-scale {
  transition: transform 0.3s ease;
}
.rr-hover-scale:hover { transform: scale(1.005); }

/* ── Overview cards ─────────────────────────────────────────── */
.rr-card {
  padding: 2.5rem;
  border-radius: 2rem;
}
.rr-card--light {
  background: #fff;
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.rr-card--dark {
  background: var(--slate-900);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.rr-card-glow {
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  background: rgba(14,165,233,0.1);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}
.rr-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.rr-card-title--white { color: #fff !important; }
.rr-card-body-text {
  color: var(--slate-600);
  line-height: 1.7;
  font-weight: 400;
}
.rr-card-footer {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rr-card-footer--border-light { border-top: 1px solid var(--slate-100); }
.rr-card-footer--border-dark  { border-top: 1px solid var(--slate-800); }

/* ── Icon boxes ─────────────────────────────────────────────── */
.rr-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
.rr-icon-box--sky-dim {
  width: 2.5rem; height: 2.5rem;
  background: rgba(14,165,233,0.2);
}
.rr-icon-box--rose {
  width: 3rem; height: 3rem;
  background: var(--rose-50);
}

/* ── Icon colours ───────────────────────────────────────────── */
.rr-icon-sky     { color: var(--sky-600) !important; stroke: var(--sky-600) !important; }
.rr-icon-sky300  { color: var(--sky-300) !important; stroke: var(--sky-300) !important; }
.rr-icon-sky400  { color: var(--sky-400) !important; stroke: var(--sky-400) !important; }
.rr-icon-emerald { color: var(--emerald-400) !important; stroke: var(--emerald-400) !important; }
.rr-icon-rose    { color: var(--rose-600)   !important; stroke: var(--rose-600) !important; }
.rr-icon-indigo  { color: var(--indigo-400) !important; stroke: var(--indigo-400) !important; }

/* ── Icon sizes ─────────────────────────────────────────────── */
.rr-icon-xs { width: 1rem;    height: 1rem;    flex-shrink: 0; }
.rr-icon-sm { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.rr-icon-md { width: 1.5rem;  height: 1.5rem;  flex-shrink: 0; }
.rr-icon-lg { width: 1.75rem; height: 1.75rem; flex-shrink: 0; }

/* ── Capability cards ───────────────────────────────────────── */
.rr-cap-card {
  padding: 2rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.rr-cap-icon-box {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: var(--sky-50);
  color: var(--sky-600);
  stroke: var(--sky-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.rr-cap-icon-box--active {
  background: var(--sky-600) !important;
  color: #fff !important;
  stroke: #fff !important;
}
.rr-cap-icon-box--active svg { stroke: #fff !important; }

.rr-cap-badge {
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.75rem;
  font-weight: 700;
}
.rr-cap-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.rr-cap-title--hover { color: var(--sky-600) !important; }
.rr-cap-body {
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}
.rr-cap-footer {
  border-top: 1px solid var(--slate-100);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Integration banner ─────────────────────────────────────── */
.rr-integration-banner {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--slate-50);
  border: 1px solid rgba(226,232,240,0.6);
}
.rr-integration-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
}
.rr-integration-sub {
  font-size: 0.875rem;
  color: var(--slate-500);
  font-weight: 400;
}
.rr-int-badge {
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  color: var(--slate-800);
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* ── Why UK section glow ────────────────────────────────────── */
.rr-section-glow {
  position: absolute;
  top: 0; right: 25%;
  width: 500px; height: 500px;
  background: rgba(14,165,233,0.1);
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

/* ── Why UK heading / body ──────────────────────────────────── */
.rr-why-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.rr-why-body {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
}

/* ── Benefit cards ──────────────────────────────────────────── */
.rr-benefit-card {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(30,41,59,0.8);
  border: 1px solid rgba(51,65,85,0.8);
}
.rr-benefit-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.125rem;
}
.rr-benefit-sub {
  font-size: 0.75rem;
  color: var(--slate-400);
}

/* ── Guarantee card ─────────────────────────────────────────── */
.rr-guarantee-card {
  border-radius: 2.25rem;
  background: rgba(30,41,59,0.9);
  border: 1px solid var(--slate-700);
}
.rr-guarantee-icon {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  background: var(--sky-600);
  box-shadow: 0 10px 25px rgba(2,132,199,0.3);
}
.rr-guarantee-sub {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-weight: 400;
}

/* ── Progress bar ───────────────────────────────────────────── */
.rr-progress-box {
  border-radius: 1rem;
  background: rgba(15,23,42,0.8); /* slate-900/80 */
}
.rr-progress-label-row { font-size: 0.75rem; }
.rr-progress-track {
  width: 100%;
  height: 0.5rem;
  background: var(--slate-800);
  border-radius: 9999px;
  overflow: hidden;
}
.rr-progress-fill {
  height: 100%;
  background: var(--emerald-400);
  border-radius: 9999px;
}

/* ── Sky button ─────────────────────────────────────────────── */
.rr-btn-sky {
  padding: 0 1.5rem;
  height: 3.5rem;
  background: var(--sky-600);
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(2,132,199,0.2);
  transition: background 0.2s;
}
.rr-btn-sky:hover { background: var(--sky-500); }

/* ── CTA section ────────────────────────────────────────────── */
.rr-cta-box {
  padding: 3.5rem;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, var(--sky-600), var(--indigo-700));
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  color: #fff;
}
@media (min-width: 576px) {
  .rr-cta-box { padding: 3.5rem; }
}
.rr-cta-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}
.rr-cta-eyebrow {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: #bae6fd;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}
.rr-cta-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.rr-cta-sub {
  color: #bae6fd;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
}
.rr-btn-cta {
  padding: 1.25rem 2.5rem;
  background: #fff;
  color: var(--slate-900);
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.1s;
}
.rr-btn-cta:hover { background: var(--slate-100); }
.rr-btn-cta:active { transform: scale(0.95); }

/* ============================================================
   Live Service Matrix card
   ============================================================ */

/* ── Colour tokens needed for matrix ─────────────────────── */
:root {
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;

  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;

  --emerald-300: #6ee7b7;
  --emerald-500: #10b981;
}

/* ── Outer card shell ────────────────────────────────────── */
.rr-matrix-card {
  padding: 1.5rem 2rem;
  border-radius: 2rem;                /* rounded-[32px] */
  background: var(--slate-900);
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
  border: 1px solid var(--slate-800);
  position: relative;
  overflow: hidden;
}

/* ── Header row ──────────────────────────────────────────── */
.rr-matrix-header {
  border-bottom: 1px solid var(--slate-800);
}
.rr-matrix-header-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-300);
}
.rr-matrix-badge {
  font-size: 0.625rem;        /* text-[10px] */
  font-family: ui-monospace, 'Cascadia Code', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: var(--slate-800);
  color: var(--sky-400);
  border: 1px solid var(--slate-700);
}

/* ── Module row (shared) ─────────────────────────────────── */
.rr-module-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 1rem;              /* rounded-2xl */
  background: rgba(30,41,59,0.6);  /* slate-800/60 */
  border: 1px solid rgba(51,65,85,0.6); /* slate-700/60 */
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}
.rr-module-row:hover {
  background: var(--slate-800);
  border-color: rgba(14,165,233,0.5); /* sky-500/50 */
}
/* Module 1 is an <a> tag – reset anchor look */
a.rr-module-row { cursor: pointer; }

/* ── Module icon boxes ───────────────────────────────────── */
.rr-module-icon {
  padding: 0.625rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.rr-module-row:hover .rr-module-icon { transform: scale(1.05); }

.rr-module-icon--sky     { background: rgba(14,165,233,0.1);  color: var(--sky-400);     stroke: var(--sky-400); }
.rr-module-icon--indigo  { background: rgba(99,102,241,0.1);  color: var(--indigo-400);  stroke: var(--indigo-400); }
.rr-module-icon--emerald { background: rgba(16,185,129,0.1);  color: var(--emerald-400); stroke: var(--emerald-400); }
.rr-module-icon--purple  { background: rgba(168,85,247,0.1);  color: var(--purple-400);  stroke: var(--purple-400); }

/* ── Module title ────────────────────────────────────────── */
.rr-module-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
  line-height: 1.3;
}
.rr-module-row:hover .rr-module-title--sky     { color: var(--sky-300); }
.rr-module-row:hover .rr-module-title--indigo  { color: var(--indigo-300); }
.rr-module-row:hover .rr-module-title--emerald { color: var(--emerald-300); }
.rr-module-row:hover .rr-module-title--purple  { color: var(--purple-300); }

/* ── Module subtitle ─────────────────────────────────────── */
.rr-module-sub {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 400;
  margin-top: 0.125rem;
}

/* ── Chevron (Module 1) ──────────────────────────────────── */
.rr-module-chevron {
  color: var(--slate-500);
  transition: color 0.2s, transform 0.2s;
  stroke: var(--slate-500);
}
.rr-module-row:hover .rr-module-chevron {
  color: var(--sky-400);
  stroke: var(--sky-400);
  transform: translateX(2px);
}

/* ── Module tags (right-side pill/badge) ─────────────────── */
.rr-module-tag {
  font-size: 0.625rem;    /* text-[10px] */
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.rr-module-tag--emerald {
  color: var(--emerald-400);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
}
.rr-module-tag--sky {
  color: var(--sky-400);
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
}
.rr-module-tag--purple {
  color: var(--purple-300);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
}

/* ── Matrix footer ───────────────────────────────────────── */
.rr-matrix-footer {
  border-top: 1px solid var(--slate-800);
}
.rr-matrix-footer-text {
  font-size: 0.6875rem;   /* text-[11px] */
  font-weight: 500;
  color: var(--slate-400);
}
.rr-matrix-audit-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--sky-400);
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: text-decoration 0.15s;
}
.rr-matrix-audit-btn:hover { text-decoration: underline; }
.rr-matrix-audit-btn i { stroke: var(--sky-400);
}
.bi {
  font-size: 20px;
  width: 24px;
  height: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.table>:not(caption)>*>*{
  background-color: transparent;
  padding: 1rem;
}
.sp-th{
  color: #ffffff;
}