:root {
  --bg-primary: #0c1528;
  --bg-secondary: #111d35;
  --bg-tertiary: #1a2a4a;
  --bg-card: rgba(26, 42, 74, 0.5);
  --bg-glass: rgba(26, 42, 74, 0.35);
  --text-primary: #ffffff;
  --text-secondary: #a0b4cc;
  --text-muted: #6b83a0;
  --accent-blue: #3559D0;
  --accent-cyan: #00B8AE;
  --accent-green: #ED7D3A;
  --accent-aurora: #00B8AE;
  --gradient-primary: linear-gradient(135deg, #3559D0, #00B8AE);
  --gradient-aurora: linear-gradient(135deg, #00B8AE, #ED7D3A);
  --gradient-glow: linear-gradient(135deg, rgba(53, 89, 208, 0.25), rgba(0, 184, 174, 0.25));
  --border-subtle: rgba(0, 184, 174, 0.12);
  --border-accent: rgba(53, 89, 208, 0.4);
  --shadow-glow: 0 0 40px rgba(53, 89, 208, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ED7D3A, #3559D0);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(12, 21, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, #ED7D3A, #e8652a);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(237, 125, 58, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 120px;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-logo-large {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-logo-large img {
  max-width: 700px;
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #ED7D3A;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(237, 125, 58, 0.6);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ED7D3A, #e8652a);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(237, 125, 58, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(237, 125, 58, 0.5);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-accent);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  animation: float 3s ease-in-out infinite;
}

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

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

section {
  padding: 80px 0;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.6s ease;
}

section.section-focused > .container {
  transform: scale(1.015);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.cta-section.section-focused > .container {
  transform: scale(1);
}

section > .container {
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transform: scale(1);
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.4;
}

section:last-of-type::after {
  display: none;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 184, 174, 0.12);
  border: 1px solid rgba(0, 184, 174, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #00B8AE;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.problems {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.domino-chain {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.domino {
  display: flex;
  gap: 24px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.domino.visible {
  opacity: 1;
  transform: translateX(0);
}

.domino-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.domino-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.domino.visible .domino-number {
  border-color: #ED7D3A;
  color: #ED7D3A;
}

.domino[data-step="5"].visible .domino-number {
  background: #ED7D3A;
  border-color: #ED7D3A;
  color: white;
  box-shadow: 0 0 20px rgba(237, 125, 58, 0.4);
}

.domino-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(237, 125, 58, 0.4), rgba(237, 125, 58, 0.1));
  margin-top: 4px;
}

.domino-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  flex: 1;
}

.domino-content:hover {
  border-color: rgba(237, 125, 58, 0.3);
  transform: translateX(4px);
}

.domino-severity {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.sev-1 { background: #f0c040; }
.sev-2 { background: #e8943a; }
.sev-3 { background: #e06830; }
.sev-4 { background: #d44025; }
.sev-5 { background: #c0201a; }

.domino-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.domino-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}

.domino-impact {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ED7D3A;
  letter-spacing: 0.3px;
}

.domino-final {
  border-color: rgba(192, 32, 26, 0.3);
  background: linear-gradient(135deg, var(--bg-card), rgba(192, 32, 26, 0.05));
}

.domino-final h3 {
  color: #e05040;
}

.domino-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.domino-cta p {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.services {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 184, 174, 0.08);
  line-height: 1;
  pointer-events: none;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--accent-cyan);
}

.service-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-line {
  transform: scaleX(1);
}

.process {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-green));
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-marker {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-cyan);
  position: relative;
  z-index: 1;
}

.step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  animation: stepPulse 2s ease-out infinite;
  opacity: 0;
}

.process-step.visible .step-pulse {
  animation: stepPulse 2s ease-out infinite;
}

@keyframes stepPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.step-content {
  padding-top: 16px;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.step-marker-final .step-number {
  background: linear-gradient(135deg, #ED7D3A, #00B8AE);
  color: white;
  font-size: 20px;
  box-shadow: 0 0 25px rgba(237, 125, 58, 0.4);
}

.step-content-final {
  background: var(--bg-card);
  border: 1px solid rgba(0, 184, 174, 0.25);
  border-radius: 14px;
  padding: 28px;
}

.step-content-final h3 {
  color: #00B8AE;
}

.process-step-final {
  margin-bottom: 0;
}

.results {
  background: var(--bg-primary);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-base);
}

.result-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.result-metric {
  margin-bottom: 16px;
}

.metric-value {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-suffix {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.result-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.result-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.results-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(0, 184, 174, 0.3);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3559D0, #00B8AE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

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

.technology {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.platform-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.platform-hub {
  position: relative;
  width: 320px;
  height: 320px;
}

.platform-hub-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  z-index: 2;
  box-shadow: 0 0 50px rgba(53, 89, 208, 0.4);
  color: var(--text-primary);
}

.platform-spokes .platform-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}

.platform-spoke span {
  display: block;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: absolute;
  transform: translate(-50%, -50%);
}

.platform-spoke:nth-child(1) span { top: -130px; left: 0; }
.platform-spoke:nth-child(2) span { top: -65px; left: 120px; }
.platform-spoke:nth-child(3) span { top: 65px; left: 120px; }
.platform-spoke:nth-child(4) span { top: 130px; left: 0; }
.platform-spoke:nth-child(5) span { top: 65px; left: -120px; }
.platform-spoke:nth-child(6) span { top: -65px; left: -120px; }

.platform-spoke span::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan));
  top: 50%;
}

.platform-spoke:nth-child(1) span::before,
.platform-spoke:nth-child(4) span::before { display: none; }

.platform-spoke:nth-child(2) span::before,
.platform-spoke:nth-child(3) span::before {
  right: 100%;
}

.platform-spoke:nth-child(5) span::before,
.platform-spoke:nth-child(6) span::before {
  left: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

.platform-spoke span:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 184, 174, 0.2);
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.platform-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.platform-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: 12px;
  color: var(--accent-cyan);
}

.platform-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.platform-feature p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-studies {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.case-swap-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
  background: rgba(16, 29, 53, 0.6);
  padding: 5px;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.case-swap-type {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  user-select: none;
}

.case-swap-type:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.case-swap-type.active {
  color: #ffffff;
  background: #ED7D3A;
  box-shadow: 0 4px 20px rgba(237, 125, 58, 0.35);
}

.case-panel {
  display: none;
}

.case-panel.active {
  display: block;
  animation: caseReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes caseReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.case-hero-metric {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.case-metric-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 184, 174, 0.2);
  border-radius: 20px;
  padding: 32px 48px;
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.case-metric-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.case-metric-shift {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.metric-before {
  font-size: 32px;
  font-weight: 700;
  color: rgba(239, 68, 68, 0.7);
}

.metric-after {
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-arrow {
  color: var(--accent-cyan);
  opacity: 0.6;
  flex-shrink: 0;
}

.case-metric-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.case-metric-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-panel.active .case-metric-fill {
  width: var(--fill-width, 0%);
}

.case-transformation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 40px;
}

.transformation-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.transformation-card:hover {
  transform: translateY(-4px);
}

.transformation-card.pain {
  border-color: rgba(239, 68, 68, 0.15);
}

.transformation-card.pain:hover {
  border-color: rgba(239, 68, 68, 0.35);
}

.transformation-card.gain {
  border-color: rgba(0, 184, 174, 0.15);
}

.transformation-card.gain:hover {
  border-color: rgba(0, 184, 174, 0.35);
}

.transformation-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.transformation-card.pain .transformation-icon {
  background: rgba(239, 68, 68, 0.1);
  color: rgba(239, 68, 68, 0.7);
}

.transformation-card.gain .transformation-icon {
  background: rgba(0, 184, 174, 0.1);
  color: #00B8AE;
}

.transformation-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.transformation-card.pain h4 {
  color: rgba(239, 68, 68, 0.8);
}

.transformation-card.gain h4 {
  color: #00B8AE;
}

.transformation-card ul {
  list-style: none;
}

.transformation-card li {
  padding: 7px 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.transformation-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.transformation-card.pain li::before {
  background: rgba(239, 68, 68, 0.5);
}

.transformation-card.gain li::before {
  background: rgba(0, 184, 174, 0.6);
}

.transformation-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 0;
}

.bridge-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(239, 68, 68, 0.2), rgba(0, 184, 174, 0.3));
  min-height: 30px;
}

.bridge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-aurora);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 20px rgba(237, 125, 58, 0.3);
  flex-shrink: 0;
}

