/* ===== SyntaxOrbit theme: deep space cyan/teal ===== */
:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --so-bg-0: #030712;
  --so-bg-mid: #0c1929;
  --so-bg-2: #083344;
  --so-bg-gradient: linear-gradient(145deg, #030712 0%, #0c1929 42%, #0a3a44 78%, #041016 100%);
  --so-accent: #22d3ee;
  --so-accent-bright: #67e8f9;
  --so-accent-deep: #0891b2;
  --so-accent-2: #2dd4bf;
  --so-text: #e0f2fe;
  --so-text-muted: #94b8c9;
  --so-text-soft: #7dd3fc;
  --so-glass: rgba(8, 18, 32, 0.62);
  --so-glass-thin: rgba(8, 18, 32, 0.42);
  --so-border: rgba(103, 232, 249, 0.16);
  --so-shadow: rgba(0, 8, 16, 0.55);
  --so-inset-highlight: rgba(165, 243, 252, 0.06);
  --so-header: rgba(2, 8, 16, 0.82);
  --so-footer-text: #7dd3fc;
  --so-focus-ring: rgba(34, 211, 238, 0.18);
  --so-cta-gradient: linear-gradient(135deg, #0891b2, #0e7490 40%, #0f766e);
  --so-cta-shadow: rgba(8, 145, 178, 0.35);
}

html[data-theme="light"] {
  color-scheme: light;
  /* Cool mist steel — intentionally not white */
  --so-bg-0: #7d9aab;
  --so-bg-mid: #6f93a8;
  --so-bg-2: #4a7388;
  --so-bg-gradient: linear-gradient(145deg, #8eacbc 0%, #6f93a8 40%, #4f7d92 72%, #3a6478 100%);
  --so-accent: #0e7490;
  --so-accent-bright: #155e75;
  --so-accent-deep: #0f766e;
  --so-accent-2: #0d9488;
  --so-text: #061018;
  --so-text-muted: #1a3340;
  --so-text-soft: #0c4a6e;
  --so-glass: rgba(95, 130, 150, 0.48);
  --so-glass-thin: rgba(110, 145, 165, 0.38);
  --so-border: rgba(12, 74, 110, 0.22);
  --so-shadow: rgba(30, 55, 70, 0.28);
  --so-inset-highlight: rgba(255, 255, 255, 0.12);
  --so-header: rgba(74, 115, 136, 0.78);
  --so-footer-text: #0c4a6e;
  --so-focus-ring: rgba(14, 116, 144, 0.22);
  --so-cta-gradient: linear-gradient(135deg, #0e7490, #0f766e);
  --so-cta-shadow: rgba(14, 116, 144, 0.32);
}

/* Shell surfaces */
.so-header,
.so-footer {
  background: var(--so-header) !important;
  color: var(--so-text);
  backdrop-filter: blur(12px);
}

.so-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.so-footer {
  color: var(--so-footer-text) !important;
}

.so-top-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}

.so-nav-link {
  color: var(--so-text) !important;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.so-nav-link:hover {
  color: var(--so-accent-bright) !important;
}

.so-nav-link--pill {
  background: linear-gradient(90deg, rgba(8, 145, 178, 0.28), rgba(45, 212, 191, 0.22)) !important;
  border: 1px solid var(--so-border) !important;
  box-shadow: 0 8px 20px var(--so-cta-shadow) !important;
}

.so-nav-link--pill:hover {
  background: linear-gradient(90deg, rgba(8, 145, 178, 0.45), rgba(45, 212, 191, 0.35)) !important;
}

.so-cta {
  background: var(--so-cta-gradient) !important;
  color: #f0fdfa !important;
  box-shadow: 0 10px 24px var(--so-cta-shadow) !important;
}

html[data-theme="light"] .so-cta {
  color: #ecfeff !important;
}

/* Theme toggle: System / Light / Dark */
.so-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--so-border);
  background: var(--so-glass-thin);
  backdrop-filter: blur(10px);
}

.so-theme-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--so-text-muted);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  box-shadow: none;
  transform: none;
}

.so-theme-toggle button:hover {
  color: var(--so-accent-bright);
  background: rgba(34, 211, 238, 0.12);
  transform: none;
  box-shadow: none;
}

