/* ============================================================
   Klinic Suite — Main Stylesheet
   Made by - Mukund Jha using Claude Code
   Technologies: CSS3, Bootstrap 5 (companion)
   Fonts: Manrope, Inter (Google Fonts)
   ============================================================ */

/* --- Google Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap");

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary: #1565c0;
  --primary-dark: #0d47a1;
  --primary-light: #1976d2;
  --secondary: #00897b;
  --secondary-dark: #00695c;
  --accent: #43a047;
  --purple: #5c35c5;
  --purple-dark: #4527a0;

  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f6fb;
  --gray-200: #eef2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;

  --text-dark: #1a202c;
  --text-body: #2d3748;
  --text-muted: #718096;
  --text-light: #a0aec0;

  --border: #e2e8f0;
  --border-light: #f0f4f8;

  --shadow-sm: 0 2px 8px rgba(21, 101, 192, 0.08);
  --shadow: 0 4px 20px rgba(21, 101, 192, 0.1);
  --shadow-md: 0 8px 32px rgba(21, 101, 192, 0.12);
  --shadow-lg: 0 16px 48px rgba(21, 101, 192, 0.16);
  --shadow-hover: 0 12px 40px rgba(21, 101, 192, 0.2);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  --grad-secondary: linear-gradient(135deg, #00897b 0%, #26a69a 100%);
  --grad-purple: linear-gradient(135deg, #5c35c5 0%, #7b52d3 100%);
  --grad-hero: linear-gradient(135deg, #ebf4ff 0%, #e0f2fe 40%, #e8fff9 100%);
  --grad-dark: linear-gradient(135deg, #0d47a1 0%, #00695c 100%);
  --grad-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
}

/* ============================================================
   BASE & RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", "Manrope", sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Bootstrap rows with larger gutters (g-4/g-5) bleed past the viewport edge
   on mobile because their negative margins exceed the container's default
   padding. Clipping at the section level fixes this without touching the
   sticky navbar (which lives outside all <section> elements). */
section {
  /* clip (not hidden) avoids the CSS overflow-value fixup that would force
     overflow-y:auto here too, which breaks position:sticky descendants
     (e.g. the legal page's table-of-contents sidebar). */
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

p {
  color: var(--text-body);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--primary-dark);
}

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-teal {
  background: var(--grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-full {
  color: #2dd4bf;
}

/* "+" mark in product names like Klinic Grow+ / Klinic Pro+ — sized up
   slightly for emphasis, matching the brand's spoken-word style. */
.k-plus {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 800;
  line-height: 1;
  vertical-align: -0.03em;
}

.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

.text-primary-custom {
  color: var(--primary) !important;
}
.text-teal {
  color: var(--secondary) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.text-purple {
  color: var(--purple) !important;
}

/* ============================================================
   SECTION SPACING & LAYOUT
   ============================================================ */
.section-padding {
  padding: 96px 0;
}
.section-padding-sm {
  padding: 64px 0;
}
.section-padding-lg {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 60px;
}
.section-header.text-center {
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-badge.teal {
  background: rgba(0, 137, 123, 0.08);
  color: var(--secondary);
}
.section-badge.purple {
  background: rgba(92, 53, 197, 0.08);
  color: var(--purple);
}
.section-badge.green {
  background: rgba(67, 160, 71, 0.08);
  color: var(--accent);
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-light-custom {
  background: var(--gray-100);
}
.bg-white {
  background: var(--white);
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */
#mainNavbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  z-index: 1050;
  transition: var(--transition);
}

#mainNavbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(21, 101, 192, 0.12);
  border-bottom-color: var(--border);
}

.navbar-brand {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.navbar-brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-klinic {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-konnect {
  background: var(--grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body) !important;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--primary) !important;
  background: rgba(21, 101, 192, 0.06);
}

.nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.btn-demo {
  background: var(--grad-primary) !important;
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.3);
  transition: var(--transition);
  text-decoration: none;
}

.btn-demo:hover {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%) !important;
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.navbar-toggler {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 15px;
  vertical-align: middle;
}
.navbar-toggler-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--text-dark);
  transition:
    transform 0.3s ease,
    opacity 0.2s ease,
    top 0.3s ease;
}
.navbar-toggler-bar-top {
  top: 0;
}
.navbar-toggler-bar-middle {
  top: 6.5px;
}
.navbar-toggler-bar-bottom {
  top: 13px;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-bar-top {
  top: 6.5px;
  transform: rotate(45deg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-bar-middle {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-bar-bottom {
  top: 6.5px;
  transform: rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-gradient {
  background: var(--grad-primary);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary-gradient:hover {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.4);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-teal-gradient {
  background: var(--grad-secondary);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 137, 123, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-teal-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 137, 123, 0.4);
  color: var(--white);
}

.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: var(--primary-dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.07) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 137, 123, 0.06) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-badge i {
  color: var(--accent);
  font-size: 16px;
}

/* ============================================================
   DASHBOARD MOCKUP
   ============================================================ */
.dashboard-mockup-wrap {
  position: relative;
  padding: 20px;
}

.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 60px rgba(21, 101, 192, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.dashboard-mockup-wrap .floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  border: 1px solid var(--border);
  z-index: 3;
  font-size: 13px;
  font-weight: 600;
}

.floating-card.card-left {
  left: -10px;
  bottom: 60px;
  min-width: 160px;
}

.floating-card.card-right {
  right: -10px;
  top: 60px;
  min-width: 140px;
}

.db-header {
  background: var(--grad-primary);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.db-header-title {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.db-dots {
  display: flex;
  gap: 6px;
}
.db-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.db-dots .dot-r {
  background: #ff5f56;
}
.db-dots .dot-y {
  background: #ffbd2e;
}
.db-dots .dot-g {
  background: #27c93f;
}

.db-body {
  padding: 16px;
}

.db-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.db-stat-card {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
}

.db-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  line-height: 1;
  margin-bottom: 3px;
}

.db-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.db-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.db-patient-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  transition: var(--transition-fast);
}

.db-patient-row:hover {
  background: var(--gray-100);
}

.db-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.db-patient-info {
  flex: 1;
  min-width: 0;
}
.db-patient-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-patient-time {
  font-size: 11px;
  color: var(--text-muted);
}

.db-status-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.status-confirmed {
  background: rgba(67, 160, 71, 0.12);
  color: var(--accent);
}
.status-waiting {
  background: rgba(255, 152, 0, 0.12);
  color: #f57c00;
}
.status-done {
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
}

.db-chart-area {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 10px;
}

.db-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-bottom: 6px;
}

.db-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--grad-primary);
  opacity: 0.7;
  transition: var(--transition);
  min-width: 6px;
}
.db-bar:hover {
  opacity: 1;
}

.db-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--grad-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  margin: auto;
}

/* ============================================================
   PROBLEM CARDS
   ============================================================ */
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--secondary);
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.problem-card:hover .problem-icon {
  background: var(--primary);
  color: var(--white);
}

.problem-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   SOLUTION / ECOSYSTEM CARDS
   ============================================================ */
.solution-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transition: var(--transition);
}

.solution-card.teal::before {
  background: var(--grad-secondary);
}
.solution-card.purple::before {
  background: var(--grad-purple);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.solution-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 24px;
  background: var(--grad-primary);
}

.solution-card.teal .solution-card-icon {
  background: var(--grad-secondary);
}
.solution-card.purple .solution-card-icon {
  background: var(--grad-purple);
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.solution-card-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.solution-card.teal .solution-card-tagline {
  color: var(--secondary);
}
.solution-card.purple .solution-card-tagline {
  color: var(--purple);
}

.solution-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.solution-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
  font-weight: 500;
  padding: 5px 0;
}

.solution-features li i {
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(21, 101, 192, 0.2);
}

.feature-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--transition);
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary);
}

.feature-card:hover .feature-card-icon {
  background: var(--grad-primary);
  color: var(--white);
}

.feature-card.teal .feature-card-icon {
  background: rgba(0, 137, 123, 0.08);
  color: var(--secondary);
}
.feature-card.teal:hover .feature-card-icon {
  background: var(--grad-secondary);
  color: var(--white);
}
.feature-card.purple .feature-card-icon {
  background: rgba(92, 53, 197, 0.08);
  color: var(--purple);
}
.feature-card.purple:hover .feature-card-icon {
  background: var(--grad-purple);
  color: var(--white);
}

.feature-card h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   SERVICE CARDS (Services Overview Page)
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-header {
  padding: 32px 28px 24px;
  background: var(--grad-primary);
  position: relative;
}

.service-card-header.teal {
  background: var(--grad-secondary);
}
.service-card-header.purple {
  background: var(--grad-purple);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card-header h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.service-card-category {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.service-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
  flex: 1;
}

.service-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-body);
  font-weight: 500;
}

.service-features li i {
  color: var(--accent);
  font-size: 12px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  width: fit-content;
}

.btn-learn-more:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(3px);
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-it-works {
  background: var(--gray-100);
}

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  width: 68px;
  height: 68px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.3);
  font-family: "Manrope", sans-serif;
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 54px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0,
    var(--primary) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.3;
  z-index: 1;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(21, 101, 192, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--primary);
}

.step-card h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-text {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: "\201C";
  font-size: 60px;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: -8px;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-clinic {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--grad-dark);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.06) 0%,
    transparent 65%
  );
  border-radius: 50%;
}

.page-hero .breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--primary);
  font-weight: 500;
}
.breadcrumb-item.active {
  color: var(--text-muted);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.page-hero .lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 20px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
  border-bottom: 2px solid var(--border);
}

.comparison-table th:first-child {
  text-align: left;
  min-width: 200px;
  background: var(--gray-50);
}

.comparison-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  vertical-align: middle;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-body);
  background: var(--gray-50);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(21, 101, 192, 0.03);
}
.comparison-table tr:hover td:first-child {
  background: var(--gray-100);
}

.check-icon {
  color: var(--accent);
  font-size: 18px;
}
.dash-icon {
  color: var(--gray-400);
  font-size: 18px;
}

.pkg-header {
  background: var(--grad-primary) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: 20px 16px !important;
}

.pkg-header.teal {
  background: var(--grad-secondary) !important;
}
.pkg-header.purple {
  background: var(--grad-purple) !important;
}
.pkg-header.featured {
  background: linear-gradient(135deg, #0d47a1 0%, #00695c 100%) !important;
}
.pkg-header.premium {
  background: linear-gradient(135deg, #4527a0 0%, #0d47a1 100%) !important;
}

.pkg-header h6 {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 0;
}

.pkg-header small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--primary);
  box-shadow:
    0 0 0 3px rgba(21, 101, 192, 0.1),
    var(--shadow-md);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grad-primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}

.package-badge.gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.package-card-header {
  margin-bottom: 24px;
}

.package-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  background: var(--grad-primary);
  margin-bottom: 16px;
}

.package-icon.teal {
  background: var(--grad-secondary);
}
.package-icon.purple {
  background: var(--grad-purple);
}
.package-icon.dark {
  background: var(--grad-dark);
}
.package-icon.premium {
  background: linear-gradient(135deg, #4527a0 0%, #0d47a1 100%);
}

.package-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.package-card .package-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.package-includes {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
}

.package-includes li i {
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
}

/* ============================================================
   PRICING BUILDER
   ============================================================ */
.builder-section {
  background: var(--gray-100);
}

.builder-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.builder-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.builder-step-num {
  width: 36px;
  height: 36px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
}

.builder-step-header h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.option-card {
  background: var(--gray-50);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.option-card:hover {
  border-color: var(--primary);
  background: rgba(21, 101, 192, 0.04);
}

.option-card.selected {
  border-color: var(--primary);
  background: rgba(21, 101, 192, 0.06);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.option-card input[type="checkbox"],
.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition-fast);
  font-size: 12px;
  color: transparent;
}

.option-card.radio-style .option-check {
  border-radius: 50%;
}

.option-card.selected .option-check {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.option-card h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.option-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  margin-bottom: 6px;
}

.option-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.option-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.option-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  border-radius: 20px;
}

.addon-card {
  opacity: 1;
  transition: var(--transition);
}
.addon-card.included-in-package {
  opacity: 0.45;
  pointer-events: none;
}
.addon-card.included-in-package::after {
  content: "Included";
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Price Summary Panel */
.price-summary-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}

.price-summary-panel h5 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

#empty-state {
  text-align: center;
  padding: 24px 0;
  color: var(--text-muted);
  font-size: 14px;
}

#empty-state i {
  font-size: 36px;
  color: var(--gray-300);
  margin-bottom: 12px;
  display: block;
}

.selected-item-row {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

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

.item-name {
  color: var(--text-body);
}
.item-price {
  color: var(--primary);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.total-divider {
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  margin: 16px 0;
}

#total-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  display: block;
  margin-bottom: 4px;
}

.total-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-vision-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.mission-vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mv-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 28px;
}

.mv-icon.blue {
  background: var(--grad-primary);
}
.mv-icon.teal {
  background: var(--grad-secondary);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 18px;
  background: var(--grad-primary);
}

.team-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.team-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}

.form-floating > .form-control,
.form-floating > .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.form-floating > label {
  color: var(--text-muted);
  font-size: 14.5px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

#successMessage {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

#successMessage .success-icon {
  width: 80px;
  height: 80px;
  background: rgba(67, 160, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--accent);
  margin: 0 auto 24px;
}

/* ============================================================
   ANIMATIONS & TRANSITIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.animate-fade.is-visible {
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
}
.service-hero.blue {
  background: linear-gradient(135deg, #ebf4ff 0%, #dbeafe 50%, #e0f2fe 100%);
}
.service-hero.teal {
  background: linear-gradient(135deg, #e6faf8 0%, #ccfbf1 50%, #e0f2fe 100%);
}
.service-hero.purple {
  background: linear-gradient(135deg, #ede9fe 0%, #e0d7fc 50%, #eef2ff 100%);
}

.service-hero-icon {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 28px;
  background: var(--grad-primary);
}

.service-hero-icon.teal {
  background: var(--grad-secondary);
}
.service-hero-icon.purple {
  background: var(--grad-purple);
}

.metric-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.metric-value {
  font-size: 36px;
  font-weight: 900;
  font-family: "Manrope", sans-serif;
  color: var(--primary);
  margin-bottom: 6px;
}

.metric-card.teal .metric-value {
  color: var(--secondary);
}
.metric-card.purple .metric-value {
  color: var(--purple);
}

.metric-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.workflow-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.workflow-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.workflow-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
}

.workflow-step-num.teal {
  background: var(--grad-secondary);
}
.workflow-step-num.purple {
  background: var(--grad-purple);
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.divider-gradient {
  height: 3px;
  background: var(--grad-primary);
  border-radius: 3px;
  width: 60px;
  margin: 16px 0;
}

.divider-gradient.center {
  margin: 16px auto;
}
.divider-gradient.teal {
  background: var(--grad-secondary);
}
.divider-gradient.purple {
  background: var(--grad-purple);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-pill-custom {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
}

.badge-pill-custom.teal {
  background: rgba(0, 137, 123, 0.1);
  color: var(--secondary);
}
.badge-pill-custom.purple {
  background: rgba(92, 53, 197, 0.1);
  color: var(--purple);
}
.badge-pill-custom.green {
  background: rgba(67, 160, 71, 0.1);
  color: var(--accent);
}

.bg-grad-primary {
  background: var(--grad-primary);
}
.bg-grad-secondary {
  background: var(--grad-secondary);
}
.bg-grad-dark {
  background: var(--grad-dark);
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu-item {
  position: static !important;
}

.mega-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 1040;
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: 0 16px 48px rgba(21, 101, 192, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  pointer-events: none;
}

.mega-menu.teal-border {
  border-top-color: var(--secondary);
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

#mainNavbar.scrolled .mega-menu {
  top: 60px;
}

.mega-menu-inner {
  padding: 32px 0 28px;
}

.mega-menu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-label a {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mega-menu-label a:hover {
  color: var(--primary-dark);
}

/* Mega menu cards */
.mm-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  width: 100%;
}

.mm-card:hover {
  background: var(--gray-50);
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.mm-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
  transition: var(--transition);
}

.mm-card-icon.blue {
  background: var(--grad-primary);
}
.mm-card-icon.teal {
  background: var(--grad-secondary);
}
.mm-card-icon.purple {
  background: var(--grad-purple);
}
.mm-card-icon.dark {
  background: var(--grad-dark);
}
.mm-card-icon.premium {
  background: linear-gradient(135deg, #4527a0 0%, #0d47a1 100%);
}
.mm-card-icon.green {
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
}

.mm-card:hover .mm-card-icon {
  transform: scale(1.1);
}

.mm-card-body {
  flex: 1;
  min-width: 0;
}

.mm-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  font-family: "Manrope", sans-serif;
  white-space: nowrap;
}

.mm-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.mm-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 5px;
}

.mm-card-badge.blue {
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
}
.mm-card-badge.teal {
  background: rgba(0, 137, 123, 0.1);
  color: var(--secondary);
}
.mm-card-badge.purple {
  background: rgba(92, 53, 197, 0.1);
  color: var(--purple);
}
.mm-card-badge.dark {
  background: rgba(13, 71, 161, 0.12);
  color: var(--primary-dark);
}
.mm-card-badge.premium {
  background: rgba(69, 39, 160, 0.1);
  color: #4527a0;
}

/* Mega divider */
.mm-divider {
  width: 1px;
  background: var(--border);
  margin: 0 8px;
  align-self: stretch;
}

/* Mega bottom bar */
.mega-menu-footer {
  border-top: 1px solid var(--border-light);
  padding: 14px 0 4px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.mega-menu-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.mega-menu-footer-link:hover {
  background: var(--gray-100);
  color: var(--primary);
}

/* Nav toggle arrow */
.mega-toggle .caret-icon {
  font-size: 10px;
  margin-left: 3px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.mega-menu-item.active-menu > .mega-toggle .caret-icon {
  transform: rotate(180deg);
}

/* Overlay backdrop */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.15);
  backdrop-filter: blur(2px);
  z-index: 1039;
  display: none;
}

.mega-overlay.visible {
  display: block;
}

/* ============================================================
   MEGA MENU — MOBILE OVERRIDES
   ============================================================ */
@media (max-width: 991.98px) {
  /* Hide overlay on mobile — menu is inline */
  .mega-overlay {
    display: none !important;
  }

  /* Make navbar collapse scrollable so items are always reachable */
  #navbarNav.collapse.show,
  #navbarNav.collapsing {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Reset fixed positioning — mega menu flows inside the collapse */
  .mega-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: all !important;
    box-shadow: none !important;
    border-top: none !important;
    border-left: 3px solid var(--primary);
    border-radius: 0 0 8px 8px;
    background: #f8faff;
    /* Use max-height animation instead of opacity/transform */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin: 0 4px 8px;
    z-index: auto;
  }
  .mega-menu.teal-border {
    border-left-color: var(--secondary);
    border-top-color: transparent;
  }
  .mega-menu.open {
    max-height: 65vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mega-menu-inner {
    padding: 12px 14px 16px;
  }
  .mega-menu-label {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .mm-card {
    padding: 10px 10px;
  }
  .mm-card-title {
    font-size: 13px;
  }
  .mm-card-desc {
    font-size: 12px;
  }
  .mega-menu-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 10px;
  }
  /* Strip inline column borders from Services mega menu */
  .mega-menu .col-12[style*="border-right"] {
    border-right: none !important;
    padding-right: 0 !important;
  }
  .mega-menu .col-12[style*="padding-left"] {
    padding-left: 0 !important;
  }
  .mega-menu .row.g-0 {
    --bs-gutter-x: 0;
    row-gap: 0;
  }

  /* Back button — shown only on mobile */
  .mm-back-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 0 10px;
    cursor: pointer;
    margin-bottom: 12px;
    width: 100%;
    text-align: left;
  }
  .mm-back-btn:hover {
    color: var(--primary-dark);
  }
}

@media (min-width: 992px) {
  /* Hide back button on desktop */
  .mm-back-btn {
    display: none !important;
  }
}

/* ── MOBILE NAV ALIGNMENT FIX ────────────────────────────── */
@media (max-width: 991.98px) {
  /* Override Bootstrap align-items-center so every nav item
     stretches full-width instead of shrinking to content width */
  #navbarNav .navbar-nav {
    align-items: stretch !important;
    width: 100%;
    padding: 8px 0;
  }
  #navbarNav .nav-item {
    width: 100%;
  }
  #navbarNav .nav-item .nav-link,
  #navbarNav .nav-item .mega-toggle {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px !important;
    border-radius: 8px;
  }
  /* Keep the AI pill inline */
  #navbarNav .nav-link-ai {
    justify-content: flex-start;
    gap: 8px;
  }
  /* Keep the Request Demo button centered */
  #navbarNav .nav-item.ms-2 {
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
  }
  #navbarNav .nav-item.ms-2 .btn-demo {
    width: auto;
    min-width: 160px;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   SOLUTIONS DETAIL PAGE
   ============================================================ */
.solution-detail-section {
  padding: 80px 0;
}

.solution-detail-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 72px 0;
  }
  .hero-section {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-title {
    font-size: 42px;
  }
  .dashboard-mockup-wrap {
    margin-top: 48px;
  }
  .floating-card {
    display: none;
  }
  .page-hero {
    min-height: 50vh;
    padding: 80px 0 48px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
  .contact-form-card {
    padding: 32px 24px;
  }
  .price-summary-panel {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 56px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .hero-title {
    font-size: 34px;
    letter-spacing: -0.5px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-buttons {
    align-items: flex-start;
  }
  .stats-section {
    padding: 56px 0;
  }
  .stat-number {
    font-size: 40px;
  }
  .stat-divider {
    display: none;
  }
  .cta-section {
    padding: 64px 0;
  }
  .cta-section h2 {
    font-size: 28px;
  }
  .contact-info-card {
    position: static;
    margin-top: 24px;
  }
  .comparison-table {
    min-width: 700px;
  }
  .mission-vision-card {
    padding: 32px 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 30px;
  }
  .btn-primary-gradient,
  .btn-outline-primary-custom {
    padding: 11px 22px;
    font-size: 14px;
  }
  .solution-card {
    padding: 28px 22px;
  }
  .builder-step {
    padding: 22px;
  }
  .contact-form-card {
    padding: 24px 18px;
  }
}

/* ============================================================
   Pain Points / Challenges Section (index.html)
   ============================================================ */
.pain-section {
  background: var(--gray-100);
  padding: 100px 0 0;
  overflow: clip;
}
.pain-header {
  text-align: center;
  padding: 0 24px 80px;
  position: relative;
}
.pain-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(239, 68, 68, 0.6), transparent);
}
.pain-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.pain-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}
.pain-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #f87171, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pain-subhead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stack track */
.pain-track {
  padding: 40px 24px 120px;
}
/* Cards are direct children — no wrapper divs */
.pain-card {
  position: sticky;
  margin: 0 auto 280px;
  max-width: 960px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: #0d1728;
  will-change: transform;
  transform-origin: center top;
}
/* Each card gets a slightly lower top so previous card peeks above */
.pain-card.c1 {
  top: 88px;
  z-index: 1;
}
.pain-card.c2 {
  top: 100px;
  z-index: 2;
}
.pain-card.c3 {
  top: 112px;
  z-index: 3;
}
.pain-card.c4 {
  top: 124px;
  z-index: 4;
}
.pain-card.c5 {
  top: 136px;
  z-index: 5;
}
.pain-card.c6 {
  top: 148px;
  z-index: 6;
}
.pain-card.c7 {
  top: 160px;
  z-index: 7;
}
.pain-card.c8 {
  top: 172px;
  z-index: 8;
  margin-bottom: 320px;
}
@media (max-width: 767px) {
  .pain-card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 18px;
    margin-bottom: 200px;
  }
  .pain-card.c8 {
    margin-bottom: 240px;
  }
}

/* Left: text content */
.pc-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .pc-left {
    padding: 36px 28px;
  }
}

.pc-num {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  font-family: "Manrope", sans-serif;
  position: absolute;
  top: 20px;
  right: 24px;
  opacity: 0.06;
  color: #fff;
  user-select: none;
  pointer-events: none;
}
.pc-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.pc-icon-sm {
  font-size: 0.8rem;
}
.pc-title {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.2;
  color: #f1f5f9;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.5px;
}
.pc-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}
.pc-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  border-left: 3px solid;
}
.pc-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Manrope", sans-serif;
  white-space: nowrap;
}
.pc-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* Right: visual panel */
.pc-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .pc-right {
    display: none;
  }
}
.pc-visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.pc-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}
.pc-big-icon {
  position: relative;
  z-index: 2;
  font-size: 5.5rem;
  opacity: 0.9;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}
.pc-visual-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.pc-deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