.case-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 140px;
}

.pipeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 184, 174, 0.4);
  position: relative;
}

.pipeline-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 184, 174, 0.2);
}

.pipeline-step span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.3px;
}

.pipeline-connector {
  height: 2px;
  flex: 1;
  max-width: 60px;
  background: linear-gradient(90deg, var(--accent-cyan), rgba(0, 184, 174, 0.2));
  margin-bottom: 28px;
}

.about {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-tag {
  margin-bottom: 16px;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-lead {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-values {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.value-icon {
  color: var(--accent-cyan);
}

.about-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.compass-visual {
  position: relative;
  width: 300px;
  height: 300px;
  cursor: grab;
}

.compass-visual:hover {
  cursor: grab;
}

.compass-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
  transition: border-color 0.4s ease;
}

.compass-ring::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid var(--accent-cyan);
  transition: border-bottom-color 0.4s ease;
}

.compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 120px;
  background: linear-gradient(to bottom, var(--accent-cyan) 50%, var(--text-muted) 50%);
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 2px;
  transition: background 0.4s ease;
}

.compass-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  z-index: 1;
  transition: all 0.4s ease;
}

.compass-visual.found-north .compass-ring {
  border-color: #ED7D3A;
  box-shadow: 0 0 30px rgba(237, 125, 58, 0.3), inset 0 0 30px rgba(237, 125, 58, 0.1);
}