.so-theme-toggle button.is-active {
  color: var(--so-text);
  background: rgba(34, 211, 238, 0.22);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.25);
}

html[data-theme="light"] .so-theme-toggle button.is-active {
  background: rgba(14, 116, 144, 0.22);
  box-shadow: 0 0 0 1px rgba(14, 116, 144, 0.28);
}

.so-theme-toggle button:focus-visible {
  outline: 2px solid var(--so-accent);
  outline-offset: 2px;
}

/* Light-mode readability for common Tailwind dark utilities */
html[data-theme="light"] body {
  color: var(--so-text);
}

html[data-theme="light"] .text-white {
  color: var(--so-text) !important;
}

html[data-theme="light"] .text-gray-300,
html[data-theme="light"] .text-gray-400 {
  color: var(--so-text-muted) !important;
}

html[data-theme="light"] .bg-black,
html[data-theme="light"] .bg-gray-900,
html[data-theme="light"] .bg-gray-800 {
  background-color: rgba(74, 115, 136, 0.55) !important;
}

html[data-theme="light"] .bg-white\/5,
html[data-theme="light"] .bg-white\/10 {
  background-color: rgba(60, 95, 115, 0.18) !important;
}

html[data-theme="light"] .border-white\/10,
html[data-theme="light"] .border-white\/20,
html[data-theme="light"] .border-gray-700,
html[data-theme="light"] .border-gray-800 {
  border-color: rgba(12, 74, 110, 0.28) !important;
}

html[data-theme="light"] .from-gray-900,
html[data-theme="light"] .via-cyan-900,
html[data-theme="light"] .to-black,
html[data-theme="light"] .from-blue-900 {
  --tw-gradient-from: #8eacbc !important;
  --tw-gradient-to: #3a6478 !important;
  --tw-gradient-stops: var(--tw-gradient-from), #6f93a8, var(--tw-gradient-to) !important;
}

html[data-theme="light"] .text-cyan-100,
html[data-theme="light"] .text-cyan-200,
html[data-theme="light"] .text-cyan-300,
html[data-theme="light"] .text-cyan-400,
html[data-theme="light"] .text-teal-300,
html[data-theme="light"] .text-teal-400,
html[data-theme="light"] .text-sky-400 {
  color: var(--so-accent-bright) !important;
}

html[data-theme="light"] .border-cyan-300,
html[data-theme="light"] .border-cyan-400,
html[data-theme="light"] .border-cyan-500 {
  border-color: rgba(14, 116, 144, 0.55) !important;
}

.so-gradient-text {
  background-image: linear-gradient(90deg, var(--so-accent), var(--so-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Solid light CTAs — keep dark ink in both themes (parent .text-white must not win) */
.so-btn-light {
  background: #f0fdfa !important;
  color: #082f3a !important;
  -webkit-text-fill-color: #082f3a !important;
  border: 1px solid transparent;
}

.so-btn-light:hover {
  background: #ccfbf1 !important;
  color: #082f3a !important;
  -webkit-text-fill-color: #082f3a !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(8, 47, 58, 0.2);
}

html[data-theme="light"] input,
html[data-theme="light"] textarea,
html[data-theme="light"] select {
  color: var(--so-text);
  border-color: rgba(12, 74, 110, 0.28);
  background-color: rgba(90, 125, 145, 0.45);
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: rgba(26, 51, 64, 0.65);
}

html[data-theme="light"] .pricing-page {
  color: var(--so-text);
}

/* Modern CSS reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overscroll-behavior: none;
}

html {
  background: var(--so-bg-gradient) !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overscroll-behavior: none !important;
  /* Prefer clip so sticky header / scroll listeners are not broken by a nested scrollport */
  overflow-x: clip !important;
  color-scheme: dark;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  background: transparent !important;
  overscroll-behavior: none !important;
  overflow-x: clip !important;
  position: relative !important;
}



/* Form styling */
input, textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--so-accent);
  box-shadow: 0 0 0 3px var(--so-focus-ring);
}

/* Button hover effects */
button, .btn {
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Link hover effects */
a {
  transition: color 0.3s ease;
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(125, 211, 252, 0.3);
  border-radius: 50%;
  border-top-color: var(--so-accent);
  animation: spin 1s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--so-accent) 55%, transparent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--so-accent) 75%, transparent);
}