/* Card color themes */
.pain-card.c1 .pc-left {
  background: linear-gradient(160deg, #1a0808 0%, #150510 100%);
}
.pain-card.c1 .pc-right {
  background: linear-gradient(135deg, #7f1d1d, #450a0a);
}
.pain-card.c1 .pc-tag {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.pain-card.c1 .pc-stat {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}
.pain-card.c1 .pc-stat-num {
  color: #f87171;
}
.pain-card.c1 .pc-big-icon {
  color: #fca5a5;
}
.pain-card.c1 .pc-deco-circle {
  background: #ef4444;
}

.pain-card.c2 .pc-left {
  background: linear-gradient(160deg, #1a0d04 0%, #150a08 100%);
}
.pain-card.c2 .pc-right {
  background: linear-gradient(135deg, #7c2d12, #431407);
}
.pain-card.c2 .pc-tag {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.pain-card.c2 .pc-stat {
  background: rgba(249, 115, 22, 0.1);
  border-color: #f97316;
}
.pain-card.c2 .pc-stat-num {
  color: #fb923c;
}
.pain-card.c2 .pc-big-icon {
  color: #fdba74;
}
.pain-card.c2 .pc-deco-circle {
  background: #f97316;
}

.pain-card.c3 .pc-left {
  background: linear-gradient(160deg, #18130a 0%, #120e05 100%);
}
.pain-card.c3 .pc-right {
  background: linear-gradient(135deg, #78350f, #3f1c05);
}
.pain-card.c3 .pc-tag {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.pain-card.c3 .pc-stat {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
}
.pain-card.c3 .pc-stat-num {
  color: #fbbf24;
}
.pain-card.c3 .pc-big-icon {
  color: #fde68a;
}
.pain-card.c3 .pc-deco-circle {
  background: #f59e0b;
}

.pain-card.c4 .pc-left {
  background: linear-gradient(160deg, #041412 0%, #051010 100%);
}
.pain-card.c4 .pc-right {
  background: linear-gradient(135deg, #134e4a, #052e2b);
}
.pain-card.c4 .pc-tag {
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(20, 184, 166, 0.2);
}
.pain-card.c4 .pc-stat {
  background: rgba(20, 184, 166, 0.1);
  border-color: #14b8a6;
}
.pain-card.c4 .pc-stat-num {
  color: #2dd4bf;
}
.pain-card.c4 .pc-big-icon {
  color: #99f6e4;
}
.pain-card.c4 .pc-deco-circle {
  background: #14b8a6;
}

.pain-card.c5 .pc-left {
  background: linear-gradient(160deg, #120a1f 0%, #0d0617 100%);
}
.pain-card.c5 .pc-right {
  background: linear-gradient(135deg, #4c1d95, #250b4d);
}
.pain-card.c5 .pc-tag {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.pain-card.c5 .pc-stat {
  background: rgba(168, 85, 247, 0.1);
  border-color: #a855f7;
}
.pain-card.c5 .pc-stat-num {
  color: #c084fc;
}
.pain-card.c5 .pc-big-icon {
  color: #d8b4fe;
}
.pain-card.c5 .pc-deco-circle {
  background: #a855f7;
}

.pain-card.c6 .pc-left {
  background: linear-gradient(160deg, #060d1f 0%, #040a18 100%);
}
.pain-card.c6 .pc-right {
  background: linear-gradient(135deg, #1e3a8a, #0c1a4a);
}
.pain-card.c6 .pc-tag {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.pain-card.c6 .pc-stat {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}
.pain-card.c6 .pc-stat-num {
  color: #60a5fa;
}
.pain-card.c6 .pc-big-icon {
  color: #93c5fd;
}
.pain-card.c6 .pc-deco-circle {
  background: #3b82f6;
}

.pain-card.c7 .pc-left {
  background: linear-gradient(160deg, #1a0612 0%, #120414 100%);
}
.pain-card.c7 .pc-right {
  background: linear-gradient(135deg, #831843, #4a0828);
}
.pain-card.c7 .pc-tag {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.2);
}
.pain-card.c7 .pc-stat {
  background: rgba(236, 72, 153, 0.1);
  border-color: #ec4899;
}
.pain-card.c7 .pc-stat-num {
  color: #f472b6;
}
.pain-card.c7 .pc-big-icon {
  color: #fbcfe8;
}
.pain-card.c7 .pc-deco-circle {
  background: #ec4899;
}

.pain-card.c8 .pc-left {
  background: linear-gradient(160deg, #080b1e 0%, #050818 100%);
}
.pain-card.c8 .pc-right {
  background: linear-gradient(135deg, #312e81, #16145a);
}
.pain-card.c8 .pc-tag {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.pain-card.c8 .pc-stat {
  background: rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
}
.pain-card.c8 .pc-stat-num {
  color: #818cf8;
}
.pain-card.c8 .pc-big-icon {
  color: #c7d2fe;
}
.pain-card.c8 .pc-deco-circle {
  background: #6366f1;
}

/* CTA at bottom of pain section */
.pain-cta {
  text-align: center;
  padding: 80px 24px 100px;
  background: linear-gradient(to bottom, #060c18, #050a14);
}
.pain-cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pain-cta-label::before,
.pain-cta-label::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(34, 197, 94, 0.3);
}
.pain-cta h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
}
.pain-cta p {
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 1rem;
}
.pain-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.combo-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .pain-cta-btns,
  .combo-cta-btns {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .pain-cta-btns a,
  .combo-cta-btns a {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
    font-size: 12.5px;
    justify-content: center;
    white-space: nowrap;
  }
}

/* ── Packages Hero ── */
.pkg-hero {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 40%, #004d40 100%);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.pkg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.pkg-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 137, 123, 0.25) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}
.pkg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.pkg-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.pkg-hero p.lead {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.pkg-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-white {
  background: #fff;
  color: #1565c0;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-hero-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #0d47a1;
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Package tier cards on right side */
.pkg-tier-stack {
  position: relative;
  padding: 10px 20px 20px;
}
.pkg-tier-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}
.pkg-tier-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}
.pkg-tier-card.featured-tier {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.tier-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.tier-icon.blue {
  background: rgba(21, 101, 192, 0.6);
}
.tier-icon.teal {
  background: rgba(0, 137, 123, 0.6);
}
.tier-icon.purple {
  background: rgba(92, 53, 197, 0.6);
}
.tier-icon.dark {
  background: rgba(13, 71, 161, 0.7);
}
.tier-icon.gold {
  background: rgba(245, 158, 11, 0.7);
}
.tier-info {
  flex: 1;
}
.tier-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}
.tier-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.tier-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-badge.popular {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.tier-badge.best {
  background: rgba(245, 158, 11, 0.3);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Hero stats strip */
.pkg-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}
.pkg-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.pkg-stat:last-child {
  border-right: none;
}
.pkg-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: "Manrope", sans-serif;
  line-height: 1;
}
.pkg-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Comparison Table ── */
/* overflow:clip clips rounded corners visually WITHOUT creating a scroll container,
       so position:sticky on thead th still works on desktop */
.cmp-wrapper {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
  overflow: clip;
}
/* Inner scroll container: horizontal scroll only on mobile */
@media (max-width: 991.98px) {
  .cmp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.cmp-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
/* Sticky header on desktop — works because no overflow on any ancestor */
@media (min-width: 992px) {
  .cmp-table thead th {
    position: sticky;
    top: 68px;
    z-index: 20;
  }
}
/* Sticky left column on mobile — works within overflow-x scroll container */
@media (max-width: 991.98px) {
  .cmp-th-feat {
    position: sticky;
    left: 0;
    z-index: 10;
  }
  .cmp-td-feat {
    position: sticky;
    left: 0;
    z-index: 5;
  }
}

/* ── Header cells ── */
.cmp-table thead th {
  padding: 0;
  vertical-align: top;
  background: #fff;
  border-bottom: 2px solid #e2e8f0;
}
.cmp-th-feat {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  min-width: 180px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cmp-th-pkg {
  text-align: center;
  border-left: 1px solid #e2e8f0;
  min-width: 118px;
}
.cmp-th-pkg.kk {
  border-top: 3px solid #1565c0;
}
.cmp-th-pkg.kg {
  border-top: 3px solid #00897b;
}
.cmp-th-pkg.kgp {
  border-top: 3px solid #5c35c5;
}
.cmp-th-pkg.pro {
  border-top: 3px solid #1565c0;
  background: #ebf5ff;
}
.cmp-th-pkg.pp {
  border-top: 3px solid #7c3aed;
}
.cmp-pop {
  background: linear-gradient(90deg, #1565c0, #00897b);
  color: #fff;
  padding: 4px 8px;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cmp-th-body {
  padding: 12px 10px;
}
.cmp-th-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  margin: 0 auto 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.ico-bl {
  background: rgba(21, 101, 192, 0.12);
  color: #1565c0;
}
.ico-tl {
  background: rgba(0, 137, 123, 0.12);
  color: #00897b;
}
.ico-pu {
  background: rgba(92, 53, 197, 0.12);
  color: #5c35c5;
}
.ico-pr {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
}
.ico-pp {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}
.cmp-th-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}
.cmp-th-sub {
  font-size: 0.63rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 2px;
}

/* ── Category / group rows ── */
.cmp-cat td {
  padding: 8px 18px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 2px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}
.cmp-cat.blue td {
  background: #ebf4ff;
  color: #1565c0;
}
.cmp-cat.teal td {
  background: #e6faf8;
  color: #00897b;
}
.cmp-cat.purple td {
  background: #f3eeff;
  color: #5c35c5;
}
.cmp-cat-note {
  font-size: 0.67rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
  margin-left: 8px;
}

/* ── Data rows ── */
.cmp-row td {
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
}
.cmp-row:last-child td {
  border-bottom: none;
}
.cmp-row:hover td {
  background: #f0f7ff !important;
  transition: background 0.15s;
}
.cmp-td-feat {
  padding: 10px 18px;
  text-align: left;
  font-size: 0.845rem;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border-right: 1px solid #f1f5f9;
}
.cmp-td-val {
  padding: 10px 6px;
  text-align: center;
  border-left: 1px solid #f1f5f9;
  background: #fff;
}
/* Pro column (5th) subtle tint */
.cmp-table tbody tr td:nth-child(5) {
  background: rgba(21, 101, 192, 0.03);
}
.cmp-cat.blue td:nth-child(5) {
  background: rgba(21, 101, 192, 0.09) !important;
}
.cmp-cat.teal td:nth-child(5) {
  background: rgba(0, 137, 123, 0.06) !important;
}
.cmp-cat.purple td:nth-child(5) {
  background: rgba(92, 53, 197, 0.06) !important;
}
.cmp-row:hover td:nth-child(5) {
  background: rgba(21, 101, 192, 0.07) !important;
}

.cmp-yes {
  color: #16a34a;
  font-size: 1rem;
}
.cmp-no {
  color: #d1d5db;
  font-size: 0.85rem;
}

/* ── Action row ── */
.cmp-act td {
  padding: 14px 8px;
  text-align: center;
  background: #f8fafc !important;
  border-top: 2px solid #e2e8f0;
}
.cmp-act .cmp-td-feat {
  background: #f0f4f8 !important;
  color: #64748b;
  font-size: 0.82rem;
  padding: 14px 18px;
}
.cmp-act td:nth-child(5) {
  background: #dbeafe !important;
}
.btn-ct {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-ct-blue {
  background: #1565c0;
  color: #fff;
}
.btn-ct-blue:hover {
  background: #0d47a1;
  color: #fff;
}
.btn-ct-teal {
  background: #00897b;
  color: #fff;
}
.btn-ct-teal:hover {
  background: #00695c;
  color: #fff;
}
.btn-ct-purple {
  border-color: #5c35c5;
  color: #5c35c5;
}
.btn-ct-purple:hover {
  background: #5c35c5;
  color: #fff;
}
.btn-ct-pro {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  box-shadow: 0 3px 10px rgba(21, 101, 192, 0.3);
}
.btn-ct-pro:hover {
  color: #fff;
  box-shadow: 0 5px 16px rgba(21, 101, 192, 0.4);
  transform: translateY(-1px);
}
.btn-ct-pp {
  border-color: #7c3aed;
  color: #7c3aed;
}
.btn-ct-pp:hover {
  background: #7c3aed;
  color: #fff;
}

/* ============================================================
   Page: contact.html
   ============================================================ */

body[data-page="contact"] *,
body[data-page="contact"] *::before,
body[data-page="contact"] *::after {
  box-sizing: border-box;
}
body[data-page="contact"] {
  font-family: "Inter", sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  margin: 0;
}
body[data-page="contact"] h1,
body[data-page="contact"] h2,
body[data-page="contact"] h3,
body[data-page="contact"] h4,
body[data-page="contact"] h5,
body[data-page="contact"] h6 {
  font-family: "Manrope", sans-serif;
}

/* ── Navbar ── */
body[data-page="contact"] #mainNavbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0.75rem 0;
  z-index: 1040;
}
body[data-page="contact"] .navbar-brand {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}
body[data-page="contact"] .brand-klinic {
  color: #1565c0;
}
body[data-page="contact"] .brand-konnect {
  color: #00897b;
}
body[data-page="contact"] .nav-link {
  font-weight: 500;
  color: #374151 !important;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}
body[data-page="contact"] .nav-link:hover {
  color: #1565c0 !important;
  background: #e8f0fe;
}
body[data-page="contact"] .btn-demo {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
body[data-page="contact"] .btn-demo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── Hero ── */
body[data-page="contact"] .page-hero {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 45%, #00695c 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
body[data-page="contact"] .page-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
body[data-page="contact"] .page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
body[data-page="contact"] .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
body[data-page="contact"] .page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
body[data-page="contact"] .page-hero .lead {
  color: #cfcfcf;
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Contact Section ── */
body[data-page="contact"] .contact-section {
  padding: 5rem 0;
  background: #f4f6f9;
}

/* ── Form Card ── */
body[data-page="contact"] .form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
body[data-page="contact"] .form-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}
body[data-page="contact"] .form-card-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 2rem;
}

/* Phone input group */
body[data-page="contact"] .phone-flag {
  background: #f1f5f9;
  border: 1px solid #dee2e6;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}
body[data-page="contact"] .phone-flag .fi {
  font-size: 1rem;
}
body[data-page="contact"] .input-group .form-floating {
  flex: 1;
}
body[data-page="contact"] .input-group .form-floating input {
  border-radius: 0 8px 8px 0;
}

/* Bootstrap form-floating overrides */
.form-floating > .form-control,
body[data-page="contact"] .form-floating > .form-select {
  border-radius: 10px;
  border-color: #e2e8f0;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-floating > .form-control:focus,
body[data-page="contact"] .form-floating > .form-select:focus {
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}
body[data-page="contact"] .form-floating > label {
  color: #94a3b8;
  font-size: 0.9rem;
}
body[data-page="contact"] .form-control.is-invalid {
  border-color: #ef4444;
}

/* Package interest checkbox group */
body[data-page="contact"] .kk-pkg-label {
  display: block;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 8px;
}
body[data-page="contact"] .kk-pkg-hint {
  font-size: 0.78rem;
  color: #b0bcca;
  font-weight: 400;
}
body[data-page="contact"] .kk-pkg-checklist {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}
body[data-page="contact"] .kk-pkg-checklist .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
  margin: 0;
}
body[data-page="contact"] .kk-pkg-checklist .form-check-input {
  width: 1.1em;
  height: 1.1em;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}
body[data-page="contact"] .kk-pkg-checklist .form-check-input:checked {
  background-color: #1565c0;
  border-color: #1565c0;
}
body[data-page="contact"] .kk-pkg-checklist .form-check-input:focus {
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}
body[data-page="contact"] .kk-pkg-checklist .form-check-label {
  font-size: 0.95rem;
  color: #1a1a2e;
  cursor: pointer;
}

/* Submit error */
body[data-page="contact"] .kk-submit-error {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #b91c1c;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Submit button */
body[data-page="contact"] .btn-submit {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  width: 100%;
  transition:
    opacity 0.2s,
    transform 0.2s;
  letter-spacing: 0.02em;
}
body[data-page="contact"] .btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
body[data-page="contact"] .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
body[data-page="contact"] .privacy-note {
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 0.75rem;
}

/* ── Success Message ── */
body[data-page="contact"] #successMessage {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
body[data-page="contact"] .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00897b, #26a69a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}
body[data-page="contact"] #successMessage h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
body[data-page="contact"] #successMessage p {
  color: #4b5563;
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
body[data-page="contact"] .btn-back-home {
  display: inline-block;
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: opacity 0.2s;
}
body[data-page="contact"] .btn-back-home:hover {
  opacity: 0.9;
  color: #fff;
}

/* ── Info Card ── */
body[data-page="contact"] .info-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 90px;
}
body[data-page="contact"] .info-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}
body[data-page="contact"] .benefit-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
body[data-page="contact"] .benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
body[data-page="contact"] .benefit-text {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
  padding-top: 0.45rem;
}
body[data-page="contact"] .info-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 1.5rem 0;
}
body[data-page="contact"] .contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: #374151;
}
body[data-page="contact"] .contact-info-item i {
  width: 20px;
  text-align: center;
  color: #1565c0;
}
body[data-page="contact"] .contact-info-item a {
  color: #1565c0;
  text-decoration: none;
}
body[data-page="contact"] .contact-info-item a:hover {
  text-decoration: underline;
}
body[data-page="contact"] .btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: opacity 0.2s;
}
body[data-page="contact"] .btn-whatsapp:hover {
  opacity: 0.88;
  color: #fff;
}
body[data-page="contact"] .hours-block {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
}
body[data-page="contact"] .hours-block p {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.7;
}
body[data-page="contact"] .hours-block strong {
  color: #1a1a2e;
}
body[data-page="contact"] .location-block {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: #4b5563;
}
body[data-page="contact"] .location-block i {
  color: #00897b;
  margin-top: 2px;
}

/* ── Section commons ── */
body[data-page="contact"] .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f0fe, #e0f2f1);
  color: #1565c0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
body[data-page="contact"] .section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #1a1a2e;
}

/* ── Testimonial ── */
body[data-page="contact"] .testimonial-section {
  padding: 5rem 0;
  background: #fff;
}
body[data-page="contact"] .testimonial-card {
  background: linear-gradient(135deg, #e8f0fe, #e0f2f1);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
body[data-page="contact"] .testimonial-card::before {
  content: "\201C";
  font-family: "Manrope", sans-serif;
  font-size: 5rem;
  color: #1565c0;
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
body[data-page="contact"] .testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #1a1a2e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
body[data-page="contact"] .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body[data-page="contact"] .testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
body[data-page="contact"] .testimonial-author-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a2e;
}
body[data-page="contact"] .testimonial-author-title {
  font-size: 0.85rem;
  color: #64748b;
}
body[data-page="contact"] .star-rating {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* ── FAQ ── */
body[data-page="contact"] .faq-section {
  padding: 5rem 0;
  background: #f4f6f9;
}
body[data-page="contact"] .accordion-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
body[data-page="contact"] .accordion-button {
  font-weight: 600;
  color: #1a1a2e;
  background: #fff;
  border-radius: 12px !important;
  font-size: 0.95rem;
}
body[data-page="contact"] .accordion-button:not(.collapsed) {
  color: #1565c0;
  background: #e8f0fe;
  box-shadow: none;
}
body[data-page="contact"] .accordion-body {
  background: #fff;
  color: #4b5563;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── CTA ── */
body[data-page="contact"] .cta-section {
  background: linear-gradient(135deg, #0d47a1, #00695c);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
body[data-page="contact"] .cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
body[data-page="contact"] .cta-section p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 550px;
  margin: 0 auto 2rem;
}
body[data-page="contact"] .btn-cta-white {
  background: #fff;
  color: #1565c0;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
body[data-page="contact"] .btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #1565c0;
}
body[data-page="contact"] .btn-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    border-color 0.2s;
  margin-left: 1rem;
}
body[data-page="contact"] .btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* ── Hero Trust Strip ── */
body[data-page="contact"] .hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
  justify-content: center;
}
body[data-page="contact"] .hero-trust-strip span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
body[data-page="contact"] .hero-trust-strip i {
  color: #4ade80;
}

/* ── Stepper Header ── */
body[data-page="contact"] .kk-stepper-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
body[data-page="contact"] .kk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
body[data-page="contact"] .kk-step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #e2e8f0;
  color: #94a3b8;
  font-weight: 700;
  transition: all 0.35s;
}
body[data-page="contact"] .kk-step.active .kk-step-circle {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
}
body[data-page="contact"] .kk-step.completed .kk-step-circle {
  background: #10b981;
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
body[data-page="contact"] .kk-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  text-align: center;
}
body[data-page="contact"] .kk-step.active .kk-step-label {
  color: #1565c0;
}
body[data-page="contact"] .kk-step.completed .kk-step-label {
  color: #10b981;
}
body[data-page="contact"] .kk-step-connector {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 1.4rem 0.4rem 0;
  transition: background 0.4s;
}
body[data-page="contact"] .kk-step-connector.active {
  background: linear-gradient(90deg, #1565c0, #00897b);
}

/* ── Step Panels ── */
body[data-page="contact"] .kk-step-panel {
  display: none;
}
body[data-page="contact"] .kk-step-panel.active {
  display: block;
  animation: kkStepIn 0.3s ease;
}
@keyframes kkStepIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body[data-page="contact"] .kk-panel-num {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1565c0;
  margin-bottom: 0.3rem;
}
body[data-page="contact"] .kk-panel-head {
  margin-bottom: 1.5rem;
}

/* ── Step Actions ── */
body[data-page="contact"] .kk-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
body[data-page="contact"] .btn-step-back {
  background: none;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  padding: 0.72rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}
body[data-page="contact"] .btn-step-back:hover {
  border-color: #94a3b8;
  color: #374151;
}
body[data-page="contact"] .btn-step-next {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
}
body[data-page="contact"] .btn-step-next:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.3);
}
body[data-page="contact"] .btn-step-next:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Field Errors ── */
body[data-page="contact"] .kk-field-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.35rem;
  display: none;
}
body[data-page="contact"] .kk-field-error.show {
  display: block;
}

/* ── Verify Groups ── */
body[data-page="contact"] .kk-verify-group {
  margin-bottom: 0.25rem;
}
body[data-page="contact"] .kk-verify-label {
  display: block;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.4rem;
}
body[data-page="contact"] .kk-verify-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
body[data-page="contact"] .kk-verify-row .form-floating {
  flex: 1;
  min-width: 0;
}
body[data-page="contact"] .btn-send-otp {
  flex-shrink: 0;
  padding: 0 1.1rem;
  border-radius: 10px;
  border: 2px solid #1565c0;
  background: #fff;
  color: #1565c0;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}
body[data-page="contact"] .btn-send-otp:hover:not(:disabled) {
  background: #1565c0;
  color: #fff;
}
body[data-page="contact"] .btn-send-otp:disabled {
  border-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
}
@media (max-width: 480px) {
  body[data-page="contact"] .kk-verify-row {
    flex-wrap: wrap;
  }
  body[data-page="contact"] .kk-verify-row .form-floating {
    min-width: 140px;
  }
  body[data-page="contact"] .btn-send-otp {
    flex: 1 1 100%;
    margin-top: 0.5rem;
  }
}

/* ── OTP Row ── */
body[data-page="contact"] .kk-otp-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
}
body[data-page="contact"] .kk-otp-inputs {
  display: flex;
  gap: 0.4rem;
}
body[data-page="contact"] .kk-otp-input {
  width: 42px;
  height: 50px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #1a1a2e;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: "Manrope", sans-serif;
}
body[data-page="contact"] .kk-otp-input:focus {
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}
body[data-page="contact"] .kk-otp-timer {
  font-size: 0.82rem;
  color: #ef4444;
  font-weight: 700;
  min-width: 38px;
}
body[data-page="contact"] .btn-verify-otp {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-left: auto;
  font-family: "Inter", sans-serif;
}
body[data-page="contact"] .btn-verify-otp:hover {
  opacity: 0.88;
}

/* ── Verified Badge ── */
body[data-page="contact"] .kk-verified-badge {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: #10b981;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 0.6rem;
  background: #ecfdf5;
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  border: 1px solid #a7f3d0;
}
body[data-page="contact"] .kk-verified-badge i {
  font-size: 1rem;
}
body[data-page="contact"] .kk-verified-badge.show {
  display: flex;
}

/* ── Review Card ── */
body[data-page="contact"] .kk-review-wrap {
  background: linear-gradient(135deg, #f0f7ff, #f0fdf9);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}
body[data-page="contact"] .kk-review-section-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
body[data-page="contact"] .kk-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
body[data-page="contact"] .kk-review-key {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}
body[data-page="contact"] .kk-review-val {
  font-size: 0.93rem;
  font-weight: 600;
  color: #1a1a2e;
  word-break: break-word;
}
body[data-page="contact"] .kk-review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: #10b981;
  font-weight: 700;
  background: #ecfdf5;
  padding: 0.1rem 0.45rem;
  border-radius: 20px;
  margin-left: 0.35rem;
}
body[data-page="contact"] .kk-review-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 1rem 0;
}
body[data-page="contact"] .kk-submit-note {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #92400e;
  margin: 1.25rem 0 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
body[data-page="contact"] .kk-submit-note i {
  color: #f59e0b;
  margin-top: 1px;
}

/* ── Enhanced Info Card ── */
body[data-page="contact"] .info-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ecfdf5, #e0f2fe);
  color: #0369a1;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  border: 1px solid #bae6fd;
}
body[data-page="contact"] .info-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
body[data-page="contact"] .info-stat {
  text-align: center;
  background: linear-gradient(135deg, #ebf4ff, #e6faf8);
  border-radius: 12px;
  padding: 0.85rem 0.4rem;
  border: 1px solid #e2e8f0;
}
body[data-page="contact"] .info-stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1565c0;
  display: block;
  font-family: "Manrope", sans-serif;
}
body[data-page="contact"] .info-stat-lbl {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
}
body[data-page="contact"] .what-next-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
body[data-page="contact"] .what-next-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
body[data-page="contact"] .what-next-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
body[data-page="contact"] .what-next-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
body[data-page="contact"] .what-next-text {
  font-size: 0.87rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.55;
}
body[data-page="contact"] .info-mini-testimonial {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  border-left: 4px solid #1565c0;
}
body[data-page="contact"] .info-testimonial-quote {
  font-size: 0.88rem;
  font-style: italic;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
body[data-page="contact"] .info-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
body[data-page="contact"] .info-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body[data-page="contact"] .info-testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
}
body[data-page="contact"] .info-testimonial-role {
  font-size: 0.75rem;
  color: #64748b;
}
body[data-page="contact"] .info-testimonial-stars {
  color: #f59e0b;
  font-size: 0.72rem;
  margin-top: 0.2rem;
}

/* ── Clinic Type Cards ── */
body[data-page="contact"] .kk-clinic-type-label {
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.6rem;
  display: block;
}
body[data-page="contact"] .kk-field-required {
  color: #ef4444;
}
body[data-page="contact"] .kk-clinic-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
body[data-page="contact"] .kk-clinic-type-card {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  user-select: none;
}
body[data-page="contact"] .kk-clinic-type-card:hover {
  border-color: #93c5fd;
  background: #f0f7ff;
}
body[data-page="contact"] .kk-clinic-type-card.selected {
  border-color: #1565c0;
  background: linear-gradient(135deg, #ebf4ff, #e6faf8);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.15);
}
body[data-page="contact"] .kk-ctype-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 0.6rem;
  transition: all 0.2s;
}
body[data-page="contact"] .kk-clinic-type-card.selected .kk-ctype-icon {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.28);
}
body[data-page="contact"] .kk-ctype-name {
  font-size: 0.76rem;
  font-weight: 700;
  color: #374151;
  line-height: 1.3;
  transition: color 0.2s;
}
body[data-page="contact"] .kk-clinic-type-card.selected .kk-ctype-name {
  color: #1565c0;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  body[data-page="contact"] .info-card {
    position: static;
    margin-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  body[data-page="contact"] .form-card {
    padding: 1.5rem;
  }
  body[data-page="contact"] .btn-cta-outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }
  body[data-page="contact"] .kk-otp-input {
    width: 36px;
    height: 44px;
    font-size: 1.1rem;
  }
  body[data-page="contact"] .kk-review-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="contact"] .kk-step-label {
    display: none;
  }
  body[data-page="contact"] .info-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  body[data-page="contact"] .kk-clinic-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Page: packages.html
   ============================================================ */

/* ── Packages Hero ── */
body[data-page="packages"] .pkg-hero {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 40%, #004d40 100%);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
body[data-page="packages"] .pkg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
body[data-page="packages"] .pkg-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 137, 123, 0.25) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}
body[data-page="packages"] .pkg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
body[data-page="packages"] .pkg-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: #fff;
}
body[data-page="packages"] .pkg-hero p.lead {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #cfcfcf;
}
body[data-page="packages"] .pkg-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
body[data-page="packages"] .btn-hero-white {
  background: #fff;
  color: #1565c0;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
body[data-page="packages"] .btn-hero-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #0d47a1;
}
body[data-page="packages"] .btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
body[data-page="packages"] .btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Package tier cards on right side */
body[data-page="packages"] .pkg-tier-stack {
  position: relative;
  padding: 10px 20px 20px;
}
body[data-page="packages"] .pkg-tier-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}
body[data-page="packages"] .pkg-tier-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}
body[data-page="packages"] .pkg-tier-card.featured-tier {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
body[data-page="packages"] .tier-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
body[data-page="packages"] .tier-icon.blue {
  background: rgba(21, 101, 192, 0.6);
}
body[data-page="packages"] .tier-icon.teal {
  background: rgba(0, 137, 123, 0.6);
}
body[data-page="packages"] .tier-icon.purple {
  background: rgba(92, 53, 197, 0.6);
}
body[data-page="packages"] .tier-icon.dark {
  background: rgba(13, 71, 161, 0.7);
}
body[data-page="packages"] .tier-icon.gold {
  background: rgba(245, 158, 11, 0.7);
}
body[data-page="packages"] .tier-info {
  flex: 1;
}
body[data-page="packages"] .tier-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}
body[data-page="packages"] .tier-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
body[data-page="packages"] .tier-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
body[data-page="packages"] .tier-badge.popular {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
body[data-page="packages"] .tier-badge.best {
  background: rgba(245, 158, 11, 0.3);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Hero stats strip */
body[data-page="packages"] .pkg-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}
body[data-page="packages"] .pkg-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
body[data-page="packages"] .pkg-stat:last-child {
  border-right: none;
}
body[data-page="packages"] .pkg-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: "Manrope", sans-serif;
  line-height: 1;
}
body[data-page="packages"] .pkg-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Comparison Table ── */
/* overflow:clip clips rounded corners visually WITHOUT creating a scroll container,
       so position:sticky on thead th still works on desktop */
body[data-page="packages"] .cmp-wrapper {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
  overflow: clip;
}
/* Inner scroll container: horizontal scroll only on mobile */
@media (max-width: 991.98px) {
  body[data-page="packages"] .cmp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
body[data-page="packages"] .cmp-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
/* Sticky header on desktop — works because no overflow on any ancestor */
@media (min-width: 992px) {
  body[data-page="packages"] .cmp-table thead th {
    position: sticky;
    top: 68px;
    z-index: 20;
  }
}
/* Sticky left column on mobile — works within overflow-x scroll container */
@media (max-width: 991.98px) {
  body[data-page="packages"] .cmp-th-feat {
    position: sticky;
    left: 0;
    z-index: 10;
  }
  body[data-page="packages"] .cmp-td-feat {
    position: sticky;
    left: 0;
    z-index: 5;
  }
}

/* ── Header cells ── */
body[data-page="packages"] .cmp-table thead th {
  padding: 0;
  vertical-align: middle;
  text-align: center;
  font-size: 18px;
  background: #fff;
  border-bottom: 2px solid #e2e8f0;
}
body[data-page="packages"] .cmp-th-feat {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  min-width: 180px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body[data-page="packages"] .cmp-th-pkg {
  text-align: center;
  border-left: 1px solid #e2e8f0;
  min-width: 118px;
}
body[data-page="packages"] .cmp-th-pkg.kk {
  border-top: 3px solid #1565c0;
}
body[data-page="packages"] .cmp-th-pkg.kg {
  border-top: 3px solid #00897b;
}
body[data-page="packages"] .cmp-th-pkg.kgp {
  border-top: 3px solid #5c35c5;
}
body[data-page="packages"] .cmp-th-pkg.pro {
  border-top: 3px solid #1565c0;
  background: #ebf5ff;
}
body[data-page="packages"] .cmp-th-pkg.pp {
  border-top: 3px solid #7c3aed;
}
body[data-page="packages"] .cmp-pop {
  background: linear-gradient(90deg, #1565c0, #00897b);
  color: #fff;
  padding: 4px 8px;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
body[data-page="packages"] .cmp-th-body {
  padding: 12px 10px;
}
body[data-page="packages"] .cmp-th-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  margin: 0 auto 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
body[data-page="packages"] .ico-bl {
  background: rgba(21, 101, 192, 0.12);
  color: #1565c0;
}
body[data-page="packages"] .ico-tl {
  background: rgba(0, 137, 123, 0.12);
  color: #00897b;
}
body[data-page="packages"] .ico-pu {
  background: rgba(92, 53, 197, 0.12);
  color: #5c35c5;
}
body[data-page="packages"] .ico-pr {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
}
body[data-page="packages"] .ico-pp {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}
body[data-page="packages"] .cmp-th-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}
body[data-page="packages"] .cmp-th-sub {
  font-size: 0.63rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 2px;
}

/* ── Category / group rows ── */
body[data-page="packages"] .cmp-cat td {
  padding: 8px 18px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 2px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}
body[data-page="packages"] .cmp-cat.blue td {
  background: #ebf4ff;
  color: #1565c0;
}
body[data-page="packages"] .cmp-cat.teal td {
  background: #e6faf8;
  color: #00897b;
}
body[data-page="packages"] .cmp-cat.purple td {
  background: #f3eeff;
  color: #5c35c5;
}
body[data-page="packages"] .cmp-cat-note {
  font-size: 0.67rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
  margin-left: 8px;
}

/* ── Data rows ── */
body[data-page="packages"] .cmp-row td {
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
}
body[data-page="packages"] .cmp-row:last-child td {
  border-bottom: none;
}
body[data-page="packages"] .cmp-row:hover td {
  background: #f0f7ff !important;
  transition: background 0.15s;
}
body[data-page="packages"] .cmp-td-feat {
  padding: 10px 18px;
  text-align: left;
  font-size: 0.845rem;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border-right: 1px solid #f1f5f9;
}
body[data-page="packages"] .cmp-td-val {
  padding: 10px 6px;
  text-align: center;
  border-left: 1px solid #f1f5f9;
  background: #fff;
}
/* Pro column (5th) subtle tint */
body[data-page="packages"] .cmp-table tbody tr td:nth-child(5) {
  background: rgba(21, 101, 192, 0.03);
}
body[data-page="packages"] .cmp-cat.blue td:nth-child(5) {
  background: rgba(21, 101, 192, 0.09) !important;
}
body[data-page="packages"] .cmp-cat.teal td:nth-child(5) {
  background: rgba(0, 137, 123, 0.06) !important;
}
body[data-page="packages"] .cmp-cat.purple td:nth-child(5) {
  background: rgba(92, 53, 197, 0.06) !important;
}
body[data-page="packages"] .cmp-row:hover td:nth-child(5) {
  background: rgba(21, 101, 192, 0.07) !important;
}

body[data-page="packages"] .cmp-yes {
  color: #16a34a;
  font-size: 1rem;
}
body[data-page="packages"] .cmp-no {
  color: #d1d5db;
  font-size: 0.85rem;
}

/* ── Action row ── */
body[data-page="packages"] .cmp-act td {
  padding: 14px 8px;
  text-align: center;
  background: #f8fafc !important;
  border-top: 2px solid #e2e8f0;
}
body[data-page="packages"] .cmp-act .cmp-td-feat {
  background: #f0f4f8 !important;
  color: #64748b;
  font-size: 0.82rem;
  padding: 14px 18px;
}
body[data-page="packages"] .cmp-act td:nth-child(5) {
  background: #dbeafe !important;
}
body[data-page="packages"] .btn-ct {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
body[data-page="packages"] .btn-ct-blue {
  background: #1565c0;
  color: #fff;
}
body[data-page="packages"] .btn-ct-blue:hover {
  background: #0d47a1;
  color: #fff;
}
body[data-page="packages"] .btn-ct-teal {
  background: #00897b;
  color: #fff;
}
body[data-page="packages"] .btn-ct-teal:hover {
  background: #00695c;
  color: #fff;
}
body[data-page="packages"] .btn-ct-purple {
  border-color: #5c35c5;
  color: #5c35c5;
}
body[data-page="packages"] .btn-ct-purple:hover {
  background: #5c35c5;
  color: #fff;
}
body[data-page="packages"] .btn-ct-pro {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  box-shadow: 0 3px 10px rgba(21, 101, 192, 0.3);
}
body[data-page="packages"] .btn-ct-pro:hover {
  color: #fff;
  box-shadow: 0 5px 16px rgba(21, 101, 192, 0.4);
  transform: translateY(-1px);
}
body[data-page="packages"] .btn-ct-pp {
  border-color: #7c3aed;
  color: #7c3aed;
}
body[data-page="packages"] .btn-ct-pp:hover {
  background: #7c3aed;
  color: #fff;
}

/* ============================================================
   Page: services/klinic-automate.html
   ============================================================ */

/* ── Service Hero ── */
body[data-page="automate"] .service-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
body[data-page="automate"] .service-hero.purple {
  background: linear-gradient(135deg, #5c35c5 0%, #7b52d3 50%, #4527a0 100%);
  color: #fff;
}
body[data-page="automate"] .service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body[data-page="automate"] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
body[data-page="automate"] .service-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
}
body[data-page="automate"] .service-hero .lead {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 540px;
}
body[data-page="automate"] .hero-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 24px;
}
/* ── WhatsApp Mockup ── */
body[data-page="automate"] .wa-mockup {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(92, 53, 197, 0.3);
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
}
body[data-page="automate"] .wa-header {
  background: #075e54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
body[data-page="automate"] .wa-avatar {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
body[data-page="automate"] .wa-name {
  font-weight: 700;
  font-size: 0.95rem;
}
body[data-page="automate"] .wa-status {
  font-size: 0.75rem;
  opacity: 0.8;
}
body[data-page="automate"] .wa-body {
  background: #ece5dd
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm2 2v16h16V2H2z' fill='%23c9c0b5' fill-opacity='0.3' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 16px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body[data-page="automate"] .wa-msg {
  background: #fff;
  border-radius: 12px 12px 12px 0;
  padding: 10px 14px;
  max-width: 90%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
body[data-page="automate"] .wa-msg.sent {
  background: #dcf8c6;
  border-radius: 12px 12px 0 12px;
  align-self: flex-end;
}
body[data-page="automate"] .wa-msg p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #303030;
}
body[data-page="automate"] .wa-msg .time {
  font-size: 0.68rem;
  color: #999;
  text-align: right;
  margin-top: 4px;
}
body[data-page="automate"] .wa-msg .wa-tag {
  display: inline-block;
  background: rgba(92, 53, 197, 0.1);
  color: #5c35c5;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 4px;
}
/* ── Section badge ── */
body[data-page="automate"] .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body[data-page="automate"] .section-badge.purple {
  background: rgba(92, 53, 197, 0.1);
  color: #5c35c5;
}
body[data-page="automate"] .section-badge.blue {
  background: rgba(21, 101, 192, 0.1);
  color: #1565c0;
}
/* ── Feature cards ── */
body[data-page="automate"] .feature-card {
  background: #fff;
  border-radius: var(--radius-lg, 20px);
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
body[data-page="automate"] .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(92, 53, 197, 0.15);
}
body[data-page="automate"] .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
body[data-page="automate"] .feature-icon.purple {
  background: rgba(92, 53, 197, 0.1);
  color: #5c35c5;
}
body[data-page="automate"] .feature-icon.teal {
  background: rgba(0, 137, 123, 0.1);
  color: #00897b;
}
body[data-page="automate"] .feature-icon.blue {
  background: rgba(21, 101, 192, 0.1);
  color: #1565c0;
}
body[data-page="automate"] .feature-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #1e293b;
}
body[data-page="automate"] .feature-card p {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}
/* ── How it works ── */
body[data-page="automate"] .step-card {
  text-align: center;
  padding: 32px 24px;
}
body[data-page="automate"] .step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5c35c5, #7b52d3);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(92, 53, 197, 0.35);
}
body[data-page="automate"] .step-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}
body[data-page="automate"] .step-card p {
  font-size: 0.9rem;
  color: #475569;
}
/* ── Metrics ── */
body[data-page="automate"] .metric-card {
  background: linear-gradient(135deg, #5c35c5 0%, #7b52d3 100%);
  color: #fff;
  border-radius: var(--radius-lg, 20px);
  padding: 36px 24px;
  text-align: center;
}
body[data-page="automate"] .metric-card .metric-num {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}
body[data-page="automate"] .metric-card .metric-label {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 8px;
}
body[data-page="automate"] .metric-card.alt {
  background: linear-gradient(135deg, #00897b 0%, #26a69a 100%);
}
/* ── Message types ── */
body[data-page="automate"] .msg-type-card {
  background: #fff;
  border: 1px solid rgba(92, 53, 197, 0.15);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s ease;
}
body[data-page="automate"] .msg-type-card:hover {
  border-color: #5c35c5;
  box-shadow: 0 6px 20px rgba(92, 53, 197, 0.12);
}
body[data-page="automate"] .msg-type-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(92, 53, 197, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c35c5;
  font-size: 1.1rem;
}
body[data-page="automate"] .msg-type-card h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: #1e293b;
}
body[data-page="automate"] .msg-type-card p {
  font-size: 0.85rem;
  color: #475569;
  margin: 0;
}
/* ── CTA ── */
body[data-page="automate"] .cta-section {
  background: linear-gradient(135deg, #5c35c5 0%, #7b52d3 60%, #1565c0 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
body[data-page="automate"] .cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}
body[data-page="automate"] .cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 32px;
}
/* ── Related ── */
body[data-page="automate"] .related-card {
  background: #fff;
  border-radius: var(--radius-lg, 20px);
  padding: 28px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
body[data-page="automate"] .related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  color: inherit;
}
body[data-page="automate"] .related-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
/* ── Automation flow ── */
body[data-page="automate"] .flow-wrap {
  position: relative;
  padding: 20px 0;
}
body[data-page="automate"] .flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 16px;
  position: relative;
  transition: all 0.25s ease;
}
body[data-page="automate"] .flow-step:hover {
  border-color: #5c35c5;
  box-shadow: 0 6px 20px rgba(92, 53, 197, 0.1);
}
body[data-page="automate"] .flow-step-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #5c35c5, #7b52d3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
body[data-page="automate"] .flow-step h6 {
  font-weight: 700;
  margin-bottom: 4px;
  color: #1e293b;
}
body[data-page="automate"] .flow-step p {
  font-size: 0.85rem;
  color: #475569;
  margin: 0;
}
body[data-page="automate"] .flow-connector {
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, #5c35c5, rgba(92, 53, 197, 0.2));
  margin-left: 37px;
}
/* ── Section spacing ── */
body[data-page="automate"] .py-section {
  padding: 90px 0;
}
@media (max-width: 768px) {
  body[data-page="automate"] .py-section {
    padding: 60px 0;
  }
}

/* Scrolled nav adjustment */
body[data-page="automate"] #mainNavbar.scrolled {
  padding: 8px 0;
}

/* ============================================================
   Page: pricing-builder.html
   ============================================================ */

/* ── Base ── */
body[data-page="pricing-builder"] *,
body[data-page="pricing-builder"] *::before,
body[data-page="pricing-builder"] *::after {
  box-sizing: border-box;
}
body[data-page="pricing-builder"] {
  font-family: "Inter", sans-serif;
  color: #1a1a2e;
  background: #ffffff;
}
body[data-page="pricing-builder"] h1,
body[data-page="pricing-builder"] h2,
body[data-page="pricing-builder"] h3,
body[data-page="pricing-builder"] h4,
body[data-page="pricing-builder"] h5,
body[data-page="pricing-builder"] h6 {
  font-family: "Manrope", sans-serif;
}

/* ── Navbar ── */
body[data-page="pricing-builder"] #mainNavbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0.75rem 0;
  z-index: 1040;
}
body[data-page="pricing-builder"] .navbar-brand {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}
body[data-page="pricing-builder"] .brand-klinic {
  color: #1565c0;
}
body[data-page="pricing-builder"] .brand-konnect {
  color: #00897b;
}
body[data-page="pricing-builder"] .nav-link {
  font-weight: 500;
  color: #374151 !important;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}
body[data-page="pricing-builder"] .nav-link:hover {
  color: #1565c0 !important;
  background: #e8f0fe;
}
body[data-page="pricing-builder"] .btn-demo {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
body[data-page="pricing-builder"] .btn-demo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── Hero ── */
body[data-page="pricing-builder"] .page-hero {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 45%, #00695c 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: left;
}
body[data-page="pricing-builder"] .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
body[data-page="pricing-builder"] .page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 137, 123, 0.22) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}
body[data-page="pricing-builder"] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
body[data-page="pricing-builder"] .page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #fff;
}
body[data-page="pricing-builder"] .page-hero .lead {
  font-size: 1.08rem;
  color: #cfcfcf;
  opacity: 0.85;
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}
/* Steps preview strip */
body[data-page="pricing-builder"] .hero-steps {
  display: flex;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
body[data-page="pricing-builder"] .hero-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-right: 20px;
}
body[data-page="pricing-builder"] .hero-step:last-child {
  padding-right: 0;
}
body[data-page="pricing-builder"] .hero-step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
body[data-page="pricing-builder"] .hero-step-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
body[data-page="pricing-builder"] .hero-step-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}
/* Right side visual */
body[data-page="pricing-builder"] .hero-price-visual {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 28px;
  max-width: 340px;
  margin: 0 auto;
}
body[data-page="pricing-builder"] .hpv-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
body[data-page="pricing-builder"] .hpv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 8px;
}
body[data-page="pricing-builder"] .hpv-row-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
body[data-page="pricing-builder"] .hpv-row-name i {
  opacity: 0.7;
  font-size: 0.8rem;
}
body[data-page="pricing-builder"] .hpv-row-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Manrope", sans-serif;
}
body[data-page="pricing-builder"] .hpv-total-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
body[data-page="pricing-builder"] .hpv-total-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
body[data-page="pricing-builder"] .hpv-total-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  font-family: "Manrope", sans-serif;
}
body[data-page="pricing-builder"] .hpv-total-price .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}
body[data-page="pricing-builder"] .hpv-cta {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px;
  border-radius: 10px;
  margin-top: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
body[data-page="pricing-builder"] .hpv-cta:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* ── Builder Section ── */
body[data-page="pricing-builder"] .builder-section {
  background: #f4f6f9;
  padding: 4rem 0;
}

body[data-page="pricing-builder"] .step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1565c0;
  margin-bottom: 0.5rem;
}
body[data-page="pricing-builder"] .step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}

/* ── Option Cards ── */
body[data-page="pricing-builder"] .option-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  position: relative;
  user-select: none;
}
body[data-page="pricing-builder"] .option-card:hover {
  border-color: #90caf9;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.1);
}
.option-card input[type="checkbox"],
body[data-page="pricing-builder"] .option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
body[data-page="pricing-builder"] .option-card.selected {
  border-color: #1565c0;
  background: #e8f0fe;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.15);
}
body[data-page="pricing-builder"] .option-card.selected .option-check {
  background: #1565c0;
  border-color: #1565c0;
}
body[data-page="pricing-builder"] .option-card.selected .option-check::after {
  opacity: 1;
}
body[data-page="pricing-builder"] .option-check {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
body[data-page="pricing-builder"] .option-check.radio-check {
  border-radius: 50%;
}
body[data-page="pricing-builder"] .option-check::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}
body[data-page="pricing-builder"] .option-check.radio-check::after {
  border-radius: 50%;
}
body[data-page="pricing-builder"] .option-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a2e;
}
body[data-page="pricing-builder"] .option-price {
  font-weight: 700;
  font-size: 1rem;
  color: #1565c0;
  white-space: nowrap;
}
body[data-page="pricing-builder"] .option-price.zero-price {
  color: #64748b;
}
body[data-page="pricing-builder"] .option-includes {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.35rem;
}

/* Included / dimmed state */
body[data-page="pricing-builder"] .addon-card.included-in-package {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f8fafc;
}
body[data-page="pricing-builder"]
  .addon-card.included-in-package
  .option-name::after {
  content: " — Included";
  font-size: 0.75rem;
  color: #00897b;
  font-weight: 600;
}

/* ── Summary Card ── */
body[data-page="pricing-builder"] .summary-card {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 12px 48px rgba(21, 101, 192, 0.13),
    0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: sticky;
  top: 90px;
  border: 1px solid rgba(21, 101, 192, 0.1);
}
body[data-page="pricing-builder"] .summary-card-header {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 50%, #00695c 100%);
  padding: 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
}
body[data-page="pricing-builder"] .summary-card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
body[data-page="pricing-builder"] .summary-card-header h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  position: relative;
}
body[data-page="pricing-builder"] .summary-card-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  margin: 0;
  position: relative;
}
body[data-page="pricing-builder"] .summary-card-header .header-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}
body[data-page="pricing-builder"] .summary-card-body {
  padding: 1.5rem 1.75rem;
}
body[data-page="pricing-builder"] #empty-state {
  color: #94a3b8;
  font-size: 0.88rem;
  text-align: center;
  padding: 1.5rem 0;
}
body[data-page="pricing-builder"] #empty-state i {
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}
body[data-page="pricing-builder"] .selected-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #e8ecf2;
  font-size: 0.88rem;
}
body[data-page="pricing-builder"] .selected-item-row:last-child {
  border-bottom: none;
}
body[data-page="pricing-builder"] .item-name {
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}
body[data-page="pricing-builder"] .item-name i {
  color: #22c55e;
  font-size: 0.75rem;
  flex-shrink: 0;
}
body[data-page="pricing-builder"] .item-price {
  color: #1565c0;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  white-space: nowrap;
}
body[data-page="pricing-builder"] .total-divider {
  border: none;
  height: 2px;
  background: linear-gradient(135deg, #1565c0, #00897b);
  border-radius: 2px;
  margin: 1.25rem 0;
}
body[data-page="pricing-builder"] .total-box {
  background: linear-gradient(135deg, #e8f0fe, #e0f7f4);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(21, 101, 192, 0.12);
}
body[data-page="pricing-builder"] .total-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
}
body[data-page="pricing-builder"] #total-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1565c0;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  display: block;
}
body[data-page="pricing-builder"] .price-note {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.4rem;
}
body[data-page="pricing-builder"] .btn-request-demo {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  width: 100%;
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
}
body[data-page="pricing-builder"] .btn-request-demo:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.4);
  color: #fff;
}
body[data-page="pricing-builder"] .btn-request-demo.disabled {
  background: #cbd5e1;
  color: #64748b;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
body[data-page="pricing-builder"] .btn-request-demo.disabled:hover {
  opacity: 1;
  transform: none;
  box-shadow: none;
}
body[data-page="pricing-builder"] .price-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  padding: 11px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 10px;
  text-align: left;
}
body[data-page="pricing-builder"] .price-disclaimer i {
  color: #b45309;
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
body[data-page="pricing-builder"] .price-disclaimer span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #92640a;
}
body[data-page="pricing-builder"] .price-disclaimer strong {
  color: #7c4a03;
}