.compass-visual.found-north .compass-ring::before {
  border-bottom-color: #ED7D3A;
}

.compass-visual.found-north .compass-needle {
  background: linear-gradient(to bottom, #ED7D3A 50%, var(--text-muted) 50%);
}

.compass-visual.found-north .compass-center {
  background: linear-gradient(135deg, #ED7D3A, #e8652a);
  box-shadow: 0 0 25px rgba(237, 125, 58, 0.5);
}

.compass-easter-egg {
  text-align: center;
  margin-top: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.compass-easter-egg.visible {
  opacity: 1;
}

.status-headline {
  font-size: 20px;
  font-weight: 700;
  color: #ED7D3A;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(237, 125, 58, 0.4);
  white-space: nowrap;
}

.status-subtext {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.easter-egg-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ED7D3A;
  animation: particleBurst 1s ease-out forwards;
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--px), var(--py)) scale(0);
  }
}

.cta-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 120px 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.cta-booking-embed {
  max-width: 700px;
  margin: 0 auto;
  min-height: 600px;
}

.cta-booking-embed iframe {
  min-height: 600px;
}

.footer {
  background: var(--bg-secondary);
  padding: 64px 0 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

chat-widget,
[data-chat-widget],
iframe[src*="leadconnector"],
iframe[src*="chat-widget"],
iframe[src*="msgsndr"] {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  pointer-events: none !important;
}

body.show-chat chat-widget,
body.show-chat [data-chat-widget],
body.show-chat iframe[src*="leadconnector"],
body.show-chat iframe[src*="chat-widget"],
body.show-chat iframe[src*="msgsndr"] {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ED7D3A, #e8652a);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(237, 125, 58, 0.4);
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(237, 125, 58, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 32px;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  color: var(--accent-cyan);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  color: #ffffff;
  background: var(--accent-cyan);
  box-shadow: 0 6px 20px rgba(0, 184, 174, 0.3);
}

.back-to-top svg {
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    left: 20px;
    right: auto;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .platform-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .platform-hub {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-subtle);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-value {
    font-size: 24px;
  }
  
  .domino-chain {
    max-width: 100%;
  }
  
  .case-transformation {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .transformation-bridge {
    flex-direction: row;
    padding: 16px 0;
  }
  
  .bridge-line {
    height: 2px;
    width: 100%;
    min-height: auto;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), rgba(0, 184, 174, 0.3));
  }
  
  .case-pipeline {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  
  .pipeline-step {
    max-width: 100px;
  }
  
  .pipeline-connector {
    max-width: 20px;
    margin-bottom: 28px;
  }

  .case-metric-card {
    padding: 24px 20px;
  }

  .metric-before {
    font-size: 24px;
  }

  .metric-after {
    font-size: 32px;
  }

  .case-swap-type {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-text .section-title {
    text-align: center;
  }
  
  .about-text .section-tag {
    display: block;
    text-align: center;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-values {
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: none;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
  }
  
  .floating-cta span {
    display: none;
  }
  
  .platform-visual {
    display: none;
  }
  
  .results-testimonials {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .timeline-line {
    display: none;
  }
  
  .step-marker {
    width: 60px;
    height: 60px;
  }

  .step-number, .step-pulse {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 80px 0;
  }
  
  .hero {
    padding: 100px 16px 60px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .hero-canvas {
    display: none;
  }
  
  .domino,
  .process-step {
    opacity: 1;
    transform: none;
  }
}