/* Prevent overscroll bounce on mobile */
* {
  overscroll-behavior: none !important;
}

/* Ensure no white background shows during overscroll */
html, body {
  min-height: 100vh !important;
  background: var(--so-bg-gradient) !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* Add pseudo-element to body for extra background coverage */
body::before {
  content: '';
  position: fixed;
  top: -100vh;
  left: 0;
  right: 0;
  bottom: -100vh;
  background: var(--so-bg-gradient);
  z-index: -1;
  pointer-events: none;
}

/* Prevent pull-to-refresh and overscroll effects */
body {
  touch-action: pan-y !important;
  -webkit-overflow-scrolling: touch !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}



/* Shared glass surfaces */
.glass-panel {
  position: relative;
  background: var(--so-glass);
  border-radius: 28px;
  border: 1px solid var(--so-border);
  box-shadow: 0 30px 60px var(--so-shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.25), transparent 45%),
    radial-gradient(circle at bottom right, rgba(8, 145, 178, 0.18), transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.glass-panel > * {
  position: relative;
  z-index: 1;
}

.glass-panel-thin {
  background: var(--so-glass-thin);
  border-radius: 24px;
  border: 1px solid var(--so-border);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px var(--so-inset-highlight);
}

.gradient-border {
  border: 1px solid transparent;
  background-image: linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.85)),
    linear-gradient(120deg, rgba(34, 211, 238, 0.5), rgba(14, 165, 233, 0.5), rgba(45, 212, 191, 0.4));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.info-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.85rem;
}

.info-line i {
  color: var(--so-accent-bright);
}

/* Services page styling */
.services-hero {
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.65;
  z-index: 0;
}

.hero-glow--one {
  top: -6rem;
  right: -4rem;
  background: rgba(34, 211, 238, 0.6);
}

.hero-glow--two {
  bottom: -7rem;
  left: -5rem;
  background: rgba(56, 189, 248, 0.5);
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.4), transparent 65%),
    radial-gradient(circle at bottom right, rgba(8, 145, 178, 0.35), transparent 60%);
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.9);
}

.hero-kicker__dot {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.9);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

.hero-primary {
  display: grid;
  gap: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}

.stat-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(12px);
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.7);
}

.hero-dashboard {
  display: grid;
  gap: 1.1rem;
}

.dashboard-card {
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  padding: 1.25rem;
  backdrop-filter: blur(14px);
  display: grid;
  gap: 0.6rem;
}

.dashboard-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.8);
}

.dashboard-card svg {
  width: 100%;
  max-height: 150px;
}

.dashboard-card--line polyline {
  fill: none;
  stroke: rgba(34, 211, 238, 0.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-card--line circle {
  fill: #111827;
  stroke: rgba(34, 211, 238, 0.95);
  stroke-width: 3;
}

.dashboard-tag {
  font-weight: 600;
  color: #f8fafc;
}

.dashboard-card--stacked .stacked-track {
  position: relative;
}

.dashboard-card--stacked .stacked-track span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.9), rgba(129, 140, 248, 0.9));
}

.dashboard-card--stacked .stacked-row {
  grid-template-columns: 70px minmax(0, 1fr) 60px;
}

.dashboard-card--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.dashboard-card--grid > div {
  display: grid;
  gap: 0.4rem;
}

.dashboard-stat {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f8fafc;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hero-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero-subcopy, .hero-subtext {
  color: rgba(226, 232, 240, 0.75);
  max-width: 32rem;
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.85);
}

.badge-dot {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.9);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

.hero-metric-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}

.metric-chip {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(12px);
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

.metric-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.7);
}

.infographic-track {
  display: grid;
  gap: 0.75rem;
}

.infographic-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.infographic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(129, 140, 248, 0.2);
  color: #c4b5fd;
}

.infographic-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
}

.infographic-caption {
  font-size: 0.72rem;
  color: rgba(125, 211, 252, 0.7);
}

.hero-insight-stack {
  display: grid;
  gap: 1rem;
}

.insight-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  padding: 1.25rem;
  backdrop-filter: blur(14px);
  display: grid;
  gap: 0.75rem;
}