/* ── Mobile sticky summary bar ── */
body[data-page="pricing-builder"] .pb-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1045;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.1);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
body[data-page="pricing-builder"] .pb-mobile-bar-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 10px 14px;
}
body[data-page="pricing-builder"] .pb-mobile-bar-summary {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: none;
  border: none;
  padding: 4px 6px 4px 2px;
  text-align: left;
  cursor: pointer;
}
body[data-page="pricing-builder"] .pb-mobile-bar-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
body[data-page="pricing-builder"] .pb-mobile-bar-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body[data-page="pricing-builder"] .pb-mobile-bar-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #0f172a;
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
body[data-page="pricing-builder"] .pb-mobile-bar-cycle-tag {
  font-size: 0.66rem;
  font-weight: 700;
  color: #1565c0;
  background: rgba(21, 101, 192, 0.1);
  padding: 2px 7px;
  border-radius: 6px;
  white-space: nowrap;
}
body[data-page="pricing-builder"] .pb-mobile-bar-chevron {
  color: #94a3b8;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
body[data-page="pricing-builder"]
  #pbMobileBarToggle[aria-expanded="true"]
  .pb-mobile-bar-chevron {
  transform: rotate(180deg);
}
body[data-page="pricing-builder"] .pb-mobile-bar-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0 18px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    opacity 0.2s,
    background 0.2s;
}
body[data-page="pricing-builder"] .pb-mobile-bar-cta.disabled {
  background: #cbd5e1;
  color: #64748b;
  pointer-events: none;
}
body[data-page="pricing-builder"] .pb-mobile-bar-detail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
body[data-page="pricing-builder"] .pb-mobile-bar-detail.expanded {
  max-height: 55vh;
  overflow-y: auto;
}
body[data-page="pricing-builder"] .pb-mobile-bar-detail-inner {
  padding: 18px 16px 10px;
}
body[data-page="pricing-builder"] .pb-mobile-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body[data-page="pricing-builder"] .pb-mobile-empty {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 14px 10px 20px;
}
body[data-page="pricing-builder"] .pb-mobile-empty i {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
body[data-page="pricing-builder"] .pb-mobile-disclaimer {
  margin-top: 12px;
}
body[data-page="pricing-builder"] .pb-mobile-cycle-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1565c0;
  background: rgba(21, 101, 192, 0.08);
  border: 1px solid rgba(21, 101, 192, 0.18);
  padding: 7px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  body[data-page="pricing-builder"] {
    padding-bottom: 76px;
  }
}
@media (min-width: 992px) {
  body[data-page="pricing-builder"] .pb-mobile-bar {
    display: none !important;
  }
}

body[data-page="pricing-builder"] .btn-view-packages {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  color: #64748b;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
body[data-page="pricing-builder"] .btn-view-packages:hover {
  color: #1565c0;
}
body[data-page="pricing-builder"] .savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
body[data-page="pricing-builder"] .services-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(21, 101, 192, 0.08);
  color: #1565c0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── FAQ ── */
body[data-page="pricing-builder"] .faq-section {
  padding: 5rem 0;
  background: #fff;
}
body[data-page="pricing-builder"] .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f0fe, #e0f2f1);
  color: #1565c0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
body[data-page="pricing-builder"] .section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a2e;
}
body[data-page="pricing-builder"] .accordion-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
body[data-page="pricing-builder"] .accordion-button {
  font-weight: 600;
  color: #1a1a2e;
  background: #fff;
  border-radius: 12px !important;
  font-size: 0.95rem;
}
body[data-page="pricing-builder"] .accordion-button:not(.collapsed) {
  color: #1565c0;
  background: #e8f0fe;
  box-shadow: none;
}
body[data-page="pricing-builder"] .accordion-button::after {
  filter: none;
}
body[data-page="pricing-builder"] .accordion-body {
  background: #fff;
  color: #4b5563;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── CTA ── */
body[data-page="pricing-builder"] .cta-section {
  background: linear-gradient(135deg, #0d47a1, #00695c);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
body[data-page="pricing-builder"] .cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
body[data-page="pricing-builder"] .cta-section p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 550px;
  margin: 0 auto 2rem;
}
body[data-page="pricing-builder"] .btn-cta-white {
  background: #fff;
  color: #1565c0;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
body[data-page="pricing-builder"] .btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #1565c0;
}
body[data-page="pricing-builder"] .btn-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    border-color 0.2s;
  margin-left: 1rem;
}
body[data-page="pricing-builder"] .btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* ── Footer ── */
/* ── Utilities ── */
body[data-page="pricing-builder"] .fw-600 {
  font-weight: 600;
}

@media (max-width: 991.98px) {
  body[data-page="pricing-builder"] .summary-card {
    position: static;
    margin-top: 2rem;
  }
}

/* ============================================================
   Page: services.html
   ============================================================ */

body[data-page="services"] .filter-btn {
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  background: var(--white);
  color: var(--text-body);
  transition: var(--transition-fast);
  cursor: pointer;
}
body[data-page="services"] .filter-btn.active,
body[data-page="services"] .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
body[data-page="services"] .filter-btn.teal.active {
  background: var(--secondary);
  border-color: var(--secondary);
}
body[data-page="services"] .filter-btn.purple.active {
  background: var(--purple);
  border-color: var(--purple);
}
body[data-page="services"] .service-card-wrap {
  transition: var(--transition);
}

/* ============================================================
   Page: services/klinic-engage.html
   ============================================================ */

:root {
  --service-color: #00897b;
  --service-light: #e0f2f1;
  --service-dark: #00695c;
}
body[data-page="engage"] .service-hero {
  min-height: 65vh;
  background: linear-gradient(
    135deg,
    #004d40 0%,
    #00695c 40%,
    #00897b 70%,
    #00acc1 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
body[data-page="engage"] .service-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
body[data-page="engage"] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
body[data-page="engage"] .service-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
body[data-page="engage"] .service-hero h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
body[data-page="engage"] .service-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}
body[data-page="engage"] .breadcrumb-hero .breadcrumb-item,
body[data-page="engage"] .breadcrumb-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
}
body[data-page="engage"] .breadcrumb-hero .breadcrumb-item.active {
  color: #fff;
}
body[data-page="engage"]
  .breadcrumb-hero
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
body[data-page="engage"] .btn-hero-primary {
  background: #fff;
  color: var(--service-dark);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="engage"] .btn-hero-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
body[data-page="engage"] .btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="engage"] .btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Social Media Mockup */
body[data-page="engage"] .social-mockup {
  background: #f0f2f5;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  border: 1px solid #e8ecf0;
  padding: 14px;
}
body[data-page="engage"] .sm-post-card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
body[data-page="engage"] .sm-post-header {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
body[data-page="engage"] .sm-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.72rem;
  color: #fff;
  flex-shrink: 0;
}
body[data-page="engage"] .sm-profile-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #111;
}
body[data-page="engage"] .sm-profile-time {
  font-size: 0.62rem;
  color: #999;
}
body[data-page="engage"] .sm-post-image {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}
body[data-page="engage"] .sm-post-text {
  padding: 8px 12px;
  font-size: 0.7rem;
  color: #333;
  line-height: 1.5;
}
body[data-page="engage"] .sm-post-actions {
  padding: 6px 12px;
  display: flex;
  gap: 14px;
  border-top: 1px solid #f0f2f5;
}
body[data-page="engage"] .sm-action {
  font-size: 0.65rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}
body[data-page="engage"] .sm-action i {
  font-size: 0.75rem;
}
body[data-page="engage"] .platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  margin-bottom: 8px;
}

body[data-page="engage"] .section-overview {
  padding: 90px 0;
  background: #fff;
}
body[data-page="engage"] .overview-tag {
  display: inline-block;
  background: var(--service-light);
  color: var(--service-color);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body[data-page="engage"] .overview-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}
body[data-page="engage"] .overview-body {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
body[data-page="engage"] .overview-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
body[data-page="engage"] .overview-check i {
  color: var(--service-color);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
body[data-page="engage"] .overview-check span {
  color: #444;
  font-size: 0.95rem;
}

body[data-page="engage"] .section-features {
  padding: 90px 0;
  background: #f8f9fb;
}
body[data-page="engage"] .section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--service-color);
  margin-bottom: 8px;
}
body[data-page="engage"] .section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}
body[data-page="engage"] .section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 560px;
}
body[data-page="engage"] .feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
}
body[data-page="engage"] .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 137, 123, 0.12);
  border-color: #b2dfdb;
}
body[data-page="engage"] .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--service-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body[data-page="engage"] .feature-icon i {
  color: var(--service-color);
  font-size: 1.3rem;
}
body[data-page="engage"] .feature-card h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1rem;
  margin-bottom: 8px;
}
body[data-page="engage"] .feature-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

body[data-page="engage"] .section-content-types {
  padding: 90px 0;
  background: #fff;
}
body[data-page="engage"] .content-type-card {
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}
body[data-page="engage"] .content-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
body[data-page="engage"] .content-type-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
}
body[data-page="engage"] .content-type-card h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="engage"] .content-type-card p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

body[data-page="engage"] .section-hiw {
  padding: 90px 0;
  background: linear-gradient(135deg, #004d40 0%, #00695c 60%, #00897b 100%);
}
body[data-page="engage"] .section-hiw .section-label {
  color: rgba(255, 255, 255, 0.7);
}
body[data-page="engage"] .section-hiw .section-title {
  color: #fff;
}
body[data-page="engage"] .section-hiw .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
}
body[data-page="engage"] .hiw-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
body[data-page="engage"] .hiw-step:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
body[data-page="engage"] .hiw-step-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body[data-page="engage"] .hiw-step h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
body[data-page="engage"] .hiw-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
}

body[data-page="engage"] .section-metrics {
  padding: 80px 0;
  background: #f8f9fb;
}
body[data-page="engage"] .metric-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  height: 100%;
}
body[data-page="engage"] .metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 137, 123, 0.1);
}
body[data-page="engage"] .metric-value {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--service-color);
  line-height: 1;
  margin-bottom: 8px;
}
body[data-page="engage"] .metric-label {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}

body[data-page="engage"] .section-related {
  padding: 80px 0;
  background: #fff;
}
body[data-page="engage"] .related-card {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  height: 100%;
}
body[data-page="engage"] .related-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #b2dfdb;
}
body[data-page="engage"] .related-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
body[data-page="engage"] .related-card h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="engage"] .related-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
body[data-page="engage"] .related-link {
  color: var(--service-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body[data-page="engage"] .section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}
body[data-page="engage"] .cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 137, 123, 0.12);
}
body[data-page="engage"] .cta-box h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
body[data-page="engage"] .cta-box p {
  color: #666;
  max-width: 480px;
  margin: 0 auto 28px;
}
body[data-page="engage"] .btn-cta {
  background: var(--service-color);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
body[data-page="engage"] .btn-cta:hover {
  background: var(--service-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 137, 123, 0.35);
  color: #fff;
}

/* ============================================================
   Page: services/klinic-leads.html
   ============================================================ */

:root {
  --service-color: #00897b;
  --service-light: #e0f2f1;
  --service-dark: #00695c;
}
body[data-page="leads"] .service-hero {
  min-height: 65vh;
  background: linear-gradient(
    135deg,
    #004d40 0%,
    #00695c 40%,
    #00897b 70%,
    #26a69a 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
body[data-page="leads"] .service-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
body[data-page="leads"] .service-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
body[data-page="leads"] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
body[data-page="leads"] .service-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
body[data-page="leads"] .service-hero h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
body[data-page="leads"] .service-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}
body[data-page="leads"] .breadcrumb-hero .breadcrumb-item,
body[data-page="leads"] .breadcrumb-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
}
body[data-page="leads"] .breadcrumb-hero .breadcrumb-item.active {
  color: #fff;
}
body[data-page="leads"]
  .breadcrumb-hero
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
body[data-page="leads"] .btn-hero-primary {
  background: #fff;
  color: var(--service-dark);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="leads"] .btn-hero-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
body[data-page="leads"] .btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="leads"] .btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Ads Mockup */
body[data-page="leads"] .ads-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  border: 1px solid #e8ecf0;
}
body[data-page="leads"] .ads-topbar {
  background: #f8f9fa;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}
body[data-page="leads"] .ads-logo {
  font-size: 0.82rem;
  font-weight: 700;
}
body[data-page="leads"] .ads-logo .g {
  color: #4285f4;
}
.ads-logo .o1 {
  color: #ea4335;
}
.ads-logo .o2 {
  color: #fbbc04;
}
.ads-logo .g2 {
  color: #4285f4;
}
.ads-logo .l {
  color: #34a853;
}
.ads-logo .e {
  color: #ea4335;
}
body[data-page="leads"] .ads-search {
  flex: 1;
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: #333;
}
body[data-page="leads"] .ad-unit {
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
}
body[data-page="leads"] .ad-unit:last-child {
  border-bottom: none;
}
body[data-page="leads"] .ad-label {
  display: inline-block;
  background: #fff8e1;
  color: #f57f17;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-bottom: 4px;
  border: 1px solid #ffe082;
}
body[data-page="leads"] .ad-title {
  font-size: 0.9rem;
  color: #1558d6;
  font-weight: 500;
  margin-bottom: 2px;
}
body[data-page="leads"] .ad-url {
  font-size: 0.68rem;
  color: #006621;
  margin-bottom: 4px;
}
body[data-page="leads"] .ad-desc {
  font-size: 0.7rem;
  color: #545454;
  line-height: 1.5;
}
body[data-page="leads"] .ad-extensions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}
body[data-page="leads"] .ad-ext {
  font-size: 0.65rem;
  color: #1558d6;
}
body[data-page="leads"] .ad-unit.featured {
  background: #f0fdf4;
  border-left: 3px solid #00897b;
  border-radius: 0 8px 8px 0;
}

body[data-page="leads"] .leads-funnel {
  display: flex;
  flex-direction: column;
  gap: 0;
}
body[data-page="leads"] .funnel-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
}
body[data-page="leads"] .funnel-step:nth-child(odd) {
  background: #f8f9fb;
}
body[data-page="leads"] .funnel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body[data-page="leads"] .funnel-text h6 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
body[data-page="leads"] .funnel-text p {
  font-size: 0.68rem;
  color: #666;
  margin: 0;
}
body[data-page="leads"] .funnel-count {
  margin-left: auto;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--service-color);
  font-size: 0.9rem;
  white-space: nowrap;
}

body[data-page="leads"] .section-overview {
  padding: 90px 0;
  background: #fff;
}
body[data-page="leads"] .overview-tag {
  display: inline-block;
  background: var(--service-light);
  color: var(--service-color);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body[data-page="leads"] .overview-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}
body[data-page="leads"] .overview-body {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
body[data-page="leads"] .overview-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
body[data-page="leads"] .overview-check i {
  color: var(--service-color);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
body[data-page="leads"] .overview-check span {
  color: #444;
  font-size: 0.95rem;
}

body[data-page="leads"] .section-features {
  padding: 90px 0;
  background: #f8f9fb;
}
body[data-page="leads"] .section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--service-color);
  margin-bottom: 8px;
}
body[data-page="leads"] .section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}
body[data-page="leads"] .section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 560px;
}
body[data-page="leads"] .feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
}
body[data-page="leads"] .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 137, 123, 0.12);
  border-color: #b2dfdb;
}
body[data-page="leads"] .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--service-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body[data-page="leads"] .feature-icon i {
  color: var(--service-color);
  font-size: 1.3rem;
}
body[data-page="leads"] .feature-card h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1rem;
  margin-bottom: 8px;
}
body[data-page="leads"] .feature-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

body[data-page="leads"] .section-hiw {
  padding: 90px 0;
  background: linear-gradient(135deg, #004d40 0%, #00695c 60%, #00897b 100%);
}
body[data-page="leads"] .section-hiw .section-label {
  color: rgba(255, 255, 255, 0.7);
}
body[data-page="leads"] .section-hiw .section-title {
  color: #fff;
}
body[data-page="leads"] .section-hiw .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
}
body[data-page="leads"] .hiw-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
body[data-page="leads"] .hiw-step:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
body[data-page="leads"] .hiw-step-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body[data-page="leads"] .hiw-step h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
body[data-page="leads"] .hiw-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
}

body[data-page="leads"] .section-metrics {
  padding: 80px 0;
  background: #f8f9fb;
}
body[data-page="leads"] .metric-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  height: 100%;
}
body[data-page="leads"] .metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 137, 123, 0.1);
}
body[data-page="leads"] .metric-value {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--service-color);
  line-height: 1;
  margin-bottom: 8px;
}
body[data-page="leads"] .metric-label {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}