.insight-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.8);
}

.insight-card__header span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f8fafc;
}

.insight-chart--line {
  width: 100%;
  max-height: 150px;
}

.insight-chart--line polyline {
  fill: none;
  stroke: rgba(34, 211, 238, 0.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insight-chart--line circle {
  fill: #111827;
  stroke: rgba(34, 211, 238, 0.95);
  stroke-width: 3;
}

.insight-card--dual {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.insight-gauge {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.insight-gauge svg {
  width: 110px;
  height: 110px;
}

.gauge-track {
  fill: none;
  stroke: rgba(148, 163, 184, 0.2);
  stroke-width: 12;
}

.gauge-fill {
  fill: none;
  stroke: rgba(56, 189, 248, 0.9);
  stroke-width: 12;
  stroke-linecap: round;
}

.insight-gauge text {
  fill: #f8fafc;
  font-size: 1.4rem;
  font-weight: 600;
  text-anchor: middle;
}

.gauge-caption {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.75);
}

.insight-bars {
  display: grid;
  gap: 0.6rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(203, 213, 225, 0.8);
}

.bar-track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(129, 140, 248, 0.9), rgba(56, 189, 248, 0.85));
}

.bars-caption {
  font-size: 0.68rem;
  color: rgba(148, 191, 255, 0.7);
}

.insight-footnote {
  font-size: 0.7rem;
  color: rgba(125, 211, 252, 0.7);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-primary {
  background: linear-gradient(90deg, #8b5cf6, #2563eb);
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.45);
  color: #ffffff;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(8, 145, 178, 0.55);
}

.cta-secondary {
  border: 1px solid rgba(226, 232, 240, 0.3);
  background: rgba(15, 23, 42, 0.4);
  color: rgba(226, 232, 240, 0.85);
}

.cta-secondary:hover {
  transform: translateY(-3px);
  background: rgba(226, 232, 240, 0.1);
}

.trust-strip {
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(12px);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.trust-value {
  font-size: 1.25rem;
  font-weight: 600;
}

.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.7);
}

.service-card {
  position: relative;
  margin: 0 auto;
}

.service-body {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.18);
  color: #bae6fd;
  font-weight: 700;
  letter-spacing: 0.12em;
}

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


.service-module {
  display: grid;
  gap: 1.5rem;
  padding: 1.8rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(16px);
  min-width: 0;
  overflow: hidden;
}

.service-module header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(34, 211, 238, 0.18);
  color: #c4b5fd;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-module h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f8fafc;
}

.service-module p {
  margin: 0;
}

.module-body {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.module-pane {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.module-pane h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.7);
}

.signal {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.signal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(129, 140, 248, 0.18);
  color: #c4b5fd;
}

.signal-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f8fafc;
}

.signal-copy {
  font-size: 0.72rem;
  color: rgba(125, 211, 252, 0.7);
}

.module-infographic {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.14);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.module-infographic h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.7);
}

.stacked-chart--compact .stacked-row {
  grid-template-columns: minmax(0, 4.5rem) minmax(0, 1fr) auto;
}

.stacked-note {
  font-weight: 600;
  color: #f8fafc;
}

.module-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.module-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}

.module-metrics .metric-value {
  font-size: 1.1rem;
}

.module-metrics .metric-label {
  font-size: 0.68rem;
}

.module-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sections-intro {
  display: grid;
  gap: 0.9rem;
  text-align: center;
}

.sections-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.9);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.sections-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #f8fafc;
}

.sections-subtext {
  max-width: 48rem;
  margin: 0 auto;
  color: rgba(203, 213, 225, 0.78);
}

.services-strip {
  position: relative;
}

.services-strip__inner {
  padding: 2.4rem;
  display: grid;
  gap: 1.5rem;
}

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

.strip-item {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.14);
  text-align: center;
}

.strip-item i {
  font-size: 1.4rem;
  color: rgba(103, 232, 249, 0.85);
}

.strip-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
}

.strip-item p {
  font-size: 0.78rem;
  color: rgba(203, 213, 225, 0.75);
}

.strip-cta {
  justify-self: center;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.9);
}

.service-stack {
  display: grid;
  gap: 0.8rem;
}