body[data-page="leads"] .section-related {
  padding: 80px 0;
  background: #fff;
}
body[data-page="leads"] .related-card {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  height: 100%;
}
body[data-page="leads"] .related-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #b2dfdb;
}
body[data-page="leads"] .related-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
body[data-page="leads"] .related-card h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="leads"] .related-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
body[data-page="leads"] .related-link {
  color: var(--service-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body[data-page="leads"] .section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}
body[data-page="leads"] .cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 137, 123, 0.12);
}
body[data-page="leads"] .cta-box h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
body[data-page="leads"] .cta-box p {
  color: #666;
  max-width: 480px;
  margin: 0 auto 28px;
}
body[data-page="leads"] .btn-cta {
  background: var(--service-color);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
body[data-page="leads"] .btn-cta:hover {
  background: var(--service-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 137, 123, 0.35);
  color: #fff;
}

body[data-page="leads"] .section-benefits {
  padding: 90px 0;
  background: #fff;
}
body[data-page="leads"] .benefit-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
body[data-page="leads"] .benefit-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--service-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body[data-page="leads"] .benefit-content h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="leads"] .benefit-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
body[data-page="leads"] .benefit-stat {
  display: inline-block;
  background: var(--service-light);
  color: var(--service-color);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ============================================================
   Page: services/klinic-manage.html
   ============================================================ */

:root {
  --service-color: #1565c0;
  --service-light: #e3f2fd;
  --service-mid: #1976d2;
  --service-dark: #0d47a1;
}
body[data-page="manage"] .service-hero {
  min-height: 65vh;
  background: linear-gradient(
    135deg,
    #0d47a1 0%,
    #1565c0 40%,
    #1976d2 70%,
    #1e88e5 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
body[data-page="manage"] .service-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
body[data-page="manage"] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
body[data-page="manage"] .service-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
body[data-page="manage"] .service-hero h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
body[data-page="manage"] .service-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}
body[data-page="manage"] .breadcrumb-hero .breadcrumb-item,
body[data-page="manage"] .breadcrumb-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
}
body[data-page="manage"] .breadcrumb-hero .breadcrumb-item.active {
  color: #fff;
}
body[data-page="manage"]
  .breadcrumb-hero
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
body[data-page="manage"] .btn-hero-primary {
  background: #fff;
  color: var(--service-dark);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="manage"] .btn-hero-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
body[data-page="manage"] .btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="manage"] .btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Dashboard Mockup */
body[data-page="manage"] .dashboard-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  border: 1px solid #e8ecf0;
}
body[data-page="manage"] .dash-topbar {
  background: #1565c0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body[data-page="manage"] .dash-topbar-logo {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
body[data-page="manage"] .dash-topbar-user {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
body[data-page="manage"] .dash-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #fff;
  font-weight: 700;
}
body[data-page="manage"] .dash-body {
  display: flex;
}
body[data-page="manage"] .dash-sidebar {
  background: #f8f9fb;
  width: 100px;
  padding: 12px 8px;
  border-right: 1px solid #eef0f4;
}
body[data-page="manage"] .dash-nav-item {
  padding: 8px 6px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 4px;
  cursor: pointer;
}
body[data-page="manage"] .dash-nav-item.active {
  background: #e3f2fd;
}
body[data-page="manage"] .dash-nav-item i {
  font-size: 0.9rem;
  color: #1565c0;
  display: block;
  margin-bottom: 3px;
}
body[data-page="manage"] .dash-nav-item span {
  font-size: 0.58rem;
  color: #555;
}
body[data-page="manage"] .dash-content {
  flex: 1;
  padding: 12px;
}
body[data-page="manage"] .dash-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
body[data-page="manage"] .dash-stat {
  flex: 1;
  background: #f0f4ff;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
body[data-page="manage"] .dash-stat-num {
  font-size: 1rem;
  font-weight: 800;
  color: #1565c0;
  font-family: "Manrope", sans-serif;
}
body[data-page="manage"] .dash-stat-label {
  font-size: 0.58rem;
  color: #666;
}
body[data-page="manage"] .dash-table {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eef0f4;
  overflow: hidden;
}
body[data-page="manage"] .dash-table-header {
  background: #f8f9fb;
  padding: 7px 10px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #eef0f4;
}
body[data-page="manage"] .dash-th {
  font-size: 0.62rem;
  font-weight: 700;
  color: #888;
  flex: 1;
}
body[data-page="manage"] .dash-table-row {
  padding: 7px 10px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #f3f4f6;
  align-items: center;
}
body[data-page="manage"] .dash-td {
  font-size: 0.62rem;
  color: #444;
  flex: 1;
}
body[data-page="manage"] .dash-badge-green {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
}
body[data-page="manage"] .dash-badge-yellow {
  background: #fff8e1;
  color: #f57f17;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
}

body[data-page="manage"] .section-overview {
  padding: 90px 0;
  background: #fff;
}
body[data-page="manage"] .overview-tag {
  display: inline-block;
  background: var(--service-light);
  color: var(--service-color);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body[data-page="manage"] .overview-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}
body[data-page="manage"] .overview-body {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
body[data-page="manage"] .overview-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
body[data-page="manage"] .overview-check i {
  color: var(--service-color);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
body[data-page="manage"] .overview-check span {
  color: #444;
  font-size: 0.95rem;
}

/* Before/After */
body[data-page="manage"] .before-after {
  display: flex;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef0f4;
}
body[data-page="manage"] .before-col,
body[data-page="manage"] .after-col {
  flex: 1;
  padding: 24px 20px;
}
body[data-page="manage"] .before-col {
  background: #fff3f3;
}
body[data-page="manage"] .after-col {
  background: #f0fdf4;
}
body[data-page="manage"] .ba-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body[data-page="manage"] .ba-label.before {
  color: #c62828;
}
body[data-page="manage"] .ba-label.after {
  color: #2e7d32;
}
body[data-page="manage"] .ba-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
body[data-page="manage"] .ba-item i {
  margin-top: 2px;
  flex-shrink: 0;
}
body[data-page="manage"] .ba-item span {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
}

body[data-page="manage"] .section-features {
  padding: 90px 0;
  background: #f8f9fb;
}
body[data-page="manage"] .section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--service-color);
  margin-bottom: 8px;
}
body[data-page="manage"] .section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}
body[data-page="manage"] .section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 560px;
}
body[data-page="manage"] .feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
}
body[data-page="manage"] .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(21, 101, 192, 0.12);
  border-color: #bbdefb;
}
body[data-page="manage"] .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--service-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body[data-page="manage"] .feature-icon i {
  color: var(--service-color);
  font-size: 1.3rem;
}
body[data-page="manage"] .feature-card h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1rem;
  margin-bottom: 8px;
}
body[data-page="manage"] .feature-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

body[data-page="manage"] .section-benefits {
  padding: 90px 0;
  background: #fff;
}

body[data-page="manage"] .section-hiw {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 60%, #1976d2 100%);
}
body[data-page="manage"] .section-hiw .section-label {
  color: rgba(255, 255, 255, 0.7);
}
body[data-page="manage"] .section-hiw .section-title {
  color: #fff;
}
body[data-page="manage"] .section-hiw .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
}
body[data-page="manage"] .hiw-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
body[data-page="manage"] .hiw-step:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
body[data-page="manage"] .hiw-step-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body[data-page="manage"] .hiw-step h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
body[data-page="manage"] .hiw-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
}

body[data-page="manage"] .section-metrics {
  padding: 80px 0;
  background: #f8f9fb;
}
body[data-page="manage"] .metric-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  height: 100%;
}
body[data-page="manage"] .metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 101, 192, 0.1);
}
body[data-page="manage"] .metric-value {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--service-color);
  line-height: 1;
  margin-bottom: 8px;
}
body[data-page="manage"] .metric-label {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}

body[data-page="manage"] .section-related {
  padding: 80px 0;
  background: #fff;
}
body[data-page="manage"] .related-card {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  height: 100%;
}
body[data-page="manage"] .related-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #bbdefb;
}
body[data-page="manage"] .related-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
body[data-page="manage"] .related-card h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="manage"] .related-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
body[data-page="manage"] .related-link {
  color: var(--service-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body[data-page="manage"] .section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
body[data-page="manage"] .cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.12);
}
body[data-page="manage"] .cta-box h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
body[data-page="manage"] .cta-box p {
  color: #666;
  max-width: 480px;
  margin: 0 auto 28px;
}
body[data-page="manage"] .btn-cta {
  background: var(--service-color);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
body[data-page="manage"] .btn-cta:hover {
  background: var(--service-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
  color: #fff;
}

/* ============================================================
   Page: services/klinic-visibility.html
   ============================================================ */

:root {
  --service-color: #00897b;
  --service-light: #e0f2f1;
  --service-mid: #00acc1;
  --service-dark: #00695c;
}
body[data-page="visibility"] .service-hero {
  min-height: 65vh;
  background: linear-gradient(
    135deg,
    #004d40 0%,
    #00695c 40%,
    #00897b 70%,
    #00acc1 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
body[data-page="visibility"] .service-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
body[data-page="visibility"] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
body[data-page="visibility"] .service-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
body[data-page="visibility"] .service-hero h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
body[data-page="visibility"] .service-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}
body[data-page="visibility"] .breadcrumb-hero .breadcrumb-item,
body[data-page="visibility"] .breadcrumb-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
}
body[data-page="visibility"] .breadcrumb-hero .breadcrumb-item.active {
  color: #fff;
}
body[data-page="visibility"]
  .breadcrumb-hero
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
body[data-page="visibility"] .btn-hero-primary {
  background: #fff;
  color: var(--service-dark);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="visibility"] .btn-hero-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
body[data-page="visibility"] .btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="visibility"] .btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* SEO/SERP Mockup */
body[data-page="visibility"] .serp-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  border: 1px solid #e8ecf0;
}
body[data-page="visibility"] .serp-search-bar {
  background: #f8f9fa;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}
body[data-page="visibility"] .serp-logo {
  font-weight: 800;
  font-size: 1rem;
  color: #4285f4;
  letter-spacing: -0.5px;
}
body[data-page="visibility"] .serp-logo span:nth-child(2) {
  color: #ea4335;
}
.serp-logo span:nth-child(3) {
  color: #fbbc04;
}
.serp-logo span:nth-child(4) {
  color: #4285f4;
}
.serp-logo span:nth-child(5) {
  color: #34a853;
}
.serp-logo span:nth-child(6) {
  color: #ea4335;
}
body[data-page="visibility"] .serp-input {
  flex: 1;
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 0.82rem;
  color: #333;
}
body[data-page="visibility"] .serp-results {
  padding: 14px 16px;
}
body[data-page="visibility"] .serp-result {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f3f4f6;
}
body[data-page="visibility"] .serp-result:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
body[data-page="visibility"] .serp-result-url {
  font-size: 0.68rem;
  color: #006621;
  margin-bottom: 2px;
}
body[data-page="visibility"] .serp-result-title {
  font-size: 0.88rem;
  color: #1558d6;
  font-weight: 500;
  margin-bottom: 3px;
  cursor: pointer;
}
body[data-page="visibility"] .serp-result-title:hover {
  text-decoration: underline;
}
body[data-page="visibility"] .serp-result-desc {
  font-size: 0.7rem;
  color: #545454;
  line-height: 1.5;
}
body[data-page="visibility"] .serp-result.highlighted {
  background: #f0fdf4;
  border-radius: 8px;
  padding: 10px;
  margin-left: -4px;
  border: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0 !important;
}
body[data-page="visibility"] .serp-rank-badge {
  display: inline-block;
  background: #00897b;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}
body[data-page="visibility"] .gmb-card {
  background: #f8f9fb;
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  padding: 12px;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
body[data-page="visibility"] .gmb-img {
  width: 60px;
  height: 50px;
  background: linear-gradient(135deg, #00897b, #004d40);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body[data-page="visibility"] .gmb-img i {
  color: #fff;
  font-size: 1.1rem;
}
body[data-page="visibility"] .gmb-info-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #111;
}
body[data-page="visibility"] .gmb-info-rating {
  color: #f9a825;
  font-size: 0.68rem;
}
body[data-page="visibility"] .gmb-info-meta {
  color: #666;
  font-size: 0.65rem;
}

body[data-page="visibility"] .section-overview {
  padding: 90px 0;
  background: #fff;
}
body[data-page="visibility"] .overview-tag {
  display: inline-block;
  background: var(--service-light);
  color: var(--service-color);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body[data-page="visibility"] .overview-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}
body[data-page="visibility"] .overview-body {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
body[data-page="visibility"] .overview-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
body[data-page="visibility"] .overview-check i {
  color: var(--service-color);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
body[data-page="visibility"] .overview-check span {
  color: #444;
  font-size: 0.95rem;
}

body[data-page="visibility"] .section-features {
  padding: 90px 0;
  background: #f8f9fb;
}
body[data-page="visibility"] .section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--service-color);
  margin-bottom: 8px;
}
body[data-page="visibility"] .section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}
body[data-page="visibility"] .section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 560px;
}
body[data-page="visibility"] .feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
}
body[data-page="visibility"] .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 137, 123, 0.12);
  border-color: #b2dfdb;
}
body[data-page="visibility"] .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--service-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body[data-page="visibility"] .feature-icon i {
  color: var(--service-color);
  font-size: 1.3rem;
}
body[data-page="visibility"] .feature-card h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1rem;
  margin-bottom: 8px;
}
body[data-page="visibility"] .feature-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

body[data-page="visibility"] .section-benefits {
  padding: 90px 0;
  background: #fff;
}
body[data-page="visibility"] .benefit-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
body[data-page="visibility"] .benefit-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--service-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body[data-page="visibility"] .benefit-content h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="visibility"] .benefit-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
body[data-page="visibility"] .benefit-stat {
  display: inline-block;
  background: var(--service-light);
  color: var(--service-color);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

body[data-page="visibility"] .section-hiw {
  padding: 90px 0;
  background: linear-gradient(135deg, #004d40 0%, #00695c 60%, #00897b 100%);
}
body[data-page="visibility"] .section-hiw .section-label {
  color: rgba(255, 255, 255, 0.7);
}
body[data-page="visibility"] .section-hiw .section-title {
  color: #fff;
}
body[data-page="visibility"] .section-hiw .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
}
body[data-page="visibility"] .hiw-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
body[data-page="visibility"] .hiw-step:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
body[data-page="visibility"] .hiw-step-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body[data-page="visibility"] .hiw-step h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
body[data-page="visibility"] .hiw-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
}

body[data-page="visibility"] .section-metrics {
  padding: 80px 0;
  background: #f8f9fb;
}
body[data-page="visibility"] .metric-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  height: 100%;
}
body[data-page="visibility"] .metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 137, 123, 0.1);
}
body[data-page="visibility"] .metric-value {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--service-color);
  line-height: 1;
  margin-bottom: 8px;
}
body[data-page="visibility"] .metric-label {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}

body[data-page="visibility"] .section-related {
  padding: 80px 0;
  background: #fff;
}
body[data-page="visibility"] .related-card {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  height: 100%;
}
body[data-page="visibility"] .related-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #b2dfdb;
}
body[data-page="visibility"] .related-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
body[data-page="visibility"] .related-card h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="visibility"] .related-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
body[data-page="visibility"] .related-link {
  color: var(--service-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body[data-page="visibility"] .section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}
body[data-page="visibility"] .cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 137, 123, 0.12);
}
body[data-page="visibility"] .cta-box h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
body[data-page="visibility"] .cta-box p {
  color: #666;
  max-width: 480px;
  margin: 0 auto 28px;
}
body[data-page="visibility"] .btn-cta {
  background: var(--service-color);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
body[data-page="visibility"] .btn-cta:hover {
  background: var(--service-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 137, 123, 0.35);
  color: #fff;
}

/* ============================================================
   Page: services/klinic-online.html
   ============================================================ */

:root {
  --service-color: #1565c0;
  --service-light: #e3f2fd;
  --service-mid: #1976d2;
  --service-dark: #0d47a1;
}

/* ── Hero ── */
body[data-page="online"] .service-hero {
  min-height: 65vh;
  background: linear-gradient(
    135deg,
    #0d47a1 0%,
    #1565c0 40%,
    #1976d2 70%,
    #1e88e5 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
body[data-page="online"] .service-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
body[data-page="online"] .service-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
body[data-page="online"] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
body[data-page="online"] .hero-badge i {
  font-size: 0.8rem;
}
body[data-page="online"] .service-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
body[data-page="online"] .service-hero h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
body[data-page="online"] .service-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.breadcrumb-hero .breadcrumb-item,
body[data-page="online"] .breadcrumb-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
}
body[data-page="online"] .breadcrumb-hero .breadcrumb-item.active {
  color: #fff;
}
body[data-page="online"]
  .breadcrumb-hero
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
body[data-page="online"] .btn-hero-primary {
  background: #fff;
  color: var(--service-dark);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="online"] .btn-hero-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
body[data-page="online"] .btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
body[data-page="online"] .btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ── Website Mockup ── */
body[data-page="online"] .website-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  font-size: 0;
  border: 1px solid #e8ecf0;
}
body[data-page="online"] .mockup-browser-bar {
  background: #f1f3f4;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #dde1e5;
}
body[data-page="online"] .mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
body[data-page="online"] .mockup-dot.red {
  background: #ff5f57;
}
body[data-page="online"] .mockup-dot.yellow {
  background: #ffbd2e;
}
body[data-page="online"] .mockup-dot.green {
  background: #28c840;
}
body[data-page="online"] .mockup-url-bar {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: #555;
  border: 1px solid #dde1e5;
  font-family: monospace;
}
body[data-page="online"] .mockup-site-header {
  background: #1565c0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}
body[data-page="online"] .mockup-logo {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
body[data-page="online"] .mockup-nav {
  display: flex;
  gap: 12px;
}
body[data-page="online"] .mockup-nav span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
}
body[data-page="online"] .mockup-hero-section {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 24px 16px;
  text-align: center;
}
body[data-page="online"] .mockup-hero-title {
  color: #1565c0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 6px;
}
body[data-page="online"] .mockup-hero-sub {
  color: #555;
  font-size: 0.68rem;
  margin-bottom: 12px;
}
body[data-page="online"] .mockup-book-btn {
  background: #1565c0;
  color: #fff;
  border: none;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}
body[data-page="online"] .mockup-doctors {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #fafafa;
}
body[data-page="online"] .mockup-doctor-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid #e8ecf0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
body[data-page="online"] .mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
}
body[data-page="online"] .mockup-dr-name {
  font-size: 0.65rem;
  color: #222;
  font-weight: 600;
  line-height: 1.2;
}
body[data-page="online"] .mockup-dr-spec {
  font-size: 0.58rem;
  color: #888;
}
body[data-page="online"] .mockup-footer-strip {
  background: #1565c0;
  height: 8px;
}

/* ── Overview Section ── */
body[data-page="online"] .section-overview {
  padding: 90px 0;
  background: #fff;
}
body[data-page="online"] .overview-tag {
  display: inline-block;
  background: var(--service-light);
  color: var(--service-color);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body[data-page="online"] .overview-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}
body[data-page="online"] .overview-body {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
body[data-page="online"] .overview-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
body[data-page="online"] .overview-check i {
  color: var(--service-color);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
body[data-page="online"] .overview-check span {
  color: #444;
  font-size: 0.95rem;
}

/* ── Features Section ── */
body[data-page="online"] .section-features {
  padding: 90px 0;
  background: #f8f9fb;
}
body[data-page="online"] .section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--service-color);
  margin-bottom: 8px;
}
body[data-page="online"] .section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}
body[data-page="online"] .section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 560px;
}
body[data-page="online"] .feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
}
body[data-page="online"] .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(21, 101, 192, 0.12);
  border-color: #bbdefb;
}
body[data-page="online"] .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--service-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body[data-page="online"] .feature-icon i {
  color: var(--service-color);
  font-size: 1.3rem;
}
body[data-page="online"] .feature-card h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1rem;
  margin-bottom: 8px;
}
body[data-page="online"] .feature-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Benefits Section ── */
body[data-page="online"] .section-benefits {
  padding: 90px 0;
  background: #fff;
}
body[data-page="online"] .benefit-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
body[data-page="online"] .benefit-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--service-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body[data-page="online"] .benefit-content h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="online"] .benefit-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
body[data-page="online"] .benefit-stat {
  display: inline-block;
  background: var(--service-light);
  color: var(--service-color);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ── How It Works ── */
body[data-page="online"] .section-hiw {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 60%, #1976d2 100%);
}
body[data-page="online"] .section-hiw .section-label {
  color: rgba(255, 255, 255, 0.7);
}
body[data-page="online"] .section-hiw .section-title {
  color: #fff;
}
body[data-page="online"] .section-hiw .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
}
body[data-page="online"] .hiw-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
body[data-page="online"] .hiw-step:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
body[data-page="online"] .hiw-step-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body[data-page="online"] .hiw-step h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
body[data-page="online"] .hiw-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
}

/* ── Metrics ── */
body[data-page="online"] .section-metrics {
  padding: 80px 0;
  background: #f8f9fb;
}
body[data-page="online"] .metric-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  height: 100%;
}
body[data-page="online"] .metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 101, 192, 0.1);
}
body[data-page="online"] .metric-value {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--service-color);
  line-height: 1;
  margin-bottom: 8px;
}
body[data-page="online"] .metric-label {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Related Services ── */
body[data-page="online"] .section-related {
  padding: 80px 0;
  background: #fff;
}
body[data-page="online"] .related-card {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #eef0f4;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  height: 100%;
}
body[data-page="online"] .related-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #bbdefb;
}
body[data-page="online"] .related-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}
body[data-page="online"] .related-card h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
body[data-page="online"] .related-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
body[data-page="online"] .related-link {
  color: var(--service-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── CTA ── */
body[data-page="online"] .section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
body[data-page="online"] .cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.12);
}
body[data-page="online"] .cta-box h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
body[data-page="online"] .cta-box p {
  color: #666;
  max-width: 480px;
  margin: 0 auto 28px;
}
body[data-page="online"] .btn-cta {
  background: var(--service-color);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
body[data-page="online"] .btn-cta:hover {
  background: var(--service-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
  color: #fff;
}

/* ============================================================
   Page: about.html
   ============================================================ */

/* Supplemental styles for about page elements not in styles.css */
body[data-page="about"] .page-hero {
  padding: 5rem 0 4rem;
}
body[data-page="about"] .page-hero .breadcrumb-item a {
  color: var(--primary, #2563eb);
  text-decoration: none;
}
body[data-page="about"] .page-hero .breadcrumb-item.active {
  color: var(--text-body, #475569);
}
body[data-page="about"] .story-pull-quote {
  border-left: 5px solid var(--primary, #2563eb);
  padding: 32px 36px;
  background: linear-gradient(135deg, #ebf4ff, #e6faf8);
  border-radius: 0 20px 20px 0;
}
body[data-page="about"] .story-pull-quote p {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-dark, #0f172a);
  margin: 0;
  font-family: "Manrope", sans-serif;
}
/* ============================================================
   Shared Footer (footer.js)
   ============================================================ */

/* Texture overlay via pseudo-element */
.kk-footer {
  position: relative;
  background-color: #0a0a0f;
  color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
  font-family: "Inter", "Manrope", sans-serif;
}

/* Subtle noise texture */
.kk-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.012) 40px,
      rgba(255, 255, 255, 0.012) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.012) 40px,
      rgba(255, 255, 255, 0.012) 41px
    );
  pointer-events: none;
  z-index: 0;
}

.kk-footer > * {
  position: relative;
  z-index: 1;
}

/* Top gradient accent line */
.kk-footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, #1565c0 0%, #00897b 50%, #5c35c5 100%);
  width: 100%;
}

/* ── Top tagline row ── */
.kk-footer-top {
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.kk-footer-tagline-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.kk-footer-tagline {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
  margin: 0;
}

.kk-footer-tagline-accent {
  background: linear-gradient(90deg, #4fc3f7, #80cbc4, #ce93d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kk-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.3);
}

.kk-footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.45);
  color: #fff;
  gap: 12px;
}

.kk-footer-cta-secondary {
  display: inline-flex;
  align-items: center;
  margin-left: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1px;
  transition: all 0.25s;
}

.kk-footer-cta-secondary:hover {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* ── Glow divider ── */
.kk-footer-glow-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(21, 101, 192, 0.5) 20%,
    rgba(0, 137, 123, 0.5) 50%,
    rgba(92, 53, 197, 0.5) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(21, 101, 192, 0.15);
  position: relative;
  z-index: 1;
}

/* ── Main links area ── */
.kk-footer-main {
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Brand marquee ── */
.kk-footer-marquee {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kk-footer-marquee-fade-left,
.kk-footer-marquee-fade-right {
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.kk-footer-marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #0a0a0f 0%, transparent 100%);
}
.kk-footer-marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #0a0a0f 0%, transparent 100%);
}

.kk-footer-marquee-track {
  display: flex;
  width: max-content;
  animation: kk-marquee-scroll 28s linear infinite;
}
.kk-footer-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes kk-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.kk-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.kk-marquee-item {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  padding: 0 28px;
}

.kk-marquee-klinic {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.kk-marquee-suffix {
  font-weight: 800;
}

.kk-marquee-dot {
  color: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  flex-shrink: 0;
}

.kk-marquee-suffix.c-blue {
  color: #64b5f6;
  text-shadow: 0 0 26px rgba(100, 181, 246, 0.35);
}
.kk-marquee-suffix.c-teal {
  color: #2dd4bf;
  text-shadow: 0 0 26px rgba(45, 212, 191, 0.35);
}
.kk-marquee-suffix.c-purple {
  color: #b39ddb;
  text-shadow: 0 0 26px rgba(179, 157, 219, 0.35);
}
.kk-marquee-suffix.c-rose {
  color: #f48fb1;
  text-shadow: 0 0 26px rgba(244, 143, 177, 0.35);
}
.kk-marquee-suffix.c-amber {
  color: #ffb74d;
  text-shadow: 0 0 26px rgba(255, 183, 77, 0.35);
}
.kk-marquee-suffix.c-green {
  color: #81c784;
  text-shadow: 0 0 26px rgba(129, 199, 132, 0.35);
}

@media (max-width: 767.98px) {
  .kk-footer-marquee {
    padding: 22px 0;
  }
  .kk-footer-marquee-fade-left,
  .kk-footer-marquee-fade-right {
    width: 60px;
  }
  .kk-marquee-item {
    padding: 0 18px;
  }
}

/* Brand */
.kk-footer-brand {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 16px;
}

.kk-footer-brand-logo {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.kk-footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}

/* Social icons */
.kk-footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kk-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  background: rgba(255, 255, 255, 0.04);
}

.kk-social-link:hover {
  background: #1565c0;
  border-color: #1565c0;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

.kk-social-link.kk-social-wa:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Column titles */
.kk-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

/* Nav lists */
.kk-footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kk-footer-nav-list li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.kk-footer-nav-list li a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Contact info lines */
.kk-footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kk-footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.kk-footer-contact-line i {
  color: rgba(0, 137, 123, 0.8);
  font-size: 11px;
}

.kk-footer-contact-line:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Bottom bar ── */
.kk-footer-bottom {
  padding: 20px 0 120px;
}

.kk-footer-copy,
.kk-footer-made {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
}

.kk-footer-made {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

.kk-footer-legal-link {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.kk-footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.kk-footer-legal-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
  font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .kk-footer-top {
    padding: 40px 0 32px;
  }
  .kk-footer-cta-secondary {
    display: block;
    margin-left: 0;
    margin-top: 16px;
  }
  .kk-footer-main {
    padding: 40px 0 32px;
  }
  .kk-footer-tagline {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .kk-footer-socials {
    gap: 6px;
  }
  .kk-footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ════════════════════════════════════════
   Logo Scroller (Trusted By strip)
   ════════════════════════════════════════ */
.logo-scroller-section {
  padding: 24px 0 20px;
  background: #fff;
  border-top: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
  overflow: hidden;
}

.logo-scroller-label-row {
  text-align: center;
  margin-bottom: 16px;
}

.logo-scroller-label-row span {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #94a3b8;
  position: relative;
  padding: 0 18px;
}

.logo-scroller-label-row span::before,
.logo-scroller-label-row span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #e2e8f0;
}

.logo-scroller-label-row span::before {
  right: 100%;
  transform: translateX(18px);
}
.logo-scroller-label-row span::after {
  left: 100%;
  transform: translateX(-18px);
}

.logo-scroller-track-wrap {
  position: relative;
  overflow: hidden;
}

.logo-scroller-fade-left,
.logo-scroller-fade-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-scroller-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.logo-scroller-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.logo-scroller-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 4px 5px;
  animation: logo-scroll 38s linear infinite;
}

.logo-scroller-track:hover {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clinic-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 7px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  cursor: default;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  flex-shrink: 0;
}

.clinic-chip:hover {
  background: #ebf4ff;
  border-color: #1565c0;
  color: #1565c0;
}

.chip-icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1565c0, #1976d2);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.chip-icon.teal {
  background: linear-gradient(135deg, #00897b, #26a69a);
}
.chip-icon.purple {
  background: linear-gradient(135deg, #5c35c5, #7b52d3);
}
.chip-icon.dark {
  background: linear-gradient(135deg, #1a202c, #2d3748);
}
.chip-icon.rose {
  background: linear-gradient(135deg, #c62828, #e53935);
}
.chip-icon.amber {
  background: linear-gradient(135deg, #e65100, #f57c00);
}

@media (max-width: 768px) {
  .logo-scroller-fade-left,
  .logo-scroller-fade-right {
    width: 60px;
  }
  .clinic-chip {
    font-size: 12px;
    padding: 6px 13px 6px 6px;
  }
  .chip-icon {
    width: 24px;
    height: 24px;
    font-size: 8px;
  }
}

/* ════════════════════════════════════════
   AI Suite Section  (homepage only)
   ════════════════════════════════════════ */
body[data-page="home"] .ai-suite-section {
  padding: 110px 0 100px;
  background: #06091a;
  position: relative;
  overflow: hidden;
}

/* Background glow blobs */
body[data-page="home"] .ai-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
body[data-page="home"] .ai-glow-1 {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -120px;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.22) 0%,
    transparent 65%
  );
}
body[data-page="home"] .ai-glow-2 {
  width: 420px;
  height: 420px;
  top: 40%;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(0, 137, 123, 0.18) 0%,
    transparent 65%
  );
}
body[data-page="home"] .ai-glow-3 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: 42%;
  background: radial-gradient(
    circle,
    rgba(92, 53, 197, 0.18) 0%,
    transparent 65%
  );
}

/* Top grid texture overlay */
body[data-page="home"] .ai-suite-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body[data-page="home"] .ai-suite-section .container {
  position: relative;
  z-index: 1;
}

/* Eyebrow badge */
body[data-page="home"] .ai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #64b5f6;
  background: rgba(21, 101, 192, 0.14);
  border: 1px solid rgba(21, 101, 192, 0.32);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

body[data-page="home"] .ai-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64b5f6;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.7);
  animation: ai-pulse-ring 2s ease-out infinite;
}

@keyframes ai-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(100, 181, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(100, 181, 246, 0);
  }
}

/* Headline */
body[data-page="home"] .ai-headline {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
}

body[data-page="home"] .ai-gradient-text {
  background: linear-gradient(90deg, #64b5f6 0%, #4dd0c4 50%, #b39ddb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body[data-page="home"] .ai-subtext {
  font-size: 16.5px;
  line-height: 1.78;
  color: #7e94b0;
  max-width: 660px;
  margin: 0 auto 56px;
}

/* Three pillar cards */
body[data-page="home"] .ai-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 34px 28px 30px;
  height: 100%;
  transition:
    transform 0.25s,
    border-color 0.28s,
    box-shadow 0.28s;
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .ai-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(100, 181, 246, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}

body[data-page="home"] .ai-card:hover::before {
  opacity: 1;
}

body[data-page="home"] .ai-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 181, 246, 0.3);
  box-shadow: 0 24px 64px rgba(21, 101, 192, 0.22);
}

body[data-page="home"] .ai-card.featured {
  background: rgba(21, 101, 192, 0.1);
  border-color: rgba(21, 101, 192, 0.3);
}

body[data-page="home"] .ai-card.featured::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 137, 123, 0.8),
    transparent
  );
  opacity: 1;
}

body[data-page="home"] .ai-card.featured:hover {
  border-color: rgba(0, 137, 123, 0.5);
  box-shadow: 0 24px 64px rgba(0, 137, 123, 0.2);
}

/* Card header row */
body[data-page="home"] .ai-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

body[data-page="home"] .ai-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

body[data-page="home"] .ai-card-icon.blue {
  background: rgba(21, 101, 192, 0.22);
  color: #64b5f6;
}
body[data-page="home"] .ai-card-icon.teal {
  background: rgba(0, 137, 123, 0.22);
  color: #4dd0c4;
}
body[data-page="home"] .ai-card-icon.purple {
  background: rgba(92, 53, 197, 0.22);
  color: #b39ddb;
}

body[data-page="home"] .ai-card-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 11px;
  border-radius: 50px;
}

body[data-page="home"] .ai-card-badge.live {
  background: rgba(21, 101, 192, 0.2);
  color: #64b5f6;
  border: 1px solid rgba(21, 101, 192, 0.32);
}
body[data-page="home"] .ai-card-badge.hot {
  background: rgba(0, 137, 123, 0.2);
  color: #4dd0c4;
  border: 1px solid rgba(0, 137, 123, 0.35);
}
body[data-page="home"] .ai-card-badge.power {
  background: rgba(92, 53, 197, 0.2);
  color: #b39ddb;
  border: 1px solid rgba(92, 53, 197, 0.35);
}