.service-stack h3 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.7);
}

.icon-point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.icon-point i {
  margin-top: 0.15rem;
  color: rgba(103, 232, 249, 0.85);
}

.icon-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f8fafc;
}

.icon-caption {
  font-size: 0.72rem;
  color: rgba(125, 211, 252, 0.7);
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link:hover {
  color: #e0e7ff;
}

.service-visual {
  display: grid;
  gap: 1rem;
}

.service-infographic {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(12px);
}

.service-infographic h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f8fafc;
}

.service-infographic p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.7);
}


.stacked-chart {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  width: 100%;
}

.stacked-row {
  display: grid;
  grid-template-columns: minmax(0, 5.5rem) minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(203, 213, 225, 0.85);
  min-width: 0;
}

.stacked-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(125, 211, 252, 0.75);
}

.stacked-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.stacked-fill {
  position: absolute;
  top: 0;
  bottom: 0;
}

.stacked-fill--auto {
  left: 0;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.9), rgba(129, 140, 248, 0.9));
}

.stacked-fill--manual {
  right: 0;
  background: rgba(45, 212, 191, 0.7);
}

.stacked-percent {
  font-weight: 600;
  color: #f8fafc;
}

.timeline-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0.75rem, 1.75rem) minmax(0, 1fr) minmax(0.75rem, 1.75rem) minmax(0, 1fr);
  align-items: start;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
}

.timeline-step {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
  min-width: 0;
}

.timeline-step--active .timeline-dot {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.25);
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.8);
}

.timeline-connector {
  height: 2px;
  width: 100%;
  min-width: 0;
  margin-top: 6px;
  align-self: start;
  background: linear-gradient(90deg, rgba(129, 140, 248, 0.6), rgba(56, 189, 248, 0.6));
}

.timeline-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #f8fafc;
  overflow-wrap: anywhere;
}

.timeline-caption {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.7);
  overflow-wrap: anywhere;
}

.spark-area {
  width: 100%;
  max-height: 160px;
}

.spark-area__fill {
  fill: rgba(129, 140, 248, 0.22);
}

.spark-area__line {
  fill: none;
  stroke: rgba(129, 140, 248, 0.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spark-area__line--target {
  stroke: rgba(56, 189, 248, 0.8);
  stroke-dasharray: 6 6;
  stroke-width: 3;
}

.spark-area circle {
  fill: #111827;
  stroke: rgba(129, 140, 248, 0.95);
  stroke-width: 3;
}

.heatmap-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.heatmap-mini span {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease;
}

.heatmap-mini span:hover {
  transform: translateY(-3px);
}

.heatmap-mini span[data-score="1"] { background: rgba(56, 189, 248, 0.85); }
.heatmap-mini span[data-score="0.9"] { background: rgba(56, 189, 248, 0.75); }
.heatmap-mini span[data-score="0.85"] { background: rgba(96, 165, 250, 0.7); }
.heatmap-mini span[data-score="0.8"] { background: rgba(96, 165, 250, 0.65); }
.heatmap-mini span[data-score="0.72"] { background: rgba(129, 140, 248, 0.65); }
.heatmap-mini span[data-score="0.66"] { background: rgba(129, 140, 248, 0.55); }
.heatmap-mini span[data-score="0.6"] { background: rgba(139, 92, 246, 0.5); }
.heatmap-mini span[data-score="0.5"] { background: rgba(139, 92, 246, 0.45); }
.heatmap-mini span[data-score="0.42"] { background: rgba(34, 211, 238, 0.38); }
.heatmap-mini span[data-score="0.3"] { background: rgba(34, 211, 238, 0.3); }
.heatmap-mini span[data-score="0.25"] { background: rgba(103, 232, 249, 0.28); }
.heatmap-mini span[data-score="0.18"] { background: rgba(203, 213, 225, 0.2); }

.spark-line {
  width: 100%;
  max-height: 140px;
}

.spark-line polyline {
  fill: none;
  stroke: rgba(139, 92, 246, 0.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spark-line circle {
  fill: #111827;
  stroke: rgba(139, 92, 246, 0.95);
  stroke-width: 3;
}

.roadmap-mini {
  display: grid;
  gap: 0.75rem;
}

.roadmap-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(203, 213, 225, 0.85);
}

.roadmap-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(125, 211, 252, 0.75);
}

.roadmap-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  overflow: hidden;
}

.roadmap-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.9), rgba(129, 140, 248, 0.9));
  border-radius: inherit;
}

.roadmap-note {
  color: rgba(224, 231, 255, 0.85);
  font-weight: 600;
}

.service-infographic--slim {
  padding: 1rem 1.1rem;
}

.service-infographic--heat {
  padding-bottom: 1.5rem;
}

.infographic-canvas {
  width: 100%;
  height: 170px;
}

.infographic-canvas--short {
  height: 140px;
}

.infographic-canvas--heat {
  height: 200px;
}

.service-metric-trio {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.metric-tile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.metric-tile strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f8fafc;
}

.metric-tile span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.7);
}

.service-accordions {
  display: grid;
  gap: 1rem;
}

.glass-accordion {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  color: rgba(226, 232, 240, 0.9);
}

.glass-accordion summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.glass-accordion summary::-webkit-details-marker {
  display: none;
}

.glass-accordion summary::after {
  content: '+';
  font-weight: 700;
  font-size: 1rem;
  color: rgba(103, 232, 249, 0.9);
}

.glass-accordion[open] summary::after {
  content: '−';
}

.accordion-body {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.85);
}

.pricing-deck {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.pricing-deck::-webkit-scrollbar {
  height: 6px;
}

.pricing-deck::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.4);
  border-radius: 999px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.45);
}

.pricing-card.highlight {
  background: rgba(8, 145, 178, 0.6);
  border-color: rgba(129, 140, 248, 0.55);
  box-shadow: 0 22px 44px rgba(8, 145, 178, 0.45);
}

.pricing-tier {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.78);
}

.pricing-amount {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fef3c7;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.85);
}

.pricing-card ul li::before {
  content: '•';
  color: rgba(103, 232, 249, 0.9);
  margin-right: 0.6rem;
}

.pricing-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224, 231, 255, 0.95);
}

.pricing-cta::after {
  content: '→';
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .service-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-insight-stack,
  .hero-dashboard {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-deck {
    grid-auto-columns: minmax(240px, 1fr);
  }

  .infographic-track {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hero-metric-band,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .module-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .module-metrics {
    width: 100%;
  }
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.35);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(129, 140, 248, 0);
  }
}

@keyframes growBar {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes riseArea {
  from {
    opacity: 0;
    transform: scaleY(0.8);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes sweepArc {
  to {
    stroke-dashoffset: 78;
  }
}

@keyframes sweepMini {
  to {
    stroke-dashoffset: 30;
  }
}

@keyframes heatmapGlow {
  from {
    filter: drop-shadow(0 0 8px rgba(129, 140, 248, 0.15));
  }
  to {
    filter: drop-shadow(0 0 16px rgba(129, 140, 248, 0.45));
  }
}

@keyframes spinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.75;
  }
}

@media (max-width: 768px) {
  .pricing-deck {
    grid-auto-columns: minmax(240px, 1fr);
  }

  .chart-ring {
    margin: 0 auto;
  }

  .timeline-track {
    flex-direction: column;
    gap: 1.25rem;
  }

  .timeline-track::before {
    top: 1.5rem;
    bottom: 1.5rem;
    left: 0.7rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.2), rgba(103, 232, 249, 0.6), rgba(125, 211, 252, 0.2));
  }
}

/* Additional mobile fixes */
@supports (-webkit-touch-callout: none) {
  html, body {
    background: var(--so-bg-gradient) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

/* Connect Hub Overlay Styles */
#connect-hub {
  z-index: 9999;
}

#hub-panel {
  background: rgba(10, 10, 15, 0.95); /* Deep dark background */
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar for the Hub */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.3);
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 211, 238, 0.5);
}

/* —— Pricing page —— */
.pricing-page {
  color: #fff;
}

.pricing-hero .hero-title {
  max-width: 18ch;
}

.pricing-currency-bar {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.pricing-currency-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.9);
  white-space: nowrap;
}

.pricing-currency-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1;
}

.currency-chip {
  appearance: none;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.45);
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.currency-chip:hover {
  color: #fff;
  transform: translateY(-1px);
}