/* Card content */
body[data-page="home"] .ai-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #f0f4ff;
  margin-bottom: 9px;
  letter-spacing: -0.3px;
}

body[data-page="home"] .ai-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #6a84a0;
  margin-bottom: 24px;
}

/* Feature list */
body[data-page="home"] .ai-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

body[data-page="home"] .ai-feature-list li {
  font-size: 13px;
  font-weight: 500;
  color: #b8cce0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

body[data-page="home"] .ai-feature-list .fi-done {
  color: #4dd0c4;
  font-size: 13px;
  flex-shrink: 0;
}
body[data-page="home"] .ai-feature-list .fi-soon {
  color: #64748b;
  font-size: 11px;
  flex-shrink: 0;
}

body[data-page="home"] .ai-coming-soon {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #9b8ec4;
  background: rgba(92, 53, 197, 0.18);
  border: 1px solid rgba(92, 53, 197, 0.28);
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Divider line in card */
body[data-page="home"] .ai-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 20px 0;
}

/* Bottom CTA row */
body[data-page="home"] .ai-bottom-row {
  display: block;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 12px;
  text-align: center;
}

body[data-page="home"] .ai-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 50%, #00897b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}

body[data-page="home"] .ai-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(21, 101, 192, 0.55);
}

body[data-page="home"] .ai-cta-secondary {
  font-size: 13.5px;
  color: #4a6070;
  display: block;
  align-items: center;
  gap: 6px;
}

body[data-page="home"] .ai-cta-secondary i {
  color: #4dd0c4;
}

/* Responsive */
@media (max-width: 991px) {
  body[data-page="home"] .ai-suite-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  body[data-page="home"] .ai-suite-section {
    padding: 64px 0;
  }
  body[data-page="home"] .ai-headline {
    letter-spacing: -1px;
  }
  body[data-page="home"] .ai-subtext {
    font-size: 15px;
    margin-bottom: 40px;
  }
  body[data-page="home"] .ai-card {
    padding: 26px 20px;
  }
  body[data-page="home"] .ai-bottom-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* ════════════════════════════════════════
   For Whom Section  (homepage only)
   ════════════════════════════════════════ */
body[data-page="home"] .for-whom-section {
  padding: 100px 0 90px;
  background: linear-gradient(160deg, #f8faff 0%, #f0faf8 60%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .for-whom-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Left column */
body[data-page="home"] .fw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary, #1565c0);
  background: #ebf4ff;
  border: 1px solid rgba(21, 101, 192, 0.18);
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 20px;
}

body[data-page="home"] .fw-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text-dark, #0f172a);
  margin-bottom: 20px;
}

body[data-page="home"] .fw-headline em {
  font-style: normal;
  background: linear-gradient(
    90deg,
    var(--primary, #1565c0),
    var(--secondary, #00897b)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body[data-page="home"] .fw-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body, #475569);
  margin-bottom: 36px;
  max-width: 440px;
}

/* Scale strip */
body[data-page="home"] .fw-scale-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

body[data-page="home"] .fw-scale-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
}

body[data-page="home"] .fw-scale-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(
    135deg,
    var(--primary, #1565c0),
    var(--secondary, #00897b)
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.2);
}

body[data-page="home"] .fw-scale-connector {
  width: 2px;
  height: 12px;
  background: linear-gradient(to bottom, #1565c0, #00897b);
  margin-left: 19px;
  opacity: 0.25;
}

body[data-page="home"] .fw-scale-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark, #0f172a);
  line-height: 1.2;
  margin-bottom: 2px;
}

body[data-page="home"] .fw-scale-desc {
  font-size: 12px;
  color: var(--text-muted, #94a3b8);
}

/* Right column — specialty grid */
body[data-page="home"] .specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

body[data-page="home"] .specialty-card {
  background: #fff;
  border: 1.5px solid #e8edf5;
  border-radius: 16px;
  padding: 20px 10px 16px;
  text-align: center;
  cursor: default;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    border-color 0.22s;
}

body[data-page="home"] .specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.11);
  border-color: var(--primary, #1565c0);
}

body[data-page="home"] .specialty-card.featured {
  background: linear-gradient(135deg, #ebf4ff, #e6faf8);
  border-color: rgba(21, 101, 192, 0.25);
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
}

body[data-page="home"] .spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 19px;
  flex-shrink: 0;
}

body[data-page="home"] .specialty-card.featured .spec-icon {
  margin: 0;
  width: 48px;
  height: 48px;
  font-size: 21px;
}

body[data-page="home"] .spec-icon.blue {
  background: #ebf4ff;
  color: #1565c0;
}
body[data-page="home"] .spec-icon.teal {
  background: #e6faf8;
  color: #00897b;
}
body[data-page="home"] .spec-icon.purple {
  background: #f0edff;
  color: #5c35c5;
}
body[data-page="home"] .spec-icon.rose {
  background: #fff0f0;
  color: #c62828;
}
body[data-page="home"] .spec-icon.amber {
  background: #fff8ed;
  color: #e65100;
}
body[data-page="home"] .spec-icon.green {
  background: #edfff5;
  color: #2e7d32;
}
body[data-page="home"] .spec-icon.pink {
  background: #fff0f7;
  color: #ad1457;
}
body[data-page="home"] .spec-icon.indigo {
  background: #eef0ff;
  color: #283593;
}
body[data-page="home"] .spec-icon.grad {
  background: linear-gradient(135deg, #1565c0, #00897b);
  color: #fff;
}

body[data-page="home"] .spec-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark, #0f172a);
  line-height: 1.3;
}

body[data-page="home"] .specialty-card.featured .spec-name {
  font-size: 14px;
}

body[data-page="home"] .spec-sub {
  font-size: 11px;
  color: var(--text-muted, #94a3b8);
  margin-top: 3px;
  line-height: 1.4;
}

body[data-page="home"] .specialty-note {
  font-size: 13px;
  color: var(--text-muted, #475569);
  margin-top: 14px;
  padding: 13px 16px;
  background: #fff;
  border-radius: 12px;
  border-left: 3px solid var(--secondary, #00897b);
  border: 1px solid #e6faf8;
  border-left: 3px solid var(--secondary, #00897b);
}

/* Responsive */
@media (max-width: 1199px) {
  body[data-page="home"] .specialty-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  body[data-page="home"] .for-whom-section {
    padding: 70px 0;
  }
  body[data-page="home"] .fw-desc {
    max-width: 100%;
  }
  body[data-page="home"] .specialty-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  body[data-page="home"] .specialty-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  body[data-page="home"] .specialty-card {
    padding: 14px 8px 12px;
    border-radius: 12px;
  }
  body[data-page="home"] .specialty-card.featured {
    grid-column: span 3;
    flex-direction: row;
    text-align: left;
  }
  body[data-page="home"] .spec-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 10px;
  }
  body[data-page="home"] .spec-name {
    font-size: 11px;
  }
  body[data-page="home"] .for-whom-section {
    padding: 60px 0;
  }
}

/* ════════════════════════════════════════
   Shared AI nav link
   ════════════════════════════════════════ */
.nav-link-ai {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1565c0 0%, #00897b 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(21, 101, 192, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.nav-ai-pill i {
  font-size: 10px;
}

#mainNavbar .nav-link.nav-link-ai:hover .nav-ai-pill,
#mainNavbar .nav-link.nav-link-ai.active .nav-ai-pill {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(21, 101, 192, 0.28);
}

@media (max-width: 991px) {
  .nav-link-ai {
    width: 100%;
    justify-content: space-between;
  }
}

/* ════════════════════════════════════════
   AI Suite Page
   ════════════════════════════════════════ */
body[data-page="ai-suite"] {
  --ai-bg: #06101d;
  --ai-bg-soft: #0b1728;
  --ai-panel: rgba(10, 19, 34, 0.82);
  --ai-panel-strong: rgba(14, 25, 44, 0.96);
  --ai-border: rgba(139, 168, 210, 0.18);
  --ai-text: #e6f0ff;
  --ai-muted: #92a7c2;
  --ai-blue: #64b5f6;
  --ai-teal: #4dd0c4;
  --ai-purple: #b39ddb;
  --ai-gold: #f6c66d;
  --ai-rose: #f59aa5;
  --ai-indigo: #9fb3ff;
  background: #fff;
}

body[data-page="ai-suite"] #mainNavbar {
  background: rgba(6, 16, 29, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body[data-page="ai-suite"] #mainNavbar.scrolled {
  background: rgba(6, 16, 29, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(3, 7, 17, 0.45);
}

body[data-page="ai-suite"] .nav-link {
  color: #d7e3f7 !important;
}

body[data-page="ai-suite"] .nav-link:hover {
  color: #fff !important;
  background: rgba(100, 181, 246, 0.12);
}

body[data-page="ai-suite"] .nav-link.active {
  color: #fff !important;
}

body[data-page="ai-suite"] .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-page="ai-suite"] .navbar-toggler-icon {
  filter: invert(1);
}

body[data-page="ai-suite"] .ai-suite-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 88px;
  background:
    radial-gradient(
      circle at top left,
      rgba(21, 101, 192, 0.22) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 22%,
      rgba(0, 137, 123, 0.18) 0%,
      transparent 28%
    ),
    linear-gradient(180deg, #07111f 0%, #0a1627 100%);
}

body[data-page="ai-suite"] .ai-suite-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.4;
  pointer-events: none;
}

body[data-page="ai-suite"] .ai-suite-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
}

body[data-page="ai-suite"] .ai-suite-hero-glow.glow-one {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -110px;
  background: rgba(21, 101, 192, 0.3);
}

body[data-page="ai-suite"] .ai-suite-hero-glow.glow-two {
  width: 320px;
  height: 320px;
  top: 60px;
  right: -100px;
  background: rgba(0, 137, 123, 0.22);
}

body[data-page="ai-suite"] .ai-suite-hero-glow.glow-three {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: 42%;
  background: rgba(92, 53, 197, 0.2);
}

body[data-page="ai-suite"] .ai-suite-breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

body[data-page="ai-suite"] .ai-suite-breadcrumb .breadcrumb-item,
body[data-page="ai-suite"] .ai-suite-breadcrumb .breadcrumb-item.active,
body[data-page="ai-suite"]
  .ai-suite-breadcrumb
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: rgba(230, 240, 255, 0.72);
}

body[data-page="ai-suite"] .ai-suite-breadcrumb .breadcrumb-item a {
  color: #fff;
}

body[data-page="ai-suite"] .ai-suite-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(100, 181, 246, 0.28);
  background: rgba(21, 101, 192, 0.12);
  color: var(--ai-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

body[data-page="ai-suite"] .ai-suite-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ai-blue);
  box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.65);
  animation: ai-suite-pulse 2s ease-out infinite;
}

@keyframes ai-suite-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.65);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(100, 181, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(100, 181, 246, 0);
  }
}

body[data-page="ai-suite"] .ai-suite-title {
  position: relative;
  z-index: 1;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.8px;
  color: var(--ai-text);
  margin-bottom: 20px;
}

body[data-page="ai-suite"] .ai-suite-intro {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ai-muted);
  max-width: 660px;
  margin-bottom: 28px;
}

body[data-page="ai-suite"] .ai-suite-chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

body[data-page="ai-suite"] .ai-suite-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #dce7f8;
  font-size: 13px;
  font-weight: 600;
}

body[data-page="ai-suite"] .ai-suite-chip i {
  color: var(--ai-teal);
}

body[data-page="ai-suite"] .ai-suite-hero-buttons {
  margin-bottom: 34px;
}

body[data-page="ai-suite"] .ai-hero-stat-row {
  position: relative;
  z-index: 1;
}

body[data-page="ai-suite"] .ai-hero-stat-card {
  height: 100%;
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(4, 10, 22, 0.22);
}

body[data-page="ai-suite"] .ai-hero-stat-card span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--ai-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

body[data-page="ai-suite"] .ai-hero-stat-card strong {
  display: block;
  font-family: "Manrope", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

body[data-page="ai-suite"] .ai-hero-stat-card p {
  margin: 0;
  color: #9ab0cb;
  font-size: 13px;
  line-height: 1.7;
}

body[data-page="ai-suite"] .ai-suite-console {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(12, 22, 39, 0.92) 0%,
    rgba(9, 18, 31, 0.98) 100%
  );
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

body[data-page="ai-suite"] .ai-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body[data-page="ai-suite"] .ai-console-dots {
  display: flex;
  gap: 7px;
}

body[data-page="ai-suite"] .ai-console-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

body[data-page="ai-suite"] .ai-console-dots span:first-child {
  background: #ff5f57;
}
body[data-page="ai-suite"] .ai-console-dots span:nth-child(2) {
  background: #febc2e;
}
body[data-page="ai-suite"] .ai-console-dots span:nth-child(3) {
  background: #28c840;
}

body[data-page="ai-suite"] .ai-console-title {
  flex: 1;
  text-align: center;
  color: #dce7f8;
  font-size: 13px;
  font-weight: 700;
}

body[data-page="ai-suite"] .ai-console-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ai-teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

body[data-page="ai-suite"] .ai-console-live i {
  font-size: 7px;
}

body[data-page="ai-suite"] .ai-console-body {
  padding: 24px;
}

body[data-page="ai-suite"] .ai-console-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-page="ai-suite"] .ai-console-step:last-of-type {
  margin-bottom: 20px;
}

body[data-page="ai-suite"] .ai-console-step-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

body[data-page="ai-suite"] .ai-console-step-icon.blue {
  background: rgba(21, 101, 192, 0.18);
  color: var(--ai-blue);
}
body[data-page="ai-suite"] .ai-console-step-icon.teal {
  background: rgba(0, 137, 123, 0.18);
  color: var(--ai-teal);
}
body[data-page="ai-suite"] .ai-console-step-icon.purple {
  background: rgba(92, 53, 197, 0.18);
  color: var(--ai-purple);
}
body[data-page="ai-suite"] .ai-console-step-icon.gold {
  background: rgba(246, 198, 109, 0.16);
  color: var(--ai-gold);
}

body[data-page="ai-suite"] .ai-console-step-copy span {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #84a0c0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

body[data-page="ai-suite"] .ai-console-step-copy h5 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

body[data-page="ai-suite"] .ai-console-step-copy p {
  margin: 0;
  color: #90a7c4;
  font-size: 13px;
  line-height: 1.7;
}

body[data-page="ai-suite"] .ai-console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="ai-suite"] .ai-console-mini {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="ai-suite"] .ai-console-mini.wide {
  grid-column: span 2;
}

body[data-page="ai-suite"] .ai-console-mini span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--ai-blue);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 6px;
}

body[data-page="ai-suite"] .ai-console-mini strong {
  color: #eaf2ff;
  font-size: 14px;
  line-height: 1.5;
}

body[data-page="ai-suite"] .ai-core-benefits {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

body[data-page="ai-suite"] .ai-benefit-card {
  padding: 32px 28px;
  border-radius: 22px;
  border: 1px solid #e5ecf6;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

body[data-page="ai-suite"] .ai-benefit-card:hover,
body[data-page="ai-suite"] .ai-use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
}

body[data-page="ai-suite"] .ai-benefit-icon,
body[data-page="ai-suite"] .ai-use-case-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

body[data-page="ai-suite"] .ai-benefit-icon.blue,
body[data-page="ai-suite"] .ai-use-case-icon.blue {
  background: #ebf4ff;
  color: #1565c0;
}
body[data-page="ai-suite"] .ai-benefit-icon.teal,
body[data-page="ai-suite"] .ai-use-case-icon.teal {
  background: #e6faf8;
  color: #00897b;
}
body[data-page="ai-suite"] .ai-benefit-icon.purple,
body[data-page="ai-suite"] .ai-use-case-icon.purple {
  background: #f0edff;
  color: #5c35c5;
}
body[data-page="ai-suite"] .ai-benefit-icon.gold,
body[data-page="ai-suite"] .ai-use-case-icon.gold {
  background: #fff8ea;
  color: #b7791f;
}
body[data-page="ai-suite"] .ai-benefit-icon.rose,
body[data-page="ai-suite"] .ai-use-case-icon.rose {
  background: #fff1f3;
  color: #d53f8c;
}
body[data-page="ai-suite"] .ai-benefit-icon.indigo,
body[data-page="ai-suite"] .ai-use-case-icon.indigo {
  background: #eef2ff;
  color: #4c51bf;
}

body[data-page="ai-suite"] .ai-benefit-card h5,
body[data-page="ai-suite"] .ai-use-case-card h5 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

body[data-page="ai-suite"] .ai-benefit-card p,
body[data-page="ai-suite"] .ai-use-case-card p {
  margin: 0;
  color: #66758c;
  font-size: 14.5px;
  line-height: 1.8;
}

body[data-page="ai-suite"] .ai-workflow-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(77, 208, 196, 0.15) 0%,
      transparent 26%
    ),
    linear-gradient(180deg, #091320 0%, #0d1728 100%);
}

body[data-page="ai-suite"] .ai-workflow-section .section-title,
body[data-page="ai-suite"] .ai-workflow-section .section-subtitle {
  color: #fff;
}

body[data-page="ai-suite"] .ai-workflow-section .section-subtitle {
  color: rgba(230, 240, 255, 0.72);
}

body[data-page="ai-suite"] .ai-workflow-tabs {
  gap: 12px;
  margin-bottom: 36px;
}

body[data-page="ai-suite"] .ai-workflow-tabs .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #d6e3f4 !important;
  font-size: 14px;
  font-weight: 700;
}

body[data-page="ai-suite"] .ai-workflow-tabs .nav-link.active,
body[data-page="ai-suite"] .ai-workflow-tabs .nav-link:hover {
  background: linear-gradient(
    135deg,
    rgba(21, 101, 192, 0.26) 0%,
    rgba(0, 137, 123, 0.18) 100%
  );
  border-color: rgba(100, 181, 246, 0.32);
  color: #fff !important;
}

body[data-page="ai-suite"] .ai-workflow-tabs .nav-link::after {
  display: none;
}

body[data-page="ai-suite"] .ai-workflow-content {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

body[data-page="ai-suite"] .ai-workflow-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ai-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

body[data-page="ai-suite"] .ai-workflow-copy h3 {
  color: #fff;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

body[data-page="ai-suite"] .ai-workflow-copy p {
  color: rgba(230, 240, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

body[data-page="ai-suite"] .ai-step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

body[data-page="ai-suite"] .ai-step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body[data-page="ai-suite"] .ai-step-item span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(100, 181, 246, 0.16);
  color: var(--ai-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

body[data-page="ai-suite"] .ai-step-item h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

body[data-page="ai-suite"] .ai-step-item p {
  margin: 0;
  color: #90a7c4;
  font-size: 13.5px;
}

body[data-page="ai-suite"] .ai-output-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

body[data-page="ai-suite"] .ai-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

body[data-page="ai-suite"] .ai-output-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

body[data-page="ai-suite"] .ai-output-chip.blue {
  background: rgba(21, 101, 192, 0.16);
  color: var(--ai-blue);
}
body[data-page="ai-suite"] .ai-output-chip.teal {
  background: rgba(0, 137, 123, 0.16);
  color: var(--ai-teal);
}
body[data-page="ai-suite"] .ai-output-chip.purple {
  background: rgba(92, 53, 197, 0.16);
  color: var(--ai-purple);
}

body[data-page="ai-suite"] .ai-output-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a8f0d1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

body[data-page="ai-suite"] .ai-output-status i {
  font-size: 7px;
}

body[data-page="ai-suite"] .ai-output-block {
  padding: 20px;
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-page="ai-suite"] .ai-output-block h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
}

body[data-page="ai-suite"] .ai-output-line {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body[data-page="ai-suite"] .ai-output-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body[data-page="ai-suite"] .ai-output-line strong {
  min-width: 104px;
  color: var(--ai-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

body[data-page="ai-suite"] .ai-output-line span {
  color: #d8e6f7;
  font-size: 13.5px;
  line-height: 1.75;
}

body[data-page="ai-suite"] .ai-problems {
  background: #f4f8fc;
}

body[data-page="ai-suite"] .ai-problem-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e3ebf5;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.05);
}

body[data-page="ai-suite"] .ai-problem-topic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

body[data-page="ai-suite"] .ai-problem-topic i {
  color: var(--primary);
}

body[data-page="ai-suite"] .ai-problem-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

body[data-page="ai-suite"] .ai-problem-side {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid transparent;
}

body[data-page="ai-suite"] .ai-problem-side.problem {
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  border-color: rgba(198, 40, 40, 0.12);
}

body[data-page="ai-suite"] .ai-problem-side.solution {
  background: linear-gradient(180deg, #f3fffb 0%, #ffffff 100%);
  border-color: rgba(0, 137, 123, 0.14);
}

body[data-page="ai-suite"] .ai-problem-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

body[data-page="ai-suite"] .ai-problem-side.problem .ai-problem-label {
  color: #c62828;
}
body[data-page="ai-suite"] .ai-problem-side.solution .ai-problem-label {
  color: #00897b;
}

body[data-page="ai-suite"] .ai-problem-side h4 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

body[data-page="ai-suite"] .ai-problem-side p {
  margin: 0;
  color: #66758c;
  font-size: 14px;
  line-height: 1.8;
}

body[data-page="ai-suite"] .ai-problem-arrow {
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1565c0 0%, #00897b 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 101, 192, 0.24);
}

body[data-page="ai-suite"] .ai-use-cases {
  background: #fff;
}

body[data-page="ai-suite"] .ai-use-case-card {
  padding: 30px 26px;
  border-radius: 22px;
  border: 1px solid #e5ecf6;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

body[data-page="ai-suite"] .ai-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

body[data-page="ai-suite"] .ai-tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f3f6fb;
  color: #4a5d78;
  font-size: 12px;
  font-weight: 700;
}

body[data-page="ai-suite"] .ai-security {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(21, 101, 192, 0.18) 0%,
      transparent 28%
    ),
    linear-gradient(180deg, #08111f 0%, #0c1628 100%);
}

body[data-page="ai-suite"] .ai-security .section-title,
body[data-page="ai-suite"] .ai-security .section-subtitle,
body[data-page="ai-suite"] .ai-security-intro {
  color: #fff;
}

body[data-page="ai-suite"] .ai-security-intro {
  color: rgba(230, 240, 255, 0.74);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 22px;
}

body[data-page="ai-suite"] .ai-security-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body[data-page="ai-suite"] .ai-security-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #d9e7f9;
  font-size: 14px;
  line-height: 1.7;
}

body[data-page="ai-suite"] .ai-security-list i {
  margin-top: 3px;
  color: var(--ai-teal);
}

body[data-page="ai-suite"] .ai-compliance-card,
body[data-page="ai-suite"] .ai-security-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

body[data-page="ai-suite"] .ai-compliance-card {
  padding: 24px 20px;
  height: 100%;
}

body[data-page="ai-suite"] .ai-compliance-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(100, 181, 246, 0.14);
  color: var(--ai-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

body[data-page="ai-suite"] .ai-compliance-card h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

body[data-page="ai-suite"] .ai-compliance-card p {
  margin: 0;
  color: rgba(230, 240, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.75;
}

body[data-page="ai-suite"] .ai-security-panel {
  padding: 24px;
  margin-top: 18px;
}

body[data-page="ai-suite"] .ai-security-panel-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--ai-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

body[data-page="ai-suite"] .ai-security-feature {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
}

body[data-page="ai-suite"] .ai-security-feature i {
  color: var(--ai-blue);
  font-size: 18px;
  margin-top: 4px;
}

body[data-page="ai-suite"] .ai-security-feature h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

body[data-page="ai-suite"] .ai-security-feature p {
  margin: 0;
  color: rgba(230, 240, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

body[data-page="ai-suite"] .ai-faq-section {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}

body[data-page="ai-suite"] .ai-faq-accordion {
  max-width: 920px;
  margin: 0 auto;
}

body[data-page="ai-suite"] .ai-faq-accordion .accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

body[data-page="ai-suite"] .ai-faq-accordion .accordion-button {
  padding: 20px 24px;
  background: #fff;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}

body[data-page="ai-suite"] .ai-faq-accordion .accordion-button:not(.collapsed) {
  background: #ebf4ff;
  color: #1565c0;
}

body[data-page="ai-suite"] .ai-faq-accordion .accordion-body {
  background: #fff;
  color: #5b6c82;
  font-size: 14.5px;
  line-height: 1.85;
  padding: 0 24px 22px;
}

body[data-page="ai-suite"] .ai-cta-section {
  padding: 0 0 84px;
  background: linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
}

body[data-page="ai-suite"] .ai-cta-box {
  padding: 58px 34px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.18) 0%,
      transparent 26%
    ),
    linear-gradient(135deg, #0d47a1 0%, #1565c0 45%, #00897b 100%);
  text-align: center;
  box-shadow: 0 24px 70px rgba(21, 101, 192, 0.22);
}

body[data-page="ai-suite"] .ai-cta-box h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  max-width: 860px;
  margin: 0 auto 16px;
}

body[data-page="ai-suite"] .ai-cta-box p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 28px;
}

@media (max-width: 1199px) {
  body[data-page="ai-suite"] .ai-problem-compare {
    grid-template-columns: 1fr;
  }

  body[data-page="ai-suite"] .ai-problem-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 991px) {
  body[data-page="ai-suite"] .ai-suite-hero {
    padding: 118px 0 72px;
  }

  body[data-page="ai-suite"] .ai-workflow-content {
    padding: 24px;
  }

  body[data-page="ai-suite"] .ai-workflow-tabs {
    justify-content: flex-start !important;
  }
}

@media (max-width: 767px) {
  body[data-page="ai-suite"] .ai-suite-title {
    letter-spacing: -1px;
  }

  body[data-page="ai-suite"] .ai-suite-intro,
  body[data-page="ai-suite"] .ai-cta-box p {
    font-size: 15px;
  }

  body[data-page="ai-suite"] .ai-console-body,
  body[data-page="ai-suite"] .ai-workflow-content,
  body[data-page="ai-suite"] .ai-problem-card,
  body[data-page="ai-suite"] .ai-use-case-card,
  body[data-page="ai-suite"] .ai-cta-box {
    padding: 22px;
  }

  body[data-page="ai-suite"] .ai-console-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="ai-suite"] .ai-console-mini.wide {
    grid-column: span 1;
  }

  body[data-page="ai-suite"] .ai-output-header {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="ai-suite"] .ai-output-line {
    flex-direction: column;
    gap: 8px;
  }

  body[data-page="ai-suite"] .ai-output-line strong {
    min-width: 0;
  }
}

@media (max-width: 575px) {
  body[data-page="ai-suite"] .ai-suite-chip-row,
  body[data-page="ai-suite"] .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page="ai-suite"] .ai-workflow-tabs {
    flex-direction: column;
  }

  body[data-page="ai-suite"] .ai-workflow-tabs .nav-link {
    width: 100%;
    justify-content: center;
  }
}

/* ════════════════════════════════════════
   Thank You + 404 shared dark nav styling
   ════════════════════════════════════════ */
body[data-page="thank-you"] #mainNavbar,
body[data-page="404"] #mainNavbar {
  background: rgba(6, 16, 29, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body[data-page="thank-you"] #mainNavbar.scrolled,
body[data-page="404"] #mainNavbar.scrolled {
  background: rgba(6, 16, 29, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(3, 7, 17, 0.45);
}

body[data-page="thank-you"] .nav-link,
body[data-page="404"] .nav-link {
  color: #d7e3f7 !important;
}

body[data-page="thank-you"] .nav-link:hover,
body[data-page="404"] .nav-link:hover {
  color: #fff !important;
  background: rgba(100, 181, 246, 0.12);
}

body[data-page="thank-you"] .nav-link.active,
body[data-page="404"] .nav-link.active {
  color: #fff !important;
}

body[data-page="thank-you"] .navbar-toggler,
body[data-page="404"] .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-page="thank-you"] .navbar-toggler-icon,
body[data-page="404"] .navbar-toggler-icon {
  filter: invert(1);
}

/* ════════════════════════════════════════
   Thank You Page
   ════════════════════════════════════════ */
body[data-page="thank-you"] {
  background: #fff;
}

body[data-page="thank-you"] .thank-you-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 88px;
  background:
    radial-gradient(
      circle at top left,
      rgba(21, 101, 192, 0.22) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 137, 123, 0.2) 0%,
      transparent 28%
    ),
    linear-gradient(180deg, #07111f 0%, #0c1628 100%);
}

body[data-page="thank-you"] .thank-you-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  pointer-events: none;
}

body[data-page="thank-you"] .thank-you-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

body[data-page="thank-you"] .thank-you-glow.glow-left {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -100px;
  background: rgba(21, 101, 192, 0.3);
}

body[data-page="thank-you"] .thank-you-glow.glow-right {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -60px;
  background: rgba(0, 137, 123, 0.22);
}

body[data-page="thank-you"] .thank-you-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(77, 208, 196, 0.14);
  border: 1px solid rgba(77, 208, 196, 0.28);
  color: #7ee7db;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

body[data-page="thank-you"] .thank-you-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ee7db;
  box-shadow: 0 0 0 0 rgba(126, 231, 219, 0.7);
  animation: thank-you-pulse 2s ease-out infinite;
}

@keyframes thank-you-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 231, 219, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(126, 231, 219, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(126, 231, 219, 0);
  }
}

body[data-page="thank-you"] .thank-you-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 18px;
}

body[data-page="thank-you"] .thank-you-subtitle {
  position: relative;
  z-index: 1;
  color: #a2b6d0;
  font-size: 17px;
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 28px;
}

body[data-page="thank-you"] .thank-you-chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

body[data-page="thank-you"] .thank-you-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ecf4ff;
  font-size: 13px;
  font-weight: 600;
}

body[data-page="thank-you"] .thank-you-chip i {
  color: #7ee7db;
}

body[data-page="thank-you"] .thank-you-chip-muted {
  color: #cedcec;
}

body[data-page="thank-you"] .thank-you-status-card {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

body[data-page="thank-you"] .thank-you-status-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(77, 208, 196, 0.28) 0%,
    rgba(100, 181, 246, 0.2) 100%
  );
  border: 1px solid rgba(126, 231, 219, 0.28);
  color: #7ee7db;
  font-size: 30px;
}

body[data-page="thank-you"] .thank-you-status-card h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

body[data-page="thank-you"] .thank-you-status-card p {
  color: #a2b6d0;
  font-size: 14px;
  line-height: 1.8;
}

body[data-page="thank-you"] .thank-you-meta-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