.currency-chip.is-active {
  color: #fff;
}

.currency-chip[data-currency="USD"]:hover,
.currency-chip[data-currency="USD"].is-active {
  background: linear-gradient(135deg, #059669, #0d9488);
  border-color: rgba(110, 231, 183, 0.55);
  box-shadow: 0 8px 18px rgba(5, 150, 105, 0.35);
}

.currency-chip[data-currency="EUR"]:hover,
.currency-chip[data-currency="EUR"].is-active {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-color: rgba(147, 197, 253, 0.55);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.currency-chip[data-currency="GBP"]:hover,
.currency-chip[data-currency="GBP"].is-active {
  background: linear-gradient(135deg, #9f1239, #be123c);
  border-color: rgba(253, 164, 175, 0.5);
  box-shadow: 0 8px 18px rgba(190, 18, 60, 0.35);
}

.currency-chip[data-currency="CAD"]:hover,
.currency-chip[data-currency="CAD"].is-active {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  border-color: rgba(252, 165, 165, 0.5);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.35);
}

.currency-chip[data-currency="AUD"]:hover,
.currency-chip[data-currency="AUD"].is-active {
  background: linear-gradient(135deg, #0f766e, #0891b2);
  border-color: rgba(153, 246, 228, 0.5);
  box-shadow: 0 8px 18px rgba(8, 145, 178, 0.35);
}

.currency-chip[data-currency="INR"]:hover,
.currency-chip[data-currency="INR"].is-active {
  background: linear-gradient(135deg, #c2410c, #ea580c);
  border-color: rgba(253, 186, 116, 0.55);
  box-shadow: 0 8px 18px rgba(234, 88, 12, 0.35);
}

.currency-chip[data-currency="TTD"]:hover,
.currency-chip[data-currency="TTD"].is-active {
  background: linear-gradient(135deg, #991b1b, #111827);
  border-color: rgba(252, 165, 165, 0.45);
  box-shadow: 0 8px 18px rgba(153, 27, 27, 0.4);
}

.currency-chip[data-currency="XCD"]:hover,
.currency-chip[data-currency="XCD"].is-active {
  background: linear-gradient(135deg, #166534, #15803d);
  border-color: rgba(134, 239, 172, 0.5);
  box-shadow: 0 8px 18px rgba(22, 101, 52, 0.35);
}

.currency-chip[data-currency="JMD"]:hover,
.currency-chip[data-currency="JMD"].is-active {
  background: linear-gradient(135deg, #15803d, #ca8a04);
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 8px 18px rgba(21, 128, 61, 0.35);
}

.currency-chip[data-currency="BBD"]:hover,
.currency-chip[data-currency="BBD"].is-active {
  background: linear-gradient(135deg, #1e3a8a, #0369a1);
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow: 0 8px 18px rgba(3, 105, 161, 0.35);
}

.pricing-currency-meta {
  width: 100%;
  margin: 0;
  font-size: 0.75rem;
  color: rgba(165, 243, 252, 0.75);
}

.pricing-rate-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  align-items: end;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.pricing-rate-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.8);
  margin-bottom: 0.25rem;
}

.pricing-amount--inline {
  font-size: 1.35rem;
}

.pricing-rate-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(165, 243, 252, 0.65);
}

.pricing-service-block {
  display: grid;
  gap: 1.25rem;
}

.pricing-service-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-service-head h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.pricing-service-head p {
  margin: 0;
  color: rgba(226, 232, 240, 0.72);
  max-width: 42rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-page .pricing-card {
  position: relative;
  min-height: 100%;
}

.pricing-period {
  margin: -0.35rem 0 0.25rem;
  font-size: 0.8rem;
  color: rgba(165, 243, 252, 0.7);
}

.pricing-popular {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(254, 243, 199, 0.95);
  color: #312e81;
}

.pricing-cta-btn {
  margin-top: auto;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(224, 231, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.pricing-cta-btn:hover {
  transform: translateY(-1px);
}

.pricing-cta-btn--lg {
  margin-top: 0;
  padding: 0.85rem 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* Quote — solid cyan/teal */
.pricing-cta-btn--quote {
  background: linear-gradient(135deg, #06b6d4, #0d9488);
  border-color: transparent;
  color: #ecfeff;
  box-shadow: 0 10px 24px rgba(8, 145, 178, 0.35);
}

.pricing-cta-btn--quote:hover {
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  box-shadow: 0 14px 28px rgba(8, 145, 178, 0.45);
}

/* Demo — sky outline */
.pricing-cta-btn--demo {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(56, 189, 248, 0.55);
  color: #e0f2fe;
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.12);
}

.pricing-cta-btn--demo:hover {
  background: rgba(14, 165, 233, 0.22);
  border-color: rgba(125, 211, 252, 0.75);
  color: #fff;
}

/* Scope — indigo/violet solid */
.pricing-cta-btn--scope {
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  border-color: transparent;
  color: #eef2ff;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
}

.pricing-cta-btn--scope:hover {
  background: linear-gradient(135deg, #818cf8, #8b5cf6);
  box-shadow: 0 14px 28px rgba(99, 102, 241, 0.45);
}

/* Retainer — warm amber soft fill */
.pricing-cta-btn--retainer {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(217, 119, 6, 0.18));
  border-color: rgba(251, 191, 36, 0.55);
  color: #fef3c7;
  box-shadow: inset 0 0 0 1px rgba(253, 230, 138, 0.1);
}

.pricing-cta-btn--retainer:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), rgba(217, 119, 6, 0.28));
  border-color: rgba(252, 211, 77, 0.75);
  color: #fffbeb;
}

.pricing-cta-btn--primary {
  background: var(--so-cta-gradient);
  border-color: transparent;
  box-shadow: 0 12px 28px var(--so-cta-shadow);
  color: #ecfeff;
}

.pricing-cta-btn--primary:hover {
  background: linear-gradient(135deg, var(--so-accent-bright), var(--so-accent-2));
  filter: brightness(1.05);
}

.pricing-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-compare-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.75);
  margin-bottom: 0.35rem;
}

.pricing-compare-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.9);
}

.pricing-compare-value span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(165, 243, 252, 0.75);
  margin-left: 0.15rem;
}

.pricing-compare-value--accent {
  color: #fef3c7;
}

.pricing-faq {
  display: grid;
  gap: 0.75rem;
}

.pricing-faq-item {
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 0.15rem 1.1rem;
}

.pricing-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
  color: #fff;
}