body[data-page="thank-you"] .thank-you-meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-page="thank-you"] .thank-you-meta-item span {
  color: #8ea7c4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

body[data-page="thank-you"] .thank-you-meta-item strong {
  color: #f5faff;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

body[data-page="thank-you"] .thank-you-content {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

body[data-page="thank-you"] .thank-you-panel,
body[data-page="thank-you"] .thank-you-video-card {
  height: 100%;
  border-radius: 28px;
  border: 1px solid #e5ecf6;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

body[data-page="thank-you"] .thank-you-panel {
  padding: 32px 30px;
}

body[data-page="thank-you"] .thank-you-panel-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0;
}

body[data-page="thank-you"] .thank-you-step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

body[data-page="thank-you"] .thank-you-step-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid #e6eef8;
}

body[data-page="thank-you"] .thank-you-step-number {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1565c0 0%, #00897b 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

body[data-page="thank-you"] .thank-you-step-item h5 {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}

body[data-page="thank-you"] .thank-you-step-item p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

body[data-page="thank-you"] .thank-you-video-card {
  overflow: hidden;
}

body[data-page="thank-you"] .thank-you-video-preview {
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(100, 181, 246, 0.32) 0%,
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 25%,
      rgba(77, 208, 196, 0.28) 0%,
      transparent 24%
    ),
    linear-gradient(180deg, #091423 0%, #0f1c31 100%);
}

body[data-page="thank-you"] .thank-you-video-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

body[data-page="thank-you"] .thank-you-video-ui {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
}

body[data-page="thank-you"] .thank-you-video-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7e6f8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

body[data-page="thank-you"] .thank-you-play-btn {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

body[data-page="thank-you"] .thank-you-video-copy h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

body[data-page="thank-you"] .thank-you-video-copy p {
  margin: 0;
  color: #a8bdd6;
  font-size: 14px;
}

body[data-page="thank-you"] .thank-you-video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-top: 1px solid #e6eef8;
}

body[data-page="thank-you"] .thank-you-video-footer span {
  display: block;
  color: #6b7c94;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}

body[data-page="thank-you"] .thank-you-video-footer strong {
  color: #111827;
  font-size: 14px;
  line-height: 1.6;
}

body[data-page="thank-you"] .thank-you-video-footer i {
  color: var(--primary);
  font-size: 26px;
}

body[data-page="thank-you"] .thank-you-resource-card {
  display: block;
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid #e5ecf6;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

body[data-page="thank-you"] .thank-you-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  border-color: #d3e0f0;
}

body[data-page="thank-you"] .thank-you-resource-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

body[data-page="thank-you"] .thank-you-resource-icon.blue {
  background: #ebf4ff;
  color: #1565c0;
}
body[data-page="thank-you"] .thank-you-resource-icon.teal {
  background: #e6faf8;
  color: #00897b;
}
body[data-page="thank-you"] .thank-you-resource-icon.purple {
  background: #f0edff;
  color: #5c35c5;
}

body[data-page="thank-you"] .thank-you-resource-card h5 {
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

body[data-page="thank-you"] .thank-you-resource-card p {
  color: #66758c;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

body[data-page="thank-you"] .thank-you-resource-card a,
body[data-page="thank-you"] .thank-you-resource-card span {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

/* ════════════════════════════════════════
   404 Page
   ════════════════════════════════════════ */
body[data-page="404"] {
  background: #fff;
}

body[data-page="404"] .error-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 92px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(21, 101, 192, 0.22) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(92, 53, 197, 0.2) 0%,
      transparent 28%
    ),
    linear-gradient(180deg, #07111f 0%, #101a2e 100%);
}

body[data-page="404"] .error-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.45;
}

body[data-page="404"] .error-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(92px);
}

body[data-page="404"] .error-glow.glow-left {
  width: 430px;
  height: 430px;
  left: -120px;
  top: -120px;
  background: rgba(21, 101, 192, 0.28);
}

body[data-page="404"] .error-glow.glow-right {
  width: 330px;
  height: 330px;
  right: -90px;
  bottom: -80px;
  background: rgba(92, 53, 197, 0.24);
}

body[data-page="404"] .error-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9f2ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

body[data-page="404"] .error-code {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: clamp(90px, 14vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -6px;
  margin-bottom: 16px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(100, 181, 246, 0.78) 60%,
    rgba(77, 208, 196, 0.72) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

body[data-page="404"] .error-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 18px;
}

body[data-page="404"] .error-subtitle {
  position: relative;
  z-index: 1;
  color: #a2b6d0;
  font-size: 17px;
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 30px;
}

body[data-page="404"] .error-diagnostic-card {
  position: relative;
  z-index: 1;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

body[data-page="404"] .error-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: #d9e6f8;
  font-size: 13px;
  font-weight: 700;
}

body[data-page="404"] .error-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #90f0b4;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

body[data-page="404"] .error-monitor {
  position: relative;
  height: 250px;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    rgba(21, 101, 192, 0.2) 0%,
    rgba(9, 19, 33, 0.95) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body[data-page="404"] .error-monitor-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

body[data-page="404"] .error-monitor-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  overflow: visible;
}

body[data-page="404"] .error-monitor-line span {
  position: absolute;
  inset: 0;
  display: block;
}

body[data-page="404"] .error-monitor-line span::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -50px;
  width: 120%;
  height: 120px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 8%,
    #57e0d2 10%,
    #57e0d2 20%,
    transparent 22%,
    transparent 30%,
    #57e0d2 32%,
    #57e0d2 38%,
    transparent 40%,
    transparent 52%,
    #57e0d2 54%,
    #57e0d2 58%,
    transparent 60%,
    transparent 100%
  );
  clip-path: polygon(
    0 50%,
    10% 50%,
    14% 28%,
    18% 72%,
    24% 50%,
    34% 50%,
    38% 40%,
    42% 62%,
    48% 50%,
    58% 50%,
    62% 20%,
    68% 76%,
    74% 50%,
    100% 50%
  );
  opacity: 0.8;
}

body[data-page="404"] .error-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

body[data-page="404"] .error-diagnostic-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

body[data-page="404"] .error-diagnostic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-page="404"] .error-diagnostic-item span {
  color: #8ea7c4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

body[data-page="404"] .error-diagnostic-item strong {
  color: #f5faff;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

body[data-page="404"] .error-recovery {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

body[data-page="404"] .error-link-card {
  display: block;
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid #e5ecf6;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

body[data-page="404"] .error-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.1);
  border-color: #d4e1f1;
}

body[data-page="404"] .error-link-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

body[data-page="404"] .error-link-icon.blue {
  background: #ebf4ff;
  color: #1565c0;
}
body[data-page="404"] .error-link-icon.teal {
  background: #e6faf8;
  color: #00897b;
}
body[data-page="404"] .error-link-icon.purple {
  background: #f0edff;
  color: #5c35c5;
}
body[data-page="404"] .error-link-icon.gold {
  background: #fff7e8;
  color: #b7791f;
}

body[data-page="404"] .error-link-card h5 {
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

body[data-page="404"] .error-link-card p {
  color: #66758c;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

body[data-page="404"] .error-link-card span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

body[data-page="404"] .error-bottom-note {
  margin-top: 36px;
  padding: 24px;
  border-radius: 24px;
  background: #f8fbff;
  border: 1px solid #e6eef8;
  text-align: center;
}

body[data-page="404"] .error-bottom-note p {
  color: #66758c;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto 18px;
  max-width: 720px;
}

@media (max-width: 991px) {
  body[data-page="thank-you"] .thank-you-hero,
  body[data-page="404"] .error-hero {
    padding: 116px 0 72px;
  }
}

@media (max-width: 767px) {
  body[data-page="thank-you"] .thank-you-title,
  body[data-page="404"] .error-title {
    letter-spacing: -1px;
  }

  body[data-page="thank-you"] .thank-you-subtitle,
  body[data-page="404"] .error-subtitle {
    font-size: 15px;
  }

  body[data-page="thank-you"] .thank-you-status-card,
  body[data-page="thank-you"] .thank-you-panel,
  body[data-page="thank-you"] .thank-you-video-ui,
  body[data-page="thank-you"] .thank-you-video-footer,
  body[data-page="404"] .error-diagnostic-card,
  body[data-page="404"] .error-link-card,
  body[data-page="404"] .error-bottom-note {
    padding: 22px;
  }

  body[data-page="thank-you"] .thank-you-meta-item,
  body[data-page="404"] .error-diagnostic-item {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="thank-you"] .thank-you-meta-item strong,
  body[data-page="404"] .error-diagnostic-item strong {
    text-align: left;
  }

  body[data-page="thank-you"] .thank-you-video-preview {
    min-height: 300px;
  }

  body[data-page="thank-you"] .thank-you-video-ui {
    min-height: 300px;
  }

  body[data-page="404"] .error-monitor {
    height: 220px;
  }
}

@media (max-width: 575px) {
  body[data-page="thank-you"] .thank-you-chip-row,
  body[data-page="thank-you"] .hero-buttons,
  body[data-page="404"] .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page="thank-you"] .thank-you-play-btn {
    width: 74px;
    height: 74px;
    font-size: 24px;
  }
}

/* ════════════════════════════════════════════════════════════════
   CASE STUDIES — Shared badge styles (used across pages)
   ════════════════════════════════════════════════════════════════ */
.cs-pkg-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid transparent;
}
.cs-spec-badge,
.cs-loc-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 3px 9px;
  border-radius: 50px;
}
.cs-loc-badge {
  color: var(--text-muted);
}

.pkg-proplus {
  background: #1a1035;
  color: #c4b5fd;
  border-color: rgba(196, 181, 253, 0.3);
}
.pkg-pro {
  background: #ebf4ff;
  color: #1565c0;
  border-color: rgba(21, 101, 192, 0.25);
}
.pkg-growplus {
  background: #f0edff;
  color: #5c35c5;
  border-color: rgba(92, 53, 197, 0.25);
}
.pkg-grow {
  background: #e6faf8;
  color: #00897b;
  border-color: rgba(0, 137, 123, 0.25);
}
.pkg-konnect {
  background: #ebf4ff;
  color: #1565c0;
  border-color: rgba(21, 101, 192, 0.25);
}

/* Doctor avatars */
.cs-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.cs-avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  font-size: 22px;
}
.cs-avatar-blue {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
}
.cs-avatar-teal {
  background: linear-gradient(135deg, #00695c, #00897b);
}
.cs-avatar-purple {
  background: linear-gradient(135deg, #4527a0, #5c35c5);
}
.cs-avatar-orange {
  background: linear-gradient(135deg, #e65100, #f57c00);
}
.cs-avatar-green {
  background: linear-gradient(135deg, #2e7d32, #388e3c);
}
.cs-avatar-rose {
  background: linear-gradient(135deg, #b71c1c, #c62828);
}

/* ════════════════════════════════════════════════════════════════
   CASE STUDIES — Homepage Preview Section
   ════════════════════════════════════════════════════════════════ */
body[data-page="home"] .cs-preview-section {
  background: #f8faff;
}

body[data-page="home"] .cs-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
body[data-page="home"] .cs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.1);
  border-color: rgba(21, 101, 192, 0.25);
}
body[data-page="home"] .cs-card-featured {
  border-color: rgba(0, 137, 123, 0.3);
  box-shadow: 0 8px 30px rgba(0, 137, 123, 0.08);
}
body[data-page="home"] .cs-card-top {
  padding: 24px 24px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
body[data-page="home"] .cs-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
}
body[data-page="home"] .cs-card-body {
  padding: 0 24px 20px;
  flex: 1;
}
body[data-page="home"] .cs-clinic-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2px;
}
body[data-page="home"] .cs-clinic-loc {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 12px;
}
body[data-page="home"] .cs-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
body[data-page="home"] .cs-metrics-row {
  display: flex;
  gap: 0;
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
body[data-page="home"] .cs-metric {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
body[data-page="home"] .cs-metric:last-child {
  border-right: none;
}
body[data-page="home"] .cs-metric-num {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
body[data-page="home"] .cs-metric-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.2;
}
body[data-page="home"] .cs-card-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
body[data-page="home"] .cs-card-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
body[data-page="home"] .cs-read-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
body[data-page="home"] .cs-read-link:hover {
  gap: 10px;
}
body[data-page="home"] .cs-preview-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ════════════════════════════════════════════════════════════════
   CASE STUDIES — Listing Page  (full redesign)
   ════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
body[data-page="case-studies"] .cs-hero {
  padding: 90px 0 80px;
  background: linear-gradient(155deg, #f0f4ff 0%, #edfaf7 100%);
  position: relative;
  overflow: hidden;
}
body[data-page="case-studies"] .cs-hero-bg-dot {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}
body[data-page="case-studies"] .cs-hero-title {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--text-dark);
  margin: 14px 0 18px;
}
body[data-page="case-studies"] .cs-gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body[data-page="case-studies"] .cs-hero-sub {
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
body[data-page="case-studies"] .cs-hero-stats-strip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 18px 28px;
  gap: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
body[data-page="case-studies"] .cs-hs-item {
  text-align: center;
  flex: 1;
  padding: 0 18px;
}
body[data-page="case-studies"] .cs-hs-num {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
body[data-page="case-studies"] .cs-hs-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin-top: 3px;
}
body[data-page="case-studies"] .cs-hs-div {
  width: 1px;
  height: 36px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ── Hero deco cards (right column) ── */
body[data-page="case-studies"] .cs-hero-deco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 10px;
}
body[data-page="case-studies"] .cs-deco-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s;
  height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
body[data-page="case-studies"] .cs-deco-card:hover {
  transform: translateY(-4px);
}
body[data-page="case-studies"] .cs-deco-offset {
  margin-top: 28px;
}
body[data-page="case-studies"] .cs-deco-offset2 {
  margin-top: -14px;
}
body[data-page="case-studies"] .cs-deco-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 12px;
}
body[data-page="case-studies"] .cs-deco-blue .cs-deco-icon {
  background: #ebf4ff;
  color: #1565c0;
}
body[data-page="case-studies"] .cs-deco-teal .cs-deco-icon {
  background: #e6faf8;
  color: #00897b;
}
body[data-page="case-studies"] .cs-deco-purple.cs-deco-icon {
  background: #f0edff;
  color: #5c35c5;
}
body[data-page="case-studies"] .cs-deco-orange .cs-deco-icon {
  background: #fff3e8;
  color: #e65100;
}
body[data-page="case-studies"] .cs-deco-purple .cs-deco-icon {
  background: #f0edff;
  color: #5c35c5;
}
body[data-page="case-studies"] .cs-deco-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
body[data-page="case-studies"] .cs-deco-blue .cs-deco-num {
  color: #1565c0;
}
body[data-page="case-studies"] .cs-deco-teal .cs-deco-num {
  color: #00897b;
}
body[data-page="case-studies"] .cs-deco-purple .cs-deco-num {
  color: #5c35c5;
}
body[data-page="case-studies"] .cs-deco-orange .cs-deco-num {
  color: #e65100;
}
body[data-page="case-studies"] .cs-deco-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
body[data-page="case-studies"] .cs-deco-who {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Filter bar ── */
body[data-page="case-studies"] .cs-body {
  padding: 60px 0 80px;
}
body[data-page="case-studies"] .cs-filter-wrap {
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body[data-page="case-studies"] .cs-filter-wrap::-webkit-scrollbar {
  display: none;
}
body[data-page="case-studies"] .cs-filter-bar {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}
body[data-page="case-studies"] .cs-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
body[data-page="case-studies"] .cs-filter-btn:hover {
  color: var(--primary);
  background: #ebf4ff;
}
body[data-page="case-studies"] .cs-filter-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.3);
}

/* ── Case study cards ── */
body[data-page="case-studies"] .cs-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body[data-page="case-studies"] .cs-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
body[data-page="case-studies"] .cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(21, 101, 192, 0.1);
}

/* Left accent stripe — coloured per package */
body[data-page="case-studies"] .cs-card-stripe {
  width: 5px;
  flex-shrink: 0;
}
body[data-page="case-studies"] .cs-pkg-proplus .cs-card-stripe {
  background: linear-gradient(180deg, #312e81, #4c1d95);
}
body[data-page="case-studies"] .cs-pkg-pro .cs-card-stripe {
  background: linear-gradient(180deg, #1565c0, #1e88e5);
}
body[data-page="case-studies"] .cs-pkg-growplus .cs-card-stripe {
  background: linear-gradient(180deg, #4527a0, #7c3aed);
}
body[data-page="case-studies"] .cs-pkg-grow .cs-card-stripe {
  background: linear-gradient(180deg, #00695c, #00897b);
}
body[data-page="case-studies"] .cs-pkg-konnect .cs-card-stripe {
  background: linear-gradient(180deg, #1565c0, #0288d1);
}

body[data-page="case-studies"] .cs-card-inner {
  flex: 1;
  padding: 28px 32px;
  min-width: 0;
}
body[data-page="case-studies"] .cs-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
body[data-page="case-studies"] .cs-card-who {
  display: flex;
  align-items: center;
  gap: 14px;
}
body[data-page="case-studies"] .cs-who-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
body[data-page="case-studies"] .cs-who-info strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}
body[data-page="case-studies"] .cs-who-info span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
body[data-page="case-studies"] .cs-who-loc {
  font-size: 11px !important;
  color: var(--text-muted) !important;
  display: flex;
  align-items: center;
  gap: 4px;
}
body[data-page="case-studies"] .cs-who-loc i {
  font-size: 9px;
}
body[data-page="case-studies"] .cs-card-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
body[data-page="case-studies"] .cs-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
}
body[data-page="case-studies"] .cs-card-quote {
  font-size: 14px;
  font-style: italic;
  color: #64748b;
  line-height: 1.65;
  border-left: 3px solid var(--border-light);
  padding: 4px 0 4px 14px;
  margin: 0 0 20px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
body[data-page="case-studies"] .cs-card-quote .fa-quote-left {
  color: var(--border-light);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Metrics strip */
body[data-page="case-studies"] .cs-card-metrics {
  display: flex;
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
body[data-page="case-studies"] .cs-metric {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid var(--border-light);
}
body[data-page="case-studies"] .cs-metric:last-child {
  border-right: none;
}
body[data-page="case-studies"] .cs-m-num {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
body[data-page="case-studies"] .cs-pkg-proplus .cs-m-num {
  color: #4c1d95;
}
body[data-page="case-studies"] .cs-pkg-pro .cs-m-num {
  color: #1565c0;
}
body[data-page="case-studies"] .cs-pkg-growplus .cs-m-num {
  color: #5c35c5;
}
body[data-page="case-studies"] .cs-pkg-grow .cs-m-num {
  color: #00897b;
}
body[data-page="case-studies"] .cs-pkg-konnect .cs-m-num {
  color: #1565c0;
}
body[data-page="case-studies"] .cs-m-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}

/* Card footer row */
body[data-page="case-studies"] .cs-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
body[data-page="case-studies"] .cs-services-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
body[data-page="case-studies"] .cs-services-tag i {
  color: var(--secondary);
}
body[data-page="case-studies"] .cs-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 9px 20px;
  border: 1.5px solid rgba(21, 101, 192, 0.2);
  border-radius: 50px;
  background: #ebf4ff;
  transition:
    background 0.2s,
    border-color 0.2s,
    gap 0.2s;
  white-space: nowrap;
}
body[data-page="case-studies"] .cs-read-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  gap: 11px;
}

/* Empty state */
body[data-page="case-studies"] .cs-empty-state {
  text-align: center;
  padding: 70px 20px;
  color: var(--text-muted);
}
body[data-page="case-studies"] .cs-empty-state i {
  font-size: 52px;
  margin-bottom: 16px;
  display: block;
  opacity: 0.25;
}
body[data-page="case-studies"] .cs-empty-state p {
  font-size: 15px;
}

/* ── CTA Section ── */
/* ── CTA section — centred card ── */
body[data-page="case-studies"] .cs-cta-section {
  background: linear-gradient(160deg, #ebf4ff 0%, #e6faf8 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
body[data-page="case-studies"] .cs-cta-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}
body[data-page="case-studies"] .cs-cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 137, 123, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
body[data-page="case-studies"] .cs-cta-box {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 52px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.14) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 137, 123, 0.25) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, #004d40 0%, #00695c 38%, #1a237e 72%, #1565c0 100%);
  text-align: center;
  box-shadow:
    0 28px 80px rgba(0, 77, 64, 0.28),
    0 4px 20px rgba(21, 101, 192, 0.18);
}
body[data-page="case-studies"] .cs-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(178, 255, 243, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
body[data-page="case-studies"] .cs-cta-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
body[data-page="case-studies"] .cs-cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
body[data-page="case-studies"] .cs-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
body[data-page="case-studies"] .cs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #fff;
  color: #004d40;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
body[data-page="case-studies"] .cs-btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  color: #004d40;
}
body[data-page="case-studies"] .cs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
body[data-page="case-studies"] .cs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Thin divider between buttons and stats */
body[data-page="case-studies"] .cs-cta-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 36px auto 32px;
}

/* Stats row inside card */
body[data-page="case-studies"] .cs-cta-stats {
  display: flex;
  justify-content: center;
  gap: 0;
}
body[data-page="case-studies"] .cs-cta-stat {
  flex: 1;
  max-width: 160px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
body[data-page="case-studies"] .cs-cta-stat:last-child {
  border-right: none;
}
body[data-page="case-studies"] .cs-cta-num {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
}
body[data-page="case-studies"] .cs-cta-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.35;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  body[data-page="case-studies"] .cs-hero {
    padding: 70px 0 50px;
  }
  body[data-page="case-studies"] .cs-hero-stats-strip {
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 16px;
  }
  body[data-page="case-studies"] .cs-hs-item {
    padding: 8px 12px;
  }
  body[data-page="case-studies"] .cs-hs-div {
    display: none;
  }
  body[data-page="case-studies"] .cs-card-inner {
    padding: 20px 20px 20px 16px;
  }
  body[data-page="case-studies"] .cs-card-top {
    flex-direction: column;
  }
  body[data-page="case-studies"] .cs-card-pills {
    justify-content: flex-start;
  }
  body[data-page="case-studies"] .cs-card-title {
    font-size: 17px;
  }
  body[data-page="case-studies"] .cs-metric {
    padding: 10px 6px;
  }
  body[data-page="case-studies"] .cs-m-num {
    font-size: 16px;
  }
  body[data-page="case-studies"] .cs-filter-bar {
    border-radius: 16px;
  }
  body[data-page="case-studies"] .cs-cta-box {
    padding: 44px 28px;
  }
  body[data-page="case-studies"] .cs-cta-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  body[data-page="case-studies"] .cs-cta-stat {
    border-right: none;
    max-width: 120px;
    padding: 0 12px;
  }
}

/* ════════════════════════════════════════════════════════════════
   CASE STUDY DETAIL PAGE
   ════════════════════════════════════════════════════════════════ */
body[data-page="case-study-detail"] .csd-breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}
body[data-page="case-study-detail"] .csd-breadcrumb a,
body[data-page="case-study-detail"] .csd-breadcrumb span {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}
body[data-page="case-study-detail"] .csd-breadcrumb a:hover {
  color: var(--primary);
}
body[data-page="case-study-detail"] .csd-breadcrumb .fa-chevron-right {
  font-size: 9px;
  margin: 0 8px;
  color: var(--border-light);
}

body[data-page="case-study-detail"] .csd-hero {
  padding: 70px 0 60px;
  background: linear-gradient(160deg, #f0f4ff 0%, #f0faf8 100%);
}
body[data-page="case-study-detail"] .csd-hero-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
body[data-page="case-study-detail"] .csd-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}
body[data-page="case-study-detail"] .csd-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
}
body[data-page="case-study-detail"] .csd-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
body[data-page="case-study-detail"] .csd-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
body[data-page="case-study-detail"] .csd-meta-item i {
  color: var(--primary);
}

body[data-page="case-study-detail"] .csd-doctor-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}
body[data-page="case-study-detail"] .csd-doctor-avatar {
  margin: 0 auto 16px;
}
body[data-page="case-study-detail"] .csd-doctor-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 4px;
}
body[data-page="case-study-detail"] .csd-doctor-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 2px;
}
body[data-page="case-study-detail"] .csd-doctor-clinic {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 16px;
}
body[data-page="case-study-detail"] .csd-pullquote {
  font-size: 14px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  border-left: 3px solid var(--secondary);
  padding-left: 14px;
  text-align: left;
  margin: 0;
}

/* Results band */
body[data-page="case-study-detail"] .csd-results-band {
  background: var(--text-dark);
  padding: 40px 0;
}
body[data-page="case-study-detail"] .csd-results-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
body[data-page="case-study-detail"] .csd-result-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 10px 20px;
}
body[data-page="case-study-detail"] .csd-result-num {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
body[data-page="case-study-detail"] .csd-result-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body[data-page="case-study-detail"] .csd-result-div {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Story content */
body[data-page="case-study-detail"] .csd-story {
  padding: 70px 0;
}
body[data-page="case-study-detail"] .csd-section-block {
  margin-bottom: 56px;
}
body[data-page="case-study-detail"] .csd-section-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
body[data-page="case-study-detail"] .csd-section-label.challenge {
  background: #fff0f0;
  color: #c62828;
}
body[data-page="case-study-detail"] .csd-section-label.solution {
  background: #e6faf8;
  color: #00695c;
}
body[data-page="case-study-detail"] .csd-section-label.results {
  background: #ebf4ff;
  color: #1565c0;
}
body[data-page="case-study-detail"] .csd-block-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
body[data-page="case-study-detail"] .csd-story p {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 16px;
}

/* Challenge list */
body[data-page="case-study-detail"] .csd-challenge-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
body[data-page="case-study-detail"] .csd-challenge-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff8f8;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 16px;
}
body[data-page="case-study-detail"] .csd-ci-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fee2e2;
  color: #c62828;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
body[data-page="case-study-detail"] .csd-challenge-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
body[data-page="case-study-detail"] .csd-challenge-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Solution steps */
body[data-page="case-study-detail"] .csd-solution-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
body[data-page="case-study-detail"] .csd-sol-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
body[data-page="case-study-detail"] .csd-sol-step:last-child {
  border-bottom: none;
}
body[data-page="case-study-detail"] .csd-sol-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--border-light);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  letter-spacing: -1px;
}
body[data-page="case-study-detail"] .csd-sol-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
body[data-page="case-study-detail"] .csd-sol-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 12px;
}
body[data-page="case-study-detail"] .csd-sol-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
body[data-page="case-study-detail"] .csd-sol-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: #ebf4ff;
  padding: 3px 10px;
  border-radius: 50px;
}

/* Before/after table */
body[data-page="case-study-detail"] .csd-before-after {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 20px;
}
body[data-page="case-study-detail"] .csd-ba-header {
  display: flex;
}
body[data-page="case-study-detail"] .csd-ba-row {
  display: flex;
  border-top: 1px solid var(--border-light);
}
body[data-page="case-study-detail"] .csd-ba-col {
  flex: 1;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}
body[data-page="case-study-detail"] .csd-ba-header .csd-ba-col {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 18px;
}
body[data-page="case-study-detail"] .csd-ba-header .before-col {
  background: #fff8f8;
  color: #c62828;
}
body[data-page="case-study-detail"] .csd-ba-header .after-col {
  background: #f0faf8;
  color: #00695c;
  border-left: 1px solid var(--border-light);
}
body[data-page="case-study-detail"] .after-col {
  border-left: 1px solid var(--border-light);
  font-weight: 600;
  color: var(--text-dark);
}

/* Full quote */
body[data-page="case-study-detail"] .csd-full-quote {
  background: linear-gradient(135deg, #ebf4ff, #e6faf8);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  margin-top: 40px;
}
body[data-page="case-study-detail"] .csd-fq-icon {
  font-size: 36px;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}
body[data-page="case-study-detail"] .csd-full-quote blockquote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0 0 12px;
}
body[data-page="case-study-detail"] .csd-full-quote cite {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
}

/* Sidebar */
body[data-page="case-study-detail"] .csd-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body[data-page="case-study-detail"] .csd-sidebar-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 22px;
}
body[data-page="case-study-detail"] .csd-sb-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
body[data-page="case-study-detail"] .csd-sb-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
body[data-page="case-study-detail"] .csd-sb-link:hover {
  text-decoration: underline;
}
body[data-page="case-study-detail"] .csd-services-list,
body[data-page="case-study-detail"] .csd-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body[data-page="case-study-detail"] .csd-services-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
body[data-page="case-study-detail"] .csd-services-list li i {
  width: 18px;
  color: var(--primary);
  font-size: 13px;
}
body[data-page="case-study-detail"] .csd-info-list li {
  font-size: 13px;
  color: var(--text-muted);
}
body[data-page="case-study-detail"] .csd-info-list li strong {
  color: var(--text-dark);
}
body[data-page="case-study-detail"] .csd-sidebar-cta {
  background: linear-gradient(135deg, #ebf4ff, #e6faf8);
  border: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}
body[data-page="case-study-detail"] .csd-sidebar-cta h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
body[data-page="case-study-detail"] .csd-sidebar-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* More section */
body[data-page="case-study-detail"] .csd-more-section {
  padding: 80px 0;
  background: var(--bg-light);
}
body[data-page="case-study-detail"] .cs-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
body[data-page="case-study-detail"] .cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 101, 192, 0.09);
}
body[data-page="case-study-detail"] .cs-card-top {
  padding: 22px 22px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
body[data-page="case-study-detail"] .cs-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 4px;
}
body[data-page="case-study-detail"] .cs-card-body {
  padding: 0 22px 18px;
  flex: 1;
}
body[data-page="case-study-detail"] .cs-clinic-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2px;
}
body[data-page="case-study-detail"] .cs-clinic-loc {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 10px;
}
body[data-page="case-study-detail"] .cs-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}
body[data-page="case-study-detail"] .cs-metrics-row {
  display: flex;
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
}
body[data-page="case-study-detail"] .cs-metric {
  flex: 1;
  padding: 10px 6px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
body[data-page="case-study-detail"] .cs-metric:last-child {
  border-right: none;
}
body[data-page="case-study-detail"] .cs-metric-num {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
body[data-page="case-study-detail"] .cs-metric-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 3px;
}
body[data-page="case-study-detail"] .cs-card-footer {
  padding: 14px 22px 20px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
body[data-page="case-study-detail"] .cs-read-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
body[data-page="case-study-detail"] .cs-read-link:hover {
  gap: 10px;
}

@media (max-width: 991px) {
  body[data-page="case-study-detail"] .csd-sidebar {
    position: static;
  }
  body[data-page="case-study-detail"] .csd-results-grid {
    gap: 10px;
  }
  body[data-page="case-study-detail"] .csd-result-div {
    display: none;
  }
}
@media (max-width: 575px) {
  body[data-page="case-study-detail"] .csd-hero {
    padding: 50px 0 40px;
  }
  body[data-page="case-study-detail"] .csd-story {
    padding: 40px 0;
  }
}

/* ============================================================
   PLATFORM PAGE  (body[data-page="platform"])
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
body[data-page="platform"] .plt-hero {
  background: var(--grad-hero);
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
body[data-page="platform"] .plt-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

body[data-page="platform"] .plt-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 101, 192, 0.08);
  border: 1px solid rgba(21, 101, 192, 0.18);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  margin-bottom: 28px;
}
body[data-page="platform"] .plt-hero-trust i {
  color: var(--primary);
  font-size: 13px;
}
body[data-page="platform"] .plt-hero-trust-dots {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}
body[data-page="platform"] .plt-hero-trust-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
  animation: plt-dot-pulse 1.4s infinite ease-in-out;
}
body[data-page="platform"] .plt-hero-trust-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
body[data-page="platform"] .plt-hero-trust-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes plt-dot-pulse {
  0%,
  80%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.4);
    opacity: 1;
  }
}

body[data-page="platform"] .plt-hero-logo {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

body[data-page="platform"] .plt-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
body[data-page="platform"] .plt-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
body[data-page="platform"] .plt-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

body[data-page="platform"] .plt-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body[data-page="platform"] .plt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}
body[data-page="platform"] .plt-hero-badge i {
  color: var(--primary);
  font-size: 12px;
}

/* ── DASHBOARD MOCKUP ─────────────────────────────────────── */
body[data-page="platform"] .plt-mockup-wrap {
  position: relative;
}
body[data-page="platform"] .plt-mockup-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(21, 101, 192, 0.16);
  overflow: hidden;
  border: 1px solid rgba(21, 101, 192, 0.1);
}
body[data-page="platform"] .plt-mockup-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a202c;
  padding: 12px 18px;
}
body[data-page="platform"] .plt-mockup-dots {
  display: flex;
  gap: 5px;
}
body[data-page="platform"] .plt-mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}
body[data-page="platform"] .plt-mockup-dots span:nth-child(2) {
  background: #febc2e;
}
body[data-page="platform"] .plt-mockup-dots span:nth-child(3) {
  background: #28c840;
}
body[data-page="platform"] .plt-mockup-title {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e0;
  text-align: center;
}
body[data-page="platform"] .plt-mockup-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #48bb78;
  background: rgba(72, 187, 120, 0.12);
  border-radius: 20px;
  padding: 3px 9px;
}
body[data-page="platform"] .plt-mockup-live i {
  font-size: 7px;
}

body[data-page="platform"] .plt-mockup-body {
  padding: 18px 18px 14px;
}
body[data-page="platform"] .plt-mockup-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
body[data-page="platform"] .plt-mstat {
  flex: 1;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
body[data-page="platform"] .plt-mstat.blue {
  background: rgba(21, 101, 192, 0.08);
}
body[data-page="platform"] .plt-mstat.teal {
  background: rgba(0, 137, 123, 0.08);
}
body[data-page="platform"] .plt-mstat.green {
  background: rgba(67, 160, 71, 0.08);
}
body[data-page="platform"] .plt-mstat-num {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
body[data-page="platform"] .plt-mstat.blue .plt-mstat-num {
  color: #1565c0;
}
body[data-page="platform"] .plt-mstat.teal .plt-mstat-num {
  color: #00897b;
}
body[data-page="platform"] .plt-mstat.green .plt-mstat-num {
  color: #2e7d32;
}
body[data-page="platform"] .plt-mstat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

body[data-page="platform"] .plt-mockup-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
body[data-page="platform"] .plt-mockup-patient-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
body[data-page="platform"] .plt-mockup-patient-row:last-of-type {
  border-bottom: none;
}
body[data-page="platform"] .plt-mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-mockup-pinfo {
  flex: 1;
  min-width: 0;
}
body[data-page="platform"] .plt-mockup-pname {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body[data-page="platform"] .plt-mockup-ptime {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body[data-page="platform"] .plt-mockup-badge {
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 9px;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-mockup-badge.confirmed {
  background: rgba(21, 101, 192, 0.1);
  color: #1565c0;
}
body[data-page="platform"] .plt-mockup-badge.new {
  background: rgba(0, 137, 123, 0.1);
  color: #00897b;
}
body[data-page="platform"] .plt-mockup-badge.waiting {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

body[data-page="platform"] .plt-mockup-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
body[data-page="platform"] .plt-mockup-action-btn {
  flex: 1;
  padding: 7px 6px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: var(--transition-fast);
}
body[data-page="platform"] .plt-mockup-action-btn.primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.25);
}
body[data-page="platform"] .plt-mockup-action-btn.outline-blue {
  background: rgba(21, 101, 192, 0.08);
  color: #1565c0;
  border: 1px solid rgba(21, 101, 192, 0.2);
}
body[data-page="platform"] .plt-mockup-action-btn.outline-teal {
  background: rgba(0, 137, 123, 0.08);
  color: #00897b;
  border: 1px solid rgba(0, 137, 123, 0.2);
}
body[data-page="platform"] .plt-mockup-action-btn:hover {
  opacity: 0.85;
}

body[data-page="platform"] .plt-mockup-float-notif {
  position: absolute;
  bottom: -18px;
  left: -20px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--border);
  max-width: 290px;
  animation: plt-notif-float 3s ease-in-out infinite;
}
body[data-page="platform"] .plt-mockup-float-notif i {
  color: #25d366;
  font-size: 18px;
  flex-shrink: 0;
}
@keyframes plt-notif-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ── PROBLEM SECTION ─────────────────────────────────────── */
body[data-page="platform"] .plt-problem-section {
  background: var(--gray-100);
}
body[data-page="platform"] .plt-pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
body[data-page="platform"] .plt-pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  opacity: 0;
  transition: var(--transition);
}
body[data-page="platform"] .plt-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}
body[data-page="platform"] .plt-pain-card:hover::before {
  opacity: 1;
}

body[data-page="platform"] .plt-pain-icon {
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1;
}
body[data-page="platform"] .plt-pain-card h5 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
body[data-page="platform"] .plt-pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
body[data-page="platform"] .plt-pain-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.12);
}
body[data-page="platform"] .plt-pain-stat-num {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
}
body[data-page="platform"] .plt-pain-stat-lbl {
  font-size: 12px;
  color: #dc2626;
  opacity: 0.75;
  line-height: 1.3;
}
body[data-page="platform"] .plt-problem-bridge {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* ── SOLUTION SECTION ────────────────────────────────────── */
body[data-page="platform"] .plt-solution-section {
  background: #fff;
}
body[data-page="platform"] .plt-solution-row {
  margin-bottom: 80px;
}
body[data-page="platform"] .plt-solution-row:last-child {
  margin-bottom: 0;
}

body[data-page="platform"] .plt-sol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
body[data-page="platform"] .plt-sol-eyebrow.blue {
  background: rgba(21, 101, 192, 0.08);
  color: #1565c0;
}
body[data-page="platform"] .plt-sol-eyebrow.teal {
  background: rgba(0, 137, 123, 0.08);
  color: #00897b;
}
body[data-page="platform"] .plt-sol-eyebrow.purple {
  background: rgba(92, 53, 197, 0.08);
  color: #5c35c5;
}

body[data-page="platform"] .plt-sol-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
body[data-page="platform"] .plt-sol-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
body[data-page="platform"] .plt-sol-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body[data-page="platform"] .plt-sol-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
}
body[data-page="platform"] .plt-sol-list li i {
  color: var(--secondary);
  font-size: 14px;
  flex-shrink: 0;
}

/* Solution visuals */
body[data-page="platform"] .plt-sol-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
body[data-page="platform"] .plt-sol-visual.blue-bg {
  background: #ebf4ff;
}
body[data-page="platform"] .plt-sol-visual.teal-bg {
  background: #e6faf8;
}
body[data-page="platform"] .plt-sol-visual.purple-bg {
  background: #f3eeff;
}

body[data-page="platform"] .plt-sol-vis-header {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(21, 101, 192, 0.08);
  color: #1565c0;
  border-bottom: 1px solid rgba(21, 101, 192, 0.12);
}
body[data-page="platform"] .plt-sol-vis-header.teal {
  background: rgba(0, 137, 123, 0.08);
  color: #00897b;
  border-color: rgba(0, 137, 123, 0.12);
}
body[data-page="platform"] .plt-sol-vis-header.purple {
  background: rgba(92, 53, 197, 0.08);
  color: #5c35c5;
  border-color: rgba(92, 53, 197, 0.12);
}
body[data-page="platform"] .plt-sol-vis-footer {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #1565c0;
  background: rgba(21, 101, 192, 0.06);
  border-top: 1px solid rgba(21, 101, 192, 0.1);
}

/* Calendar visual */
body[data-page="platform"] .plt-sol-calendar-grid {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body[data-page="platform"] .plt-cal-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
}
body[data-page="platform"] .plt-cal-slot.filled.blue {
  background: rgba(21, 101, 192, 0.07);
  border-color: rgba(21, 101, 192, 0.15);
}
body[data-page="platform"] .plt-cal-slot.current {
  background: rgba(21, 101, 192, 0.12);
  border-color: rgba(21, 101, 192, 0.28);
  box-shadow: 0 2px 10px rgba(21, 101, 192, 0.15);
}
body[data-page="platform"] .plt-cal-slot.open {
  background: rgba(0, 137, 123, 0.06);
  border-color: rgba(0, 137, 123, 0.15);
}
body[data-page="platform"] .plt-cal-slot.empty {
  background: rgba(0, 0, 0, 0.025);
  border-color: rgba(0, 0, 0, 0.06);
  border-style: dashed;
}
body[data-page="platform"] .plt-cal-time {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 40px;
}
body[data-page="platform"] .plt-cal-name {
  flex: 1;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
}
body[data-page="platform"] .plt-cal-name.empty-lbl {
  color: var(--text-light);
  font-weight: 500;
}
body[data-page="platform"] .plt-cal-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: #1565c0;
  background: rgba(21, 101, 192, 0.1);
  border-radius: 20px;
  padding: 2px 8px;
}
body[data-page="platform"] .plt-cal-tag.current-tag {
  background: #1565c0;
  color: #fff;
}

/* EMR visual */
body[data-page="platform"] .plt-emr-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body[data-page="platform"] .plt-emr-row {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 137, 123, 0.08);
  align-items: flex-start;
}
body[data-page="platform"] .plt-emr-row:last-child {
  border-bottom: none;
}
body[data-page="platform"] .plt-emr-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 110px;
  padding-top: 1px;
}
body[data-page="platform"] .plt-emr-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  flex: 1;
}
body[data-page="platform"] .plt-emr-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 9px;
  margin-right: 4px;
}
body[data-page="platform"] .plt-emr-tag.red {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
body[data-page="platform"] .plt-emr-tag.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}
body[data-page="platform"] .plt-emr-alert {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #dc2626;
  margin-top: 10px;
}

/* Billing visual */
body[data-page="platform"] .plt-bill-body {
  padding: 14px 18px 18px;
}
body[data-page="platform"] .plt-bill-patient {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(92, 53, 197, 0.1);
}
body[data-page="platform"] .plt-bill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-body);
  padding: 6px 0;
}
body[data-page="platform"] .plt-bill-row.subtotal {
  color: var(--text-muted);
  font-size: 13px;
}
body[data-page="platform"] .plt-bill-row.gst {
  color: var(--text-muted);
  font-size: 13px;
}
body[data-page="platform"] .plt-bill-row.total {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-dark);
  padding-top: 8px;
}
body[data-page="platform"] .plt-bill-divider {
  height: 1px;
  background: rgba(92, 53, 197, 0.12);
  margin: 6px 0;
}
body[data-page="platform"] .plt-bill-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
body[data-page="platform"] .plt-bill-btn {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition-fast);
}
body[data-page="platform"] .plt-bill-btn.primary {
  background: var(--grad-purple);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(92, 53, 197, 0.25);
}
body[data-page="platform"] .plt-bill-btn.outline {
  background: transparent;
  border: 1.5px solid rgba(92, 53, 197, 0.3);
  color: #5c35c5;
}
body[data-page="platform"] .plt-bill-btn:hover {
  opacity: 0.85;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
body[data-page="platform"] .plt-how-section {
  background: var(--gray-100);
}
body[data-page="platform"] .plt-steps-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 48px;
}
body[data-page="platform"] .plt-step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
body[data-page="platform"] .plt-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
body[data-page="platform"] .plt-step-num {
  position: absolute;
  top: -16px;
  left: 28px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 900;
  background: var(--grad-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  letter-spacing: 1px;
}
body[data-page="platform"] .plt-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(21, 101, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1565c0;
  margin-bottom: 16px;
  margin-top: 8px;
}
body[data-page="platform"] .plt-step-icon.teal {
  background: rgba(0, 137, 123, 0.1);
  color: #00897b;
}
body[data-page="platform"] .plt-step-icon.green {
  background: rgba(67, 160, 71, 0.1);
  color: #2e7d32;
}

body[data-page="platform"] .plt-step h4 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
body[data-page="platform"] .plt-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
body[data-page="platform"] .plt-step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body[data-page="platform"] .plt-step-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
body[data-page="platform"] .plt-step-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
body[data-page="platform"] .plt-step-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #1565c0;
  background: rgba(21, 101, 192, 0.08);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
body[data-page="platform"] .plt-step-time.teal {
  color: #00897b;
  background: rgba(0, 137, 123, 0.08);
}
body[data-page="platform"] .plt-step-time.green {
  color: #2e7d32;
  background: rgba(67, 160, 71, 0.08);
}

body[data-page="platform"] .plt-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-light);
  margin-top: 80px;
  flex-shrink: 0;
}

/* ── FEATURES ────────────────────────────────────────────── */
body[data-page="platform"] .plt-feat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
body[data-page="platform"] .plt-feat-tab {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body[data-page="platform"] .plt-feat-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(21, 101, 192, 0.04);
}
body[data-page="platform"] .plt-feat-tab.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.25);
}

body[data-page="platform"] .plt-feat-panel {
  display: none;
}
body[data-page="platform"] .plt-feat-panel.active {
  display: block;
}

body[data-page="platform"] .plt-feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  height: 100%;
  transition: var(--transition);
}
body[data-page="platform"] .plt-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.2);
}
body[data-page="platform"] .plt-feat-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
body[data-page="platform"] .plt-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
body[data-page="platform"] .plt-feat-icon.blue {
  background: rgba(21, 101, 192, 0.1);
  color: #1565c0;
}
body[data-page="platform"] .plt-feat-icon.teal {
  background: rgba(0, 137, 123, 0.1);
  color: #00897b;
}
body[data-page="platform"] .plt-feat-icon.purple {
  background: rgba(92, 53, 197, 0.1);
  color: #5c35c5;
}
body[data-page="platform"] .plt-feat-icon.green {
  background: rgba(67, 160, 71, 0.1);
  color: #2e7d32;
}
body[data-page="platform"] .plt-feat-icon.wa {
  background: rgba(37, 211, 102, 0.1);
  color: #128c7e;
}

body[data-page="platform"] .plt-feat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
body[data-page="platform"] .plt-feat-tag {
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
}
body[data-page="platform"] .plt-feat-tag.popular {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}
body[data-page="platform"] .plt-feat-tag.new {
  background: rgba(21, 101, 192, 0.1);
  color: #1565c0;
}
body[data-page="platform"] .plt-feat-tag.mobile {
  background: rgba(92, 53, 197, 0.1);
  color: #5c35c5;
}

body[data-page="platform"] .plt-feat-card h5 {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
body[data-page="platform"] .plt-feat-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── CONVENIENCE ─────────────────────────────────────────── */
body[data-page="platform"] .plt-convenience-section {
  background: #fff;
}
body[data-page="platform"] .plt-conv-card {
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
}
body[data-page="platform"] .plt-conv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
body[data-page="platform"] .plt-conv-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-conv-card-icon.blue {
  background: rgba(21, 101, 192, 0.12);
  color: #1565c0;
}
body[data-page="platform"] .plt-conv-card-icon.wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}
body[data-page="platform"] .plt-conv-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
}
body[data-page="platform"] .plt-conv-card-sub {
  font-size: 13px;
  color: var(--text-muted);
}
body[data-page="platform"] .plt-conv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
body[data-page="platform"] .plt-conv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}
body[data-page="platform"] .plt-conv-list li i {
  color: var(--secondary);
  font-size: 13px;
  flex-shrink: 0;
}

/* Phone mockup */
body[data-page="platform"] .plt-phone-mockup {
  background: #1a202c;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  margin: 0 auto 22px;
  max-width: 240px;
  border: 1.5px solid #2d3748;
}
body[data-page="platform"] .plt-phone-screen {
  background: #0f172a;
  border-radius: 26px;
  overflow: hidden;
}
body[data-page="platform"] .plt-phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 4px;
  font-size: 9px;
  font-weight: 700;
  color: #cbd5e0;
}
body[data-page="platform"] .plt-phone-notch {
  width: 60px;
  height: 14px;
  background: #1a202c;
  border-radius: 0 0 8px 8px;
}
body[data-page="platform"] .plt-phone-body {
  background: #f8fafc;
  border-radius: 0 0 24px 24px;
  padding: 14px 14px 12px;
}
body[data-page="platform"] .plt-phone-greeting {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
body[data-page="platform"] .plt-phone-stats-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
body[data-page="platform"] .plt-phone-stat {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 7px 5px;
  text-align: center;
  border: 1px solid var(--border-light);
}
body[data-page="platform"] .plt-phone-stat-num {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #1565c0;
  line-height: 1;
}
body[data-page="platform"] .plt-phone-stat-lbl {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 2px;
}
body[data-page="platform"] .plt-phone-next-lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
body[data-page="platform"] .plt-phone-next-patient {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
}
body[data-page="platform"] .plt-phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-phone-pname {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dark);
}
body[data-page="platform"] .plt-phone-ptype {
  font-size: 9.5px;
  color: var(--text-muted);
}
body[data-page="platform"] .plt-phone-actions {
  display: flex;
  gap: 4px;
}
body[data-page="platform"] .plt-phone-action {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 6px 4px;
  text-align: center;
  border: 1px solid var(--border-light);
  font-size: 9px;
  color: var(--text-muted);
}
body[data-page="platform"] .plt-phone-action i {
  display: block;
  font-size: 14px;
  color: #1565c0;
  margin-bottom: 2px;
}

/* WhatsApp mockup */
body[data-page="platform"] .plt-wa-mockup {
  background: #e5ddd5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
body[data-page="platform"] .plt-wa-header {
  background: #075e54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body[data-page="platform"] .plt-wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-wa-clinic-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
body[data-page="platform"] .plt-wa-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
body[data-page="platform"] .plt-wa-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23c5b69e' opacity='.3'/%3E%3C/svg%3E");
}
body[data-page="platform"] .plt-wa-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  position: relative;
  color: var(--text-dark);
}
body[data-page="platform"] .plt-wa-msg.incoming {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
body[data-page="platform"] .plt-wa-msg.outgoing {
  background: #dcf8c6;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
body[data-page="platform"] .plt-wa-time {
  display: block;
  font-size: 10px;
  color: var(--text-light);
  text-align: right;
  margin-top: 3px;
}
body[data-page="platform"] .plt-wa-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 4px;
}
body[data-page="platform"] .plt-wa-stat-num {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #128c7e;
  line-height: 1;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-wa-stat-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── ROLES & ACCESS ───────────────────────────────────────── */
body[data-page="platform"] .plt-roles-section {
  background: linear-gradient(to bottom, #060c18, #050a14);
  padding: 90px 0 70px;
}
body[data-page="platform"] .plt-roles-header {
  max-width: 780px;
  margin: 0 auto 56px;
}
body[data-page="platform"] .plt-roles-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2dd4bf;
  margin-bottom: 18px;
}
body[data-page="platform"] .plt-roles-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 22px;
}
body[data-page="platform"] .plt-roles-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

body[data-page="platform"] .plt-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}
body[data-page="platform"] .plt-role-col {
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
body[data-page="platform"] .plt-role-col:first-child {
  border-left: none;
  padding-left: 0;
}
body[data-page="platform"] .plt-role-num {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2dd4bf;
  margin-bottom: 26px;
}
body[data-page="platform"] .plt-role-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
body[data-page="platform"] .plt-role-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

body[data-page="platform"] .plt-roles-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
body[data-page="platform"] .plt-role-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
body[data-page="platform"] .plt-role-chip-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.12);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
body[data-page="platform"] .plt-role-chip-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
body[data-page="platform"] .plt-role-chip-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991.98px) {
  body[data-page="platform"] .plt-roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body[data-page="platform"] .plt-role-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  body[data-page="platform"] .plt-role-col:nth-child(2n + 1) {
    border-left: none;
    padding-left: 0;
  }
  body[data-page="platform"] .plt-roles-chips {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  body[data-page="platform"] .plt-roles-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="platform"] .plt-role-col {
    border-left: none !important;
    padding-left: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  body[data-page="platform"] .plt-role-col:last-child {
    border-bottom: none;
  }
}

/* ── SECURITY ─────────────────────────────────────────────── */
body[data-page="platform"] .plt-security-section {
  background: var(--gray-100);
}
body[data-page="platform"] .plt-trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
body[data-page="platform"] .plt-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
body[data-page="platform"] .plt-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(21, 101, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1565c0;
  margin: 0 auto 12px;
}
body[data-page="platform"] .plt-trust-icon.teal {
  background: rgba(0, 137, 123, 0.1);
  color: #00897b;
}
body[data-page="platform"] .plt-trust-icon.purple {
  background: rgba(92, 53, 197, 0.1);
  color: #5c35c5;
}
body[data-page="platform"] .plt-trust-icon.blue {
  background: rgba(21, 101, 192, 0.1);
  color: #1565c0;
}
body[data-page="platform"] .plt-trust-icon.green {
  background: rgba(67, 160, 71, 0.1);
  color: #2e7d32;
}
body[data-page="platform"] .plt-trust-icon.amber {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}
body[data-page="platform"] .plt-trust-title {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}
body[data-page="platform"] .plt-trust-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

body[data-page="platform"] .plt-trust-banner {
  background: var(--grad-dark);
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
body[data-page="platform"] .plt-trust-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}
body[data-page="platform"] .plt-trust-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-trust-banner-headline {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
body[data-page="platform"] .plt-trust-banner-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
body[data-page="platform"] .plt-trust-banner-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-trust-stat {
  text-align: center;
  padding: 0 28px;
}
body[data-page="platform"] .plt-trust-stat-num {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
body[data-page="platform"] .plt-trust-stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  white-space: nowrap;
}
body[data-page="platform"] .plt-trust-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── PRICING ─────────────────────────────────────────────── */
body[data-page="platform"] .plt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
body[data-page="platform"] .plt-price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
}
body[data-page="platform"] .plt-price-card:hover {
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.1);
  transform: translateY(-4px);
}
body[data-page="platform"] .plt-price-card.featured {
  background: var(--grad-dark);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(21, 101, 192, 0.22);
}
body[data-page="platform"] .plt-price-card.featured:hover {
  transform: translateY(-4px);
}
body[data-page="platform"] .plt-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}
body[data-page="platform"] .plt-price-name {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
body[data-page="platform"] .plt-price-card.featured .plt-price-name {
  color: #fff;
}
body[data-page="platform"] .plt-price-tagline {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 20px;
}
body[data-page="platform"] .plt-price-card.featured .plt-price-tagline {
  color: rgba(255, 255, 255, 0.65);
}
body[data-page="platform"] .plt-price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
body[data-page="platform"] .plt-price-num {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--primary);
}
body[data-page="platform"] .plt-price-card.featured .plt-price-num {
  color: #fff;
}
body[data-page="platform"] .plt-price-cycle {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}
body[data-page="platform"] .plt-price-card.featured .plt-price-cycle {
  color: rgba(255, 255, 255, 0.55);
}
body[data-page="platform"] .plt-price-subcycle {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 20px;
}
body[data-page="platform"] .plt-price-includes {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--secondary);
  margin: 20px 0 14px;
}
body[data-page="platform"] .plt-price-card.featured .plt-price-includes {
  color: #2dd4bf;
}
body[data-page="platform"] .plt-price-card:not(.featured) .plt-price-amount {
  margin-top: 4px;
}
body[data-page="platform"] .plt-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}
body[data-page="platform"] .plt-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}
body[data-page="platform"] .plt-price-card.featured .plt-price-features li {
  color: rgba(255, 255, 255, 0.8);
}
body[data-page="platform"] .plt-price-features li i {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}
body[data-page="platform"] .plt-price-card.featured .plt-price-features li i {
  color: #2dd4bf;
}
body[data-page="platform"] .plt-price-card.featured .btn-primary-gradient {
  background: #fff;
  color: var(--primary);
}
body[data-page="platform"]
  .plt-price-card.featured
  .btn-primary-gradient:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
}
body[data-page="platform"]
  .plt-price-card:not(.featured)
  .btn-outline-primary-custom {
  margin-top: auto;
}

/* AI Suite add-on row */
body[data-page="platform"] .plt-addon-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 26px 32px;
  background: rgba(21, 101, 192, 0.04);
  border: 1px dashed rgba(21, 101, 192, 0.3);
  border-radius: var(--radius-lg);
}
body[data-page="platform"] .plt-addon-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #5c35c5, #7b52d3);
  color: #fff;
  font-size: 20px;
}
body[data-page="platform"] .plt-addon-body {
  flex-grow: 1;
}
body[data-page="platform"] .plt-addon-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body[data-page="platform"] .plt-addon-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(92, 53, 197, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
body[data-page="platform"] .plt-addon-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
  max-width: 620px;
}
body[data-page="platform"] .plt-addon-link {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}
body[data-page="platform"] .plt-addon-link:hover {
  color: #0d47a1;
}

@media (max-width: 991.98px) {
  body[data-page="platform"] .plt-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  body[data-page="platform"] .plt-price-card.featured {
    order: -1;
  }
}

@media (max-width: 575.98px) {
  body[data-page="platform"] .plt-addon-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  body[data-page="platform"] .plt-addon-link {
    align-self: flex-start;
  }
}

/* ── FINAL CTA ───────────────────────────────────────────── */
body[data-page="platform"] .plt-cta-section {
  background: var(--grad-hero);
  padding: 80px 0;
}
body[data-page="platform"] .plt-cta-box {
  background: var(--grad-dark);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 71, 161, 0.25);
}
body[data-page="platform"] .plt-cta-box::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
body[data-page="platform"] .plt-cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
body[data-page="platform"] .plt-cta-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
body[data-page="platform"] .plt-cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}
body[data-page="platform"] .plt-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}
body[data-page="platform"] .btn-white {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
body[data-page="platform"] .btn-white:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}
body[data-page="platform"] .plt-cta-outline-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
body[data-page="platform"] .plt-cta-outline-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}
body[data-page="platform"] .plt-cta-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
body[data-page="platform"] .plt-cta-contact a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
body[data-page="platform"] .plt-cta-contact a:hover {
  color: #fff;
}
body[data-page="platform"] .plt-cta-contact span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
}

/* ── PLATFORM RESPONSIVE ─────────────────────────────────── */
@media (max-width: 991px) {
  body[data-page="platform"] .plt-hero {
    padding: 90px 0 60px;
  }
  body[data-page="platform"] .plt-mockup-float-notif {
    left: 0;
    bottom: -10px;
  }
  body[data-page="platform"] .plt-steps-row {
    flex-direction: column;
  }
  body[data-page="platform"] .plt-step-connector {
    margin: 0;
    transform: rotate(90deg);
  }
  body[data-page="platform"] .plt-trust-banner {
    flex-direction: column;
    gap: 28px;
  }
  body[data-page="platform"] .plt-trust-banner-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  body[data-page="platform"] .plt-trust-stat {
    padding: 0 20px;
  }
  body[data-page="platform"] .plt-cta-box {
    padding: 48px 28px;
  }
  body[data-page="platform"] .plt-solution-row {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  body[data-page="platform"] .plt-feat-tabs {
    gap: 6px;
  }
  body[data-page="platform"] .plt-feat-tab {
    padding: 7px 13px;
    font-size: 12.5px;
  }
  body[data-page="platform"] .plt-trust-banner {
    padding: 28px 22px;
    border-radius: 18px;
  }
  body[data-page="platform"] .plt-trust-banner-text {
    flex-direction: column;
    gap: 12px;
  }
  body[data-page="platform"] .plt-trust-stat-num {
    font-size: 22px;
  }
  body[data-page="platform"] .plt-sol-visual {
    margin-top: 8px;
  }
}
@media (max-width: 575px) {
  body[data-page="platform"] .plt-hero {
    padding: 80px 0 50px;
  }
  body[data-page="platform"] .plt-hero-badges {
    gap: 7px;
  }
  body[data-page="platform"] .plt-hero-badge {
    font-size: 11.5px;
    padding: 5px 11px;
  }
  body[data-page="platform"] .plt-mockup-float-notif {
    display: none;
  }
  body[data-page="platform"] .plt-mockup-stats {
    gap: 6px;
  }
  body[data-page="platform"] .plt-mstat-num {
    font-size: 16px;
  }
  body[data-page="platform"] .plt-cta-box {
    padding: 40px 20px;
    border-radius: 20px;
  }
  body[data-page="platform"] .plt-trust-banner-stats {
    gap: 0;
  }
  body[data-page="platform"] .plt-trust-stat {
    padding: 8px 14px;
  }
  body[data-page="platform"] .plt-trust-stat-div {
    display: none;
  }
  body[data-page="platform"] .plt-phone-mockup {
    max-width: 200px;
  }
}

/* ============================================================
   HOME PAGE — STATS SECTION REDESIGN
   ============================================================ */
body[data-page="home"] .stats-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

body[data-page="home"] .stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

body[data-page="home"] .stat-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s,
    transform 0.2s;
}

body[data-page="home"] .stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

body[data-page="home"] .stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

body[data-page="home"] .stat-icon-blue {
  background: rgba(21, 101, 192, 0.28);
  color: #64b5f6;
}
body[data-page="home"] .stat-icon-teal {
  background: rgba(0, 137, 123, 0.28);
  color: #4db6ac;
}
body[data-page="home"] .stat-icon-green {
  background: rgba(67, 160, 71, 0.28);
  color: #81c784;
}
body[data-page="home"] .stat-icon-purple {
  background: rgba(92, 53, 197, 0.28);
  color: #b39ddb;
}

body[data-page="home"] .stat-content {
  flex: 1;
  min-width: 0;
}

body[data-page="home"] .stat-number {
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
  -webkit-text-fill-color: initial;
  background: none;
}

body[data-page="home"] .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  margin-bottom: 3px;
}

body[data-page="home"] .stat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
  line-height: 1.4;
}

body[data-page="home"] .stats-divider {
  width: 1px;
  height: 72px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );
  flex-shrink: 0;
  margin: 0 6px;
}

@media (max-width: 991.98px) {
  body[data-page="home"] .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  body[data-page="home"] .stats-divider {
    display: none;
  }
  body[data-page="home"] .stat-card {
    padding: 22px 18px;
    gap: 14px;
  }
  body[data-page="home"] .stat-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 17px;
    border-radius: 12px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="home"] .stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body[data-page="home"] .stat-card {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 12px;
  }
  body[data-page="home"] .stat-number {
    font-size: 32px;
  }
}

/* ============================================================
   BILLING CYCLE SWITCHER (pricing-builder.html)
   ============================================================ */

.billing-toggle-bar {
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
}

.btb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btb-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.billing-switcher {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 2px;
}

.bs-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border: none;
  background: transparent;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.bs-btn:hover:not(.active) {
  color: var(--primary);
  background: var(--gray-100);
}

.bs-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(21, 101, 192, 0.3);
}

.bs-save-tag {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

.bs-save-tag.best {
  background: rgba(67, 160, 71, 0.12);
  color: var(--accent);
}

.bs-btn.active .bs-save-tag {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.bs-btn.active .bs-save-tag.best {
  background: rgba(255, 255, 255, 0.22);
  color: #c8f7cb;
}

.btb-active-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-left: auto;
}

/* Billing cycle chip inside summary card */
.billing-cycle-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin: 6px 0 8px;
}

/* Savings row inside summary card */
.summary-savings-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(67, 160, 71, 0.08);
  border: 1px solid rgba(67, 160, 71, 0.18);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