.pricing-faq-item summary::-webkit-details-marker {
  display: none;
}

.pricing-faq-item summary::after {
  content: '+';
  float: right;
  color: rgba(165, 243, 252, 0.85);
  font-weight: 400;
}

.pricing-faq-item[open] summary::after {
  content: '−';
}

.pricing-faq-item p {
  margin: 0 0 1rem;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 48rem;
}

@media (max-width: 900px) {
  .pricing-grid,
  .pricing-rate-strip,
  .pricing-compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-currency-bar {
    padding: 0.9rem 1rem;
  }

  .pricing-hero .hero-title {
    max-width: none;
  }
}

/* Return to top */
.so-back-to-top {
  position: fixed !important;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 120;
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--so-border);
  border-radius: 999px;
  background: var(--so-cta-gradient) !important;
  color: #f0fdfa !important;
  box-shadow: 0 10px 24px var(--so-cta-shadow) !important;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.6rem);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, box-shadow 0.2s ease;
}

.so-back-to-top.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0);
}

.so-back-to-top.is-visible:hover {
  box-shadow: 0 14px 28px var(--so-cta-shadow) !important;
  transform: translateY(-2px);
}

.so-back-to-top:focus-visible {
  outline: 2px solid var(--so-accent);
  outline-offset: 3px;
}

.so-back-to-top__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

html[data-theme="light"] .so-back-to-top {
  color: #ecfeff;
}

@media (max-width: 640px) {
  .so-back-to-top {
    padding: 0.75rem;
    width: 2.75rem;
    height: 2.75rem;
    justify-content: center;
  }

  .so-back-to-top__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .so-back-to-top {
    transition: opacity 0.01ms, visibility 0.01ms;
    transform: none;
  }

  .so-back-to-top.is-visible,
  .so-back-to-top.is-visible:hover {
    transform: none;
  }
}