/* Per-item unit label in selected-items list */
.item-unit {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

/* Responsive */
@media (max-width: 576px) {
  .btb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .btb-active-note {
    margin-left: 0;
  }

  .billing-switcher {
    width: 100%;
  }

  .bs-btn {
    flex: 1;
    justify-content: center;
    padding: 8px 10px;
  }
}

/* ================================================================
   KLINIC AI SUITE — Cinematic Neural Redesign
   Aesthetic: Dark command center · Manrope + Inter + Space Mono
================================================================ */

:root {
  --ai-bg: #030711;
  --ai-s1: #080f1e;
  --ai-s2: #0e1729;
  --ai-border: rgba(255, 255, 255, 0.07);
  --ai-border-m: rgba(255, 255, 255, 0.13);
  --ai-violet: #7c6fff;
  --ai-cyan: #00d2ff;
  --ai-green: #00e5a0;
  --ai-red: #ff6b6b;
  --ai-amber: #ffb347;
  --ai-text: #f0f6fc;
  --ai-text2: rgba(255, 255, 255, 0.55);
  --ai-text3: rgba(255, 255, 255, 0.28);
}

body[data-page="ai-suite"] {
  background: var(--ai-bg);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
body[data-page="ai-suite"] h1,
body[data-page="ai-suite"] h2,
body[data-page="ai-suite"] h3 {
  font-family: "Manrope", "Manrope", sans-serif;
  font-weight: 800;
}

/* ── SHARED UTILITIES ────────────────────── */
.ai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 10px;
  background: rgba(124, 111, 255, 0.12);
  border: 1px solid rgba(124, 111, 255, 0.25);
  border-radius: 50px;
  margin-bottom: 28px;
}
.ai-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ai-violet);
  box-shadow: 0 0 0 0 rgba(124, 111, 255, 0.7);
  animation: ai-ping 1.8s ease-in-out infinite;
}
@keyframes ai-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 111, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(124, 111, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 111, 255, 0);
  }
}
.ai-eyebrow-label {
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  color: rgba(124, 111, 255, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ai-eyebrow-new {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--ai-violet);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.ai-section-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  color: var(--ai-violet);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.ai-h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ai-text);
  line-height: 1.15;
  margin-bottom: 0;
}
.ai-h2.light {
  color: #0f172a;
}
.ai-grad {
  background: linear-gradient(135deg, var(--ai-violet), var(--ai-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ────────────────────────────────── */
.ai-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: var(--ai-bg);
}
.ai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 40%,
    #000 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 40%,
    #000 30%,
    transparent 100%
  );
  pointer-events: none;
}
.ai-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.ai-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(124, 111, 255, 0.25),
    transparent 65%
  );
  top: -180px;
  right: 8%;
  animation: ai-float-1 12s ease-in-out infinite;
}
.ai-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.18), transparent 65%);
  bottom: -80px;
  right: 20%;
  animation: ai-float-2 9s ease-in-out infinite;
}
.ai-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.12), transparent 65%);
  top: 40%;
  left: 3%;
  animation: ai-float-3 11s ease-in-out infinite;
}
@keyframes ai-float-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(24px, -18px) scale(1.04);
  }
  66% {
    transform: translate(-16px, 12px) scale(0.97);
  }
}
@keyframes ai-float-2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 16px);
  }
}
@keyframes ai-float-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(14px, -10px) scale(1.06);
  }
}
.ai-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--ai-text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.ai-hero-title .ai-hero-accent {
  background: linear-gradient(120deg, var(--ai-violet) 0%, var(--ai-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-hero-body {
  font-size: 1.02rem;
  color: var(--ai-text2);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 28px;
}
.ai-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ai-border-m);
  padding: 7px 14px;
  border-radius: 50px;
}
.ai-chip i {
  color: var(--ai-violet);
  font-size: 0.7rem;
}
.ai-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.ai-btn-primary {
  background: linear-gradient(135deg, #6d5ffd, #4f46e5);
  color: #fff;
  box-shadow: 0 8px 28px rgba(109, 95, 253, 0.4);
}
.ai-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(109, 95, 253, 0.55);
  color: #fff;
}
.ai-btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--ai-border-m);
  color: rgba(255, 255, 255, 0.75);
}
.ai-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

/* ── HERO CONSOLE ──────────────────────── */
.ai-console {
  background: var(--ai-s1);
  border: 1px solid var(--ai-border-m);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(124, 111, 255, 0.12);
  position: relative;
}
.ai-console::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 111, 255, 0.5),
    transparent
  );
  top: 0;
  animation: ai-scan 4s linear infinite;
  pointer-events: none;
  z-index: 5;
}
@keyframes ai-scan {
  0% {
    top: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.ai-console-bar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--ai-border);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ai-console-dots {
  display: flex;
  gap: 6px;
}
.ai-console-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.ai-console-dots .d-r {
  background: #ff5f57;
}
.ai-console-dots .d-y {
  background: #ffbd2e;
}
.ai-console-dots .d-g {
  background: #28c840;
}
.ai-console-title {
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  color: var(--ai-text3);
  letter-spacing: 0.5px;
}
.ai-console-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  color: #28c840;
  letter-spacing: 0.5px;
}
.ai-console-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
  animation: ai-ping-g 1.6s ease-in-out infinite;
}
@keyframes ai-ping-g {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(40, 200, 64, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 200, 64, 0);
  }
}
.ai-console-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-step {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border-radius: 13px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.ai-step.done {
  background: rgba(0, 229, 160, 0.05);
  border-color: rgba(0, 229, 160, 0.15);
}
.ai-step.active {
  background: rgba(124, 111, 255, 0.08);
  border-color: rgba(124, 111, 255, 0.3);
  box-shadow: 0 0 20px rgba(124, 111, 255, 0.1);
}
.ai-step.pending {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--ai-border);
  opacity: 0.5;
}
.ai-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ai-step-icon.blue {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
}
.ai-step-icon.teal {
  background: rgba(20, 184, 166, 0.18);
  color: #2dd4bf;
}
.ai-step-icon.violet {
  background: rgba(124, 111, 255, 0.2);
  color: #a78bfa;
}
.ai-step-icon.amber {
  background: rgba(251, 191, 36, 0.15);
  color: #fcd34d;
}
.ai-step-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  color: var(--ai-text3);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}
.ai-step-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ai-text);
}
.ai-step.pending .ai-step-name {
  color: var(--ai-text3);
}
.ai-step-status {
  margin-left: auto;
  font-size: 13px;
  flex-shrink: 0;
}
.ai-step.done .ai-step-status {
  color: var(--ai-green);
}
.ai-step.active .ai-step-status {
  color: var(--ai-violet);
}
.ai-step.pending .ai-step-status {
  color: var(--ai-text3);
}
.ai-soap-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ai-border-m);
  border-radius: 13px;
  overflow: hidden;
  margin-top: 4px;
}
.ai-soap-head {
  padding: 10px 15px;
  border-bottom: 1px solid var(--ai-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ai-soap-label {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  color: var(--ai-text3);
  letter-spacing: 1.5px;
}
.ai-soap-ready {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ai-green);
}
.ai-soap-ready span {
  width: 5px;
  height: 5px;
  background: var(--ai-green);
  border-radius: 50%;
  animation: ai-ping-g 1.4s infinite;
}
.ai-soap-rows {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ai-soap-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 0.75rem;
}
.ai-soap-k {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  color: var(--ai-violet);
  width: 12px;
  flex-shrink: 0;
}
.ai-soap-v {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ── BENTO TOOLS ──────────────────────── */
.ai-bento-section {
  padding: 100px 0;
  background: var(--ai-bg);
}
.ai-bento-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ai-bento-header p {
  font-size: 0.92rem;
  color: var(--ai-text2);
  line-height: 1.7;
  max-width: 380px;
  margin: 0;
}
.ai-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.ai-bcard {
  border-radius: 24px;
  padding: 38px 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ai-bcard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ai-bcard:hover {
  transform: translateY(-4px);
}
.ai-bcard:hover::before {
  opacity: 1;
}
.ai-bcard-scribe {
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #0e1729 0%, #130e2a 100%);
  border: 1px solid rgba(124, 111, 255, 0.2);
}
.ai-bcard-scribe::before {
  background: linear-gradient(
    135deg,
    rgba(124, 111, 255, 0.4),
    rgba(0, 210, 255, 0.2),
    transparent 60%
  );
}
.ai-bcard-scribe:hover {
  box-shadow:
    0 24px 60px rgba(109, 95, 253, 0.25),
    0 0 0 1px rgba(124, 111, 255, 0.35);
}
.ai-bcard-desk {
  background: linear-gradient(145deg, #081a15 0%, #061612 100%);
  border: 1px solid rgba(0, 229, 160, 0.15);
}
.ai-bcard-desk::before {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.3), transparent 60%);
}
.ai-bcard-desk:hover {
  box-shadow:
    0 24px 60px rgba(0, 229, 160, 0.15),
    0 0 0 1px rgba(0, 229, 160, 0.25);
}
.ai-bcard-outreach {
  background: linear-gradient(145deg, #080f1e 0%, #0b1526 100%);
  border: 1px solid rgba(0, 210, 255, 0.15);
}
.ai-bcard-outreach::before {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.25), transparent 60%);
}
.ai-bcard-outreach:hover {
  box-shadow:
    0 24px 60px rgba(0, 210, 255, 0.12),
    0 0 0 1px rgba(0, 210, 255, 0.25);
}
.ai-bcard-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  bottom: -60px;
  right: -60px;
}
.ai-bcard-scribe .ai-bcard-glow {
  background: #6d5ffd;
}
.ai-bcard-desk .ai-bcard-glow {
  background: #00e5a0;
}
.ai-bcard-outreach .ai-bcard-glow {
  background: #00d2ff;
}
.ai-bcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 22px;
}
.ai-bcard-scribe .ai-bcard-icon {
  background: rgba(124, 111, 255, 0.18);
  color: #a78bfa;
}
.ai-bcard-desk .ai-bcard-icon {
  background: rgba(0, 229, 160, 0.15);
  color: #00e5a0;
}
.ai-bcard-outreach .ai-bcard-icon {
  background: rgba(0, 210, 255, 0.15);
  color: #00d2ff;
}
.ai-bcard-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}
.ai-bcard-scribe .ai-bcard-tag {
  background: rgba(124, 111, 255, 0.18);
  color: #a78bfa;
}
.ai-bcard-desk .ai-bcard-tag {
  background: rgba(0, 229, 160, 0.15);
  color: #00e5a0;
}
.ai-bcard-outreach .ai-bcard-tag {
  background: rgba(0, 210, 255, 0.15);
  color: #00d2ff;
}
.ai-bcard h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--ai-text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.ai-bcard-scribe h3 {
  font-size: 1.65rem;
}
.ai-bcard-desk h3,
.ai-bcard-outreach h3 {
  font-size: 1.2rem;
}
.ai-bcard p {
  font-size: 0.87rem;
  color: var(--ai-text2);
  line-height: 1.7;
  margin-bottom: 0;
}
.ai-bcard-feat {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ai-bcard-feat li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--ai-text2);
  font-weight: 500;
}
.ai-bcard-feat li i {
  font-size: 11px;
  color: #a78bfa;
}
.ai-bcard-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.ai-bcard-desk .ai-bcard-link {
  color: #00e5a0;
}
.ai-bcard-outreach .ai-bcard-link {
  color: #00d2ff;
}
.ai-bcard-link:hover {
  gap: 12px;
}
.ai-bcard-desk .ai-bcard-link:hover {
  color: #00e5a0;
}
.ai-bcard-outreach .ai-bcard-link:hover {
  color: #00d2ff;
}
.ai-bcard-soap {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 28px;
}
.ai-bcard-soap-head {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ai-bcard-soap-head span:first-child {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  color: var(--ai-text3);
  letter-spacing: 1.5px;
}
.ai-bcard-soap-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ai-green);
}
.ai-bcard-soap-status::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--ai-green);
  border-radius: 50%;
}
.ai-bcard-soap-rows {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ai-bcard-soap-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 7px;
}
.ai-bcard-soap-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ai-bcard-soap-k {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  color: #a78bfa;
  width: 12px;
  flex-shrink: 0;
}
.ai-bcard-soap-v {
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.ai-bcard-schedule {
  background: rgba(0, 229, 160, 0.05);
  border: 1px solid rgba(0, 229, 160, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ai-sched-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.73rem;
}
.ai-sched-row strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.ai-sched-row span {
  color: rgba(0, 229, 160, 0.8);
  font-size: 0.68rem;
  font-weight: 600;
}
.ai-bcard-timeline {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ai-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  position: relative;
}
.ai-tl-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 28px;
  width: 1px;
  height: calc(100% - 10px);
  background: rgba(0, 210, 255, 0.2);
}
.ai-tl-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #00d2ff;
  flex-shrink: 0;
  z-index: 1;
}
.ai-tl-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1px;
}
.ai-tl-text span {
  font-size: 0.68rem;
  color: var(--ai-text3);
}

/* ── STATS STRIP ────────────────────────── */
.ai-stats {
  background: var(--ai-s1);
  border-top: 1px solid var(--ai-border);
  border-bottom: 1px solid var(--ai-border);
  padding: 72px 0;
}
.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ai-stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--ai-border);
  position: relative;
}
.ai-stat-item:last-child {
  border-right: none;
}
.ai-stat-num {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--ai-violet), var(--ai-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.ai-stat-label {
  font-size: 0.85rem;
  color: var(--ai-text2);
  font-weight: 500;
  line-height: 1.4;
}
.ai-stat-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--ai-text3);
  margin-top: 4px;
  font-family: "Space Mono", monospace;
}

/* ── TRANSFORMATION ─────────────────────── */
.ai-transform {
  background: #f1f5f9;
  padding: 100px 0;
}
.ai-transform-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.ai-transform-header p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 360px;
  margin: 0;
}
.ai-transform-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ai-tx-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.ai-tx-before {
  background: #fff;
  padding: 32px 36px;
  border-top: 3px solid #fecaca;
  position: relative;
}
.ai-tx-before::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.03), transparent);
  pointer-events: none;
}
.ai-tx-after {
  background: #fff;
  padding: 32px 36px;
  border-top: 3px solid #6ee7b7;
  position: relative;
}
.ai-tx-after::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), transparent);
  pointer-events: none;
}
.ai-tx-arrow {
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 16px;
}
.ai-tx-topic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.ai-tx-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.ai-tx-before .ai-tx-badge {
  color: #ef4444;
}
.ai-tx-after .ai-tx-badge {
  color: #10b981;
}
.ai-tx-row h4 {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ai-tx-row p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ── SPECIALTIES ────────────────────────── */
.ai-specs {
  background: var(--ai-bg);
  padding: 100px 0;
}
.ai-specs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.ai-specs-header p {
  font-size: 0.9rem;
  color: var(--ai-text2);
  line-height: 1.7;
  max-width: 340px;
  margin: 0;
}
.ai-specs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ai-spec-card {
  background: var(--ai-s1);
  border: 1px solid var(--ai-border);
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  cursor: default;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.ai-spec-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, var(--ai-violet), var(--ai-cyan));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.ai-spec-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(109, 95, 253, 0.2);
}
.ai-spec-card:hover::before {
  opacity: 1;
}
.ai-spec-card:hover .ai-spec-icon {
  background: rgba(124, 111, 255, 0.25);
}
.ai-spec-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
  transition: background 0.25s ease;
}
.ai-spec-icon.c-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}
.ai-spec-icon.c-teal {
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
}
.ai-spec-icon.c-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
}
.ai-spec-icon.c-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
}
.ai-spec-icon.c-rose {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
}
.ai-spec-icon.c-indigo {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}
.ai-spec-card h6 {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ai-text2);
  line-height: 1.4;
  margin: 0;
  transition: color 0.25s ease;
}
.ai-spec-card:hover h6 {
  color: var(--ai-text);
}

/* ── SECURITY ───────────────────────────── */
.ai-security {
  background: var(--ai-s1);
  border-top: 1px solid var(--ai-border);
  padding: 90px 0;
}
.ai-security-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ai-text);
  text-align: center;
  margin-bottom: 10px;
}
.ai-security-sub {
  font-size: 0.9rem;
  color: var(--ai-text2);
  text-align: center;
  margin-bottom: 48px;
}
.ai-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.ai-badge {
  padding: 20px 32px;
  background: rgba(124, 111, 255, 0.07);
  border: 1px solid rgba(124, 111, 255, 0.2);
  border-radius: 18px;
  text-align: center;
  min-width: 120px;
  transition: all 0.25s ease;
}
.ai-badge:hover {
  background: rgba(124, 111, 255, 0.14);
  border-color: rgba(124, 111, 255, 0.4);
  transform: translateY(-2px);
}
.ai-badge strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #a78bfa;
  margin-bottom: 5px;
}
.ai-badge span {
  font-size: 0.68rem;
  color: var(--ai-text3);
  font-family: "Space Mono", monospace;
}
.ai-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ai-trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ai-border);
  border-radius: 14px;
  transition: border-color 0.25s ease;
}
.ai-trust-item:hover {
  border-color: rgba(124, 111, 255, 0.3);
}
.ai-trust-item i {
  font-size: 16px;
  color: var(--ai-violet);
  flex-shrink: 0;
}
.ai-trust-item span {
  font-size: 0.82rem;
  color: var(--ai-text2);
  font-weight: 500;
  line-height: 1.4;
}

/* ── CTA ────────────────────────────────── */
.ai-cta {
  background: #fff;
  padding: 90px 0;
}
.ai-cta-inner {
  background: linear-gradient(140deg, #070d1c 0%, #1a0f3a 45%, #061624 100%);
  border-radius: 32px;
  padding: 88px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ai-cta-inner::before {
  content: "AI";
  position: absolute;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 28rem;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -20px;
}
.ai-cta-inner::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(109, 95, 253, 0.22) 0%,
    transparent 70%
  );
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.ai-cta-inner h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ai-text);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.ai-cta-inner p {
  font-size: 1rem;
  color: var(--ai-text2);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.ai-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── AI SUITE RESPONSIVE ─────────────────── */
@media (max-width: 991.98px) {
  .ai-bento {
    grid-template-columns: 1fr;
  }
  .ai-bcard-scribe {
    grid-row: auto;
  }
  .ai-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-stat-item:nth-child(2) {
    border-right: none;
  }
  .ai-specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ai-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .ai-hero {
    padding: 100px 0 60px;
  }
  .ai-tx-row {
    grid-template-columns: 1fr;
  }
  .ai-tx-arrow {
    display: none;
  }
  .ai-tx-before {
    border-top: 3px solid #fecaca;
    border-bottom: 2px solid #f1f5f9;
  }
  .ai-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-trust-grid {
    grid-template-columns: 1fr;
  }
  .ai-cta-inner {
    padding: 52px 24px;
  }
  .ai-cta-inner::before {
    font-size: 14rem;
  }
  .ai-bento-header,
  .ai-transform-header,
  .ai-specs-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ai-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── AI SCRIBE CARD — BOTTOM CHART ─────── */
.ai-scribe-chart {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 20px;
}
.ai-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ai-chart-label {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.ai-chart-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #00e5a0;
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.2);
  padding: 2px 9px;
  border-radius: 20px;
}
.ai-chart-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.ai-chart-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-chart-cat {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.38);
  width: 70px;
  flex-shrink: 0;
  font-weight: 500;
}
.ai-chart-bar-wrap {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
}
.ai-chart-bar {
  height: 100%;
  border-radius: 4px;
}
.ai-bar-before {
  background: rgba(255, 107, 107, 0.45);
}
.ai-bar-after {
  background: linear-gradient(90deg, #7c6fff, #00d2ff);
}
.ai-chart-val {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  width: 34px;
  text-align: right;
  flex-shrink: 0;
}
.ai-chart-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.ai-chart-foot-label {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.5px;
  line-height: 1.5;
}
.ai-chart-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
  flex-shrink: 0;
}
.ai-spark {
  width: 7px;
  border-radius: 2px 2px 0 0;
  background: rgba(124, 111, 255, 0.3);
}
.ai-spark-active {
  background: #7c6fff;
  box-shadow: 0 0 6px rgba(124, 111, 255, 0.6);
}

/* ── AI SCRIBE CARD — LIVE CONSULTATION ── */
.ai-consult-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(124, 111, 255, 0.18);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 12px;
}
.ai-consult-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ai-consult-label {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.ai-consult-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  color: #a78bfa;
  letter-spacing: 0.5px;
}
.ai-consult-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  animation: ai-ping 1.6s ease-in-out infinite;
}
.ai-consult-patient {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.ai-consult-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d5ffd, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.ai-consult-info {
  flex: 1;
  min-width: 0;
}
.ai-consult-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}
.ai-consult-info span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.32);
  font-family: "Space Mono", monospace;
}
/* Animated sound wave */
.ai-consult-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
  flex-shrink: 0;
}
.ai-consult-wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #7c6fff;
  animation: ai-wave-bar 0.9s ease-in-out infinite;
}
.ai-consult-wave span:nth-child(1) {
  animation-delay: 0s;
  height: 5px;
}
.ai-consult-wave span:nth-child(2) {
  animation-delay: 0.15s;
  height: 12px;
}
.ai-consult-wave span:nth-child(3) {
  animation-delay: 0.3s;
  height: 18px;
}
.ai-consult-wave span:nth-child(4) {
  animation-delay: 0.15s;
  height: 12px;
}
.ai-consult-wave span:nth-child(5) {
  animation-delay: 0s;
  height: 5px;
}
@keyframes ai-wave-bar {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
.ai-consult-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.ai-consult-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(167, 139, 250, 0.9);
  background: rgba(124, 111, 255, 0.12);
  border: 1px solid rgba(124, 111, 255, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
}
.ai-consult-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Space Mono", monospace;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 11px;
}
.ai-consult-status i {
  color: #7c6fff;
  font-size: 11px;
}

/* ================================================================
   HERO SLIDER  (index.html)
================================================================ */

/* ── SLIDE BACKGROUNDS (reused by thumbs + nav previews) ── */
.hs-bg-1 {
  background-image: url("../images/slides/slide-01.jpg");
  background-size: cover;
  background-position: center;
}
.hs-bg-2 {
  background-image: url("../images/slides/slide-02.jpg");
  background-size: cover;
  background-position: center;
}
.hs-bg-3 {
  background-image: url("../images/slides/slide-03.jpg");
  background-size: cover;
  background-position: center;
}

/* ── SLIDER SHELL ── */
.hs {
  position: relative;
  overflow: hidden;
}
.hs-slides {
  position: relative;
  height: 100vh;
  min-height: 640px;
}

/* ── SLIDES ── */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.hs-slide.active {
  opacity: 1;
  z-index: 1;
}
.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Left-to-transparent overlay so right side shows the bg */
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.6) 36%,
    rgba(0, 0, 0, 0.2) 58%,
    rgba(0, 0, 0, 0) 72%
  );
  z-index: 1;
}
.hs-overlay-brand {
  background: linear-gradient(
    100deg,
    rgba(8, 47, 122, 0.9) 0%,
    rgba(13, 71, 161, 0.82) 32%,
    rgba(0, 105, 92, 0.55) 56%,
    rgba(0, 137, 123, 0.18) 74%,
    rgba(0, 137, 123, 0) 88%
  );
}
.hs-overlay-violet {
  background: linear-gradient(
    100deg,
    rgba(10, 8, 40, 0.92) 0%,
    rgba(30, 27, 75, 0.85) 32%,
    rgba(76, 29, 149, 0.55) 56%,
    rgba(109, 40, 217, 0.2) 74%,
    rgba(109, 40, 217, 0) 88%
  );
}
.hs-overlay-teal {
  background: linear-gradient(
    100deg,
    rgba(0, 41, 35, 0.92) 0%,
    rgba(0, 77, 64, 0.84) 32%,
    rgba(0, 137, 123, 0.55) 56%,
    rgba(38, 166, 154, 0.2) 74%,
    rgba(38, 166, 154, 0) 88%
  );
}

/* ── CONTENT ── */
.hs-container {
  position: relative;
  z-index: 3;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 130px;
}
.hs-content {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease 0.35s,
    transform 0.6s ease 0.35s;
}
.hs-slide.active .hs-content {
  opacity: 1;
  transform: translateY(0);
}
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hs-badge.hs-badge-violet {
  background: rgba(124, 111, 255, 0.18);
  border-color: rgba(124, 111, 255, 0.3);
}
.hs-badge.hs-badge-teal {
  background: rgba(0, 229, 160, 0.13);
  border-color: rgba(0, 229, 160, 0.28);
}

.hs-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hs-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 28px;
}
.hs-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.hs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
  backdrop-filter: blur(8px);
}
.hs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.hs-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hs-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.hs-trust-row span i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* Gradient text utilities for slides */
.hs-grad-violet {
  background: linear-gradient(130deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-grad-teal {
  background: linear-gradient(130deg, #34d399, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── DECORATIVE ART (right half, z-index 2 = above bg, below overlay edge) ── */
.hs-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Slide 1 — concentric circles + float cards */
.hs-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hsc-1 {
  width: 440px;
  height: 440px;
}
.hsc-2 {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
}
.hsc-3 {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.09);
}

.hs-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 14px 20px;
  backdrop-filter: blur(14px);
  top: 50%;
  left: 50%;
}
.hs-float-card {
  transform: translate(-60%, -120%);
}
.hs-float-card-2 {
  transform: translate(-30%, 30%);
}
.hs-float-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(67, 160, 71, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #81c784;
}
.hs-fi-blue {
  background: rgba(21, 101, 192, 0.25);
  color: #90caf9;
}
.hs-float-num {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hs-float-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* Slide 2 — AI nodes */
.hs-node {
  position: absolute;
  border-radius: 50%;
  background: rgba(124, 111, 255, 0.18);
  border: 1px solid rgba(124, 111, 255, 0.4);
  box-shadow: 0 0 20px rgba(124, 111, 255, 0.25);
  animation: hs-node-pulse 3s ease-in-out infinite;
}
.hn-1 {
  width: 90px;
  height: 90px;
  top: 22%;
  right: 28%;
  animation-delay: 0s;
}
.hn-2 {
  width: 55px;
  height: 55px;
  top: 42%;
  right: 12%;
  animation-delay: 0.6s;
}
.hn-3 {
  width: 110px;
  height: 110px;
  top: 55%;
  right: 32%;
  animation-delay: 1.2s;
}
.hn-4 {
  width: 42px;
  height: 42px;
  top: 28%;
  right: 8%;
  animation-delay: 0.3s;
}
.hn-5 {
  width: 65px;
  height: 65px;
  top: 68%;
  right: 18%;
  animation-delay: 0.9s;
}
@keyframes hs-node-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}
.hs-node-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 111, 255, 0.5), transparent);
  transform-origin: left center;
}
.hl-1 {
  width: 120px;
  top: 31%;
  right: 20%;
  transform: rotate(-25deg);
}
.hl-2 {
  width: 90px;
  top: 52%;
  right: 22%;
  transform: rotate(15deg);
}
.hl-3 {
  width: 100px;
  top: 44%;
  right: 10%;
  transform: rotate(-40deg);
}

.hs-ai-badge {
  position: absolute;
  top: 30%;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 111, 255, 0.15);
  border: 1px solid rgba(124, 111, 255, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 700;
  color: #c4b5fd;
}
.hs-ai-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  animation: ai-ping 1.6s ease-in-out infinite;
}

/* Slide 3 — bar chart art */
.hs-bars-art {
  position: absolute;
  bottom: 0;
  right: 40px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 70%;
}
.hs-bar-col {
  width: 30px;
  border-radius: 5px 5px 0 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: height 0.6s ease;
}
.hs-bar-peak {
  background: rgba(255, 255, 255, 0.32);
}
.hs-growth-badge {
  position: absolute;
  top: 25%;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 160, 0.15);
  border: 1px solid rgba(0, 229, 160, 0.3);
  border-radius: 50px;
  padding: 10px 20px;
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 700;
  color: #6ee7b7;
}
.hs-growth-badge i {
  font-size: 14px;
  color: #34d399;
}

/* ── CONTROLS BAR ── */
.hs-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
}
.hs-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Center thumbnails + dots */
.hs-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hs-thumbs-row {
  display: flex;
  gap: 10px;
}
.hs-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.48;
  transition: opacity 0.22s ease;
}
.hs-thumb.active {
  opacity: 1;
}
.hs-thumb:hover {
  opacity: 0.8;
}
.hs-thumb-bg {
  width: 96px;
  height: 54px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.22s ease;
}
.hs-thumb.active .hs-thumb-bg {
  border-color: rgba(255, 255, 255, 0.65);
}
.hs-thumb-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

/* Dots */
.hs-dots-row {
  display: flex;
  gap: 7px;
  align-items: center;
}
.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.hs-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* Prev / Next nav buttons */
.hs-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hs-nav-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.hs-nav-btn:hover .hs-nav-circle {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.hs-nav-preview {
  width: 78px;
  height: 44px;
  border-radius: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.hs-nav-preview span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  padding: 2px 5px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .hs-art {
    width: 50%;
    opacity: 0.55;
  }
  .hs-float-card,
  .hs-float-card-2 {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hs-slides,
  .hs-container {
    height: auto;
    min-height: 100svh;
  }
  .hs-overlay {
    background: rgba(0, 0, 0, 0.65);
  }
  .hs-overlay-brand {
    background: linear-gradient(
      160deg,
      rgba(8, 47, 122, 0.85) 0%,
      rgba(0, 105, 92, 0.7) 100%
    );
  }
  .hs-overlay-violet {
    background: linear-gradient(
      160deg,
      rgba(10, 8, 40, 0.88) 0%,
      rgba(76, 29, 149, 0.72) 100%
    );
  }
  .hs-overlay-teal {
    background: linear-gradient(
      160deg,
      rgba(0, 41, 35, 0.88) 0%,
      rgba(0, 137, 123, 0.72) 100%
    );
  }
  .hs-art {
    display: none;
  }
  .hs-title {
    font-size: 1.9rem;
  }
  .hs-container {
    padding-top: 100px;
    padding-bottom: 160px;
  }
  .hs-thumb-bg {
    width: 70px;
    height: 40px;
  }
  .hs-thumb-lbl {
    display: none;
  }
  .hs-nav-preview {
    display: none;
  }
}

/* ============================================================
   Page: security.html
   ============================================================ */

body[data-page="security"] .btn-outline-primary-custom {
  color: var(--primary);
  border-color: var(--border);
}

/* ── Deployment ── */
body[data-page="security"] .sec-deploy-section {
  padding: 90px 0;
}
body[data-page="security"] .sec-deploy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
body[data-page="security"] .sec-deploy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}
body[data-page="security"] .sec-deploy-card:hover {
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.1);
  transform: translateY(-4px);
}
body[data-page="security"] .sec-deploy-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 20px;
}
body[data-page="security"] .sec-deploy-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}
body[data-page="security"] .sec-deploy-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
body[data-page="security"] .sec-deploy-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Connected Services (dark) ── */
body[data-page="security"] .sec-connected-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #060c18, #050a14);
}
body[data-page="security"] .sec-connected-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2dd4bf;
  margin-bottom: 16px;
}
body[data-page="security"] .sec-connected-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  color: #fff;
  margin-bottom: 16px;
}
body[data-page="security"] .sec-connected-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
body[data-page="security"] .sec-connected-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
body[data-page="security"] .sec-connected-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
body[data-page="security"] .sec-connected-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(45, 212, 191, 0.12);
  color: #2dd4bf;
  font-size: 18px;
  margin-bottom: 18px;
}
body[data-page="security"] .sec-connected-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}
body[data-page="security"] .sec-connected-card-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
body[data-page="security"] .sec-connected-card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ── Product Controls ── */
body[data-page="security"] .sec-controls-section {
  padding: 90px 0;
}
body[data-page="security"] .sec-controls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
body[data-page="security"] .sec-controls-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
body[data-page="security"] .sec-controls-card:hover {
  box-shadow: 0 16px 40px rgba(0, 137, 123, 0.1);
  transform: translateY(-4px);
}
body[data-page="security"] .sec-controls-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(0, 137, 123, 0.08);
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 18px;
}
body[data-page="security"] .sec-controls-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
body[data-page="security"] .sec-controls-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ── Closing CTA ── */
body[data-page="security"] .section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
body[data-page="security"] .cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.12);
}
body[data-page="security"] .cta-box h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
body[data-page="security"] .cta-box p {
  color: #666;
  max-width: 480px;
  margin: 0 auto 28px;
}
body[data-page="security"] .btn-cta {
  background: var(--primary);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
body[data-page="security"] .btn-cta:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
  color: #fff;
}

@media (max-width: 991.98px) {
  body[data-page="security"] .sec-connected-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="security"] .sec-controls-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  body[data-page="security"] .sec-deploy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  body[data-page="security"] .sec-controls-grid {
    grid-template-columns: 1fr;
  }
}
