:root {
  --bg-primary: #171717;
  --bg-secondary: #1e1e1e;
  --bg-tertiary: #2a2a2a;
  --bg-card: rgba(42, 42, 42, 0.5);
  --bg-glass: rgba(42, 42, 42, 0.35);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --accent-blue: #3A6631;
  --accent-cyan: #89C045;
  --accent-green: #89C045;
  --accent-aurora: #89C045;
  --gradient-primary: linear-gradient(135deg, #3A6631, #89C045);
  --gradient-aurora: linear-gradient(135deg, #89C045, #3A6631);
  --gradient-glow: linear-gradient(135deg, rgba(58, 102, 49, 0.25), rgba(137, 192, 69, 0.25));
  --border-subtle: rgba(137, 192, 69, 0.12);
  --border-accent: rgba(58, 102, 49, 0.4);
  --shadow-glow: 0 0 40px rgba(58, 102, 49, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Instrument Serif', Georgia, 'Times New Roman', 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, #89C045, #3A6631);
  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(23, 23, 23, 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-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  white-space: nowrap;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-item {
  display: block;
  padding: 10px 18px;
  color: #89C045;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.nav-dropdown-item:hover {
  background: rgba(137, 192, 69, 0.1);
}

.nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, #89C045, #6fa035);
  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(137, 192, 69, 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: 80px 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: 56px;
  position: relative;
}

.hero-logo-large img {
  max-width: 400px;
  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: #89C045;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(137, 192, 69, 0.6);
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -0.5px;
  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, #89C045, #6fa035);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(137, 192, 69, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(137, 192, 69, 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: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid rgba(137, 192, 69, 0.3);
}

.stat:last-child {
  border-right: none;
  padding-right: 0;
}

.stat:first-child {
  padding-left: 0;
}

.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: 400px;
  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: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  color: #89C045;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.heading-accent {
  font-style: italic;
  color: #89C045;
}

.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: #89C045;
  color: #89C045;
}

.domino[data-step="5"].visible .domino-number {
  background: #89C045;
  border-color: #89C045;
  color: white;
  box-shadow: 0 0 20px rgba(137, 192, 69, 0.4);
}

.domino-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(137, 192, 69, 0.4), rgba(137, 192, 69, 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(137, 192, 69, 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-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  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: #89C045;
  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::after,
.process::after,
.results::after {
  display: none;
}

.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(137, 192, 69, 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-family: var(--font-heading);
  font-size: 26px;
  font-weight: normal;
  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, #89C045, #89C045);
  color: white;
  font-size: 20px;
  box-shadow: 0 0 25px rgba(137, 192, 69, 0.4);
}

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

.step-content-final h3 {
  color: #89C045;
}

.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-family: var(--font-heading);
  font-size: 22px;
  font-weight: normal;
  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(137, 192, 69, 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, #3A6631, #89C045);
  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(58, 102, 49, 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(137, 192, 69, 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-family: var(--font-heading);
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 6px;
  color: var(--text-primary);
}

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

.pricing {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.pricing > .container > .section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(137, 192, 69, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pricing > .container > .section-header {
  position: relative;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: color 0.3s;
}

.pricing-toggle-label.active {
  color: var(--text-primary);
}

.pricing-toggle-switch {
  width: 52px;
  height: 28px;
  border-radius: 14px;
  border: 1.5px solid rgba(137, 192, 69, 0.4);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  padding: 0;
}

.pricing-toggle-switch.annual {
  background: rgba(137, 192, 69, 0.2);
}

.pricing-toggle-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #89C045;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: none;
  box-shadow: 0 2px 8px rgba(137, 192, 69, 0.3);
}

.pricing-toggle-switch.annual .pricing-toggle-knob {
  left: 27px;
}

.pricing-save-badge {
  font-size: 12px;
  font-weight: 600;
  color: #0a0a0a;
  background: #89C045;
  padding: 3px 10px;
  border-radius: 20px;
}

.pricing-save-badge.hidden {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  border-radius: 20px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 32px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.highlighted {
  background: linear-gradient(165deg, #151a12 0%, #0f1210 50%, #0a0a0a 100%);
  border: 1.5px solid rgba(137, 192, 69, 0.35);
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(137, 192, 69, 0.08), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.highlighted:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #89C045, #3A6631);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(137, 192, 69, 0.3);
}

.pricing-tier-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 4px;
}

.pricing-tier-name.highlighted {
  color: #89C045;
}

.pricing-tier-tagline {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #999;
  font-style: italic;
  margin: 0 0 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.pricing-dollar {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  align-self: flex-start;
  padding-top: 8px;
}

.pricing-amount {
  font-size: 52px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-period {
  font-size: 15px;
  color: #555;
  font-weight: 400;
}

.pricing-billing-note {
  font-size: 13px;
  color: #555;
  margin: 0 0 20px;
}

.pricing-billing-note.annual {
  color: #89C045;
  font-weight: 500;
}

.pricing-description {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-feature .check-icon {
  color: #89C045;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-text {
  font-size: 14px;
  color: #ddd;
  font-weight: 500;
}

.feature-detail {
  font-size: 13px;
  color: #666;
}

.feature-header {
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.5px;
}

.feature-header.highlighted {
  color: #89C045;
}

.pricing-excluded {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.excluded-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0.4;
}

.excluded-item span {
  font-size: 13px;
  color: #555;
  text-decoration: line-through;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.pricing-cta.outline {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #ccc;
}

.pricing-cta.outline:hover {
  border-color: rgba(137, 192, 69, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-cta.filled {
  border: none;
  background: linear-gradient(135deg, #89C045, #3A6631);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(137, 192, 69, 0.25);
}

.pricing-cta.filled:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.pricing-footer-note {
  text-align: center;
  margin-top: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-footer-note p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.pricing-highlight {
  color: #89C045;
  font-weight: 500;
}

.pricing-talk-link {
  color: #ccc;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.pricing-talk-link:hover {
  color: #89C045;
}

.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;
}

.growth-tree {
  position: relative;
  width: 260px;
  height: 400px;
}

.growth-tree-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.growth-stem {
  stroke: rgba(137, 192, 69, 0.5);
  stroke-width: 3;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 0.8s ease;
}

.growth-tree.growing .growth-stem {
  stroke-dashoffset: 0;
}

.growth-branch {
  stroke: rgba(137, 192, 69, 0.5);
  stroke-width: 2.5;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  opacity: 0;
  transition: stroke-dashoffset 0.5s ease, opacity 0.3s ease;
}

.growth-tree.growing .growth-branch {
  opacity: 1;
}

.growth-tree.growing .growth-branch[data-index="0"] { stroke-dashoffset: 0; transition-delay: 0.2s; }
.growth-tree.growing .growth-branch[data-index="1"] { stroke-dashoffset: 0; transition-delay: 0.35s; }
.growth-tree.growing .growth-branch[data-index="2"] { stroke-dashoffset: 0; transition-delay: 0.5s; }
.growth-tree.growing .growth-branch[data-index="3"] { stroke-dashoffset: 0; transition-delay: 0.65s; }
.growth-tree.growing .growth-branch[data-index="4"] { stroke-dashoffset: 0; transition-delay: 0.8s; }
.growth-tree.growing .growth-branch[data-index="5"] { stroke-dashoffset: 0; transition-delay: 0.95s; }

.growth-node {
  position: absolute;
  left: var(--node-x);
  top: var(--node-y);
  transform: translate(-50%, -50%) scale(0);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.95);
  border: 1.5px solid rgba(137, 192, 69, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.growth-tree.growing .growth-node[data-index="0"] { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.4s; }
.growth-tree.growing .growth-node[data-index="1"] { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.55s; }
.growth-tree.growing .growth-node[data-index="2"] { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.7s; }
.growth-tree.growing .growth-node[data-index="3"] { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.85s; }
.growth-tree.growing .growth-node[data-index="4"] { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 1.0s; }
.growth-tree.growing .growth-node[data-index="5"] { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 1.15s; }

.growth-tree.fully-grown .growth-node {
  border-color: rgba(137, 192, 69, 0.6);
  box-shadow: 0 0 8px rgba(137, 192, 69, 0.15);
}

.node-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(137, 192, 69, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.growth-leaf-top {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  z-index: 2;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, filter 0.4s ease;
}

.growth-tree.fully-grown .growth-leaf-top {
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 0 8px rgba(137, 192, 69, 0.35));
  opacity: 1;
}

.leaf-icon {
  width: 100%;
  height: 100%;
}

.growth-pot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 55px;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.pot-svg {
  width: 100%;
  height: 100%;
}

.growth-tree.growing .growth-pot {
  opacity: 1;
}

.growth-branch {
  transform-origin: 130px center;
  transition: stroke-dashoffset 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
}

.growth-tree.wiggle .growth-branch[data-index="0"] { animation: wiggleLeft 1.8s ease-in-out infinite; }
.growth-tree.wiggle .growth-branch[data-index="1"] { animation: wiggleRight 2.0s ease-in-out infinite 0.1s; }
.growth-tree.wiggle .growth-branch[data-index="2"] { animation: wiggleLeft 1.6s ease-in-out infinite 0.2s; }
.growth-tree.wiggle .growth-branch[data-index="3"] { animation: wiggleRight 1.9s ease-in-out infinite 0.15s; }
.growth-tree.wiggle .growth-branch[data-index="4"] { animation: wiggleLeft 1.7s ease-in-out infinite 0.25s; }
.growth-tree.wiggle .growth-branch[data-index="5"] { animation: wiggleRight 2.1s ease-in-out infinite 0.05s; }

@keyframes wiggleLeft {
  0%, 100% { transform: rotate(0deg); }
  40% { transform: rotate(-0.8deg); }
  70% { transform: rotate(0.4deg); }
}

@keyframes wiggleRight {
  0%, 100% { transform: rotate(0deg); }
  40% { transform: rotate(0.8deg); }
  70% { transform: rotate(-0.4deg); }
}

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

.growth-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #89C045;
  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);
  }
}

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

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

.status-headline {
  font-size: 18px;
  font-weight: 700;
  color: #89C045;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(137, 192, 69, 0.4);
  white-space: nowrap;
}


.cta-section {
  background: #171717;
  padding: 120px 0;
}

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

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: normal;
  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: 934px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: #fff;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-green);
  background: rgba(137, 192, 69, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent-green);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 4px;
}

.form-submit-btn:hover {
  background: var(--accent-green-dark);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible {
  display: block;
}

.form-success .success-icon {
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 8px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.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-family: var(--font-heading);
  font-size: 18px;
  font-weight: normal;
  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.4s ease, transform 0.4s 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, #89C045, #6fa035);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(137, 192, 69, 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(137, 192, 69, 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(137, 192, 69, 0.3);
}

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

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

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

  .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) {
  * {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  *::-webkit-scrollbar {
    display: none;
  }

  .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%;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card.highlighted {
    transform: none;
  }

  .pricing-card.highlighted:hover {
    transform: translateY(-4px);
  }
  
  .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;
  }

  .growth-tree {
    width: 220px;
    height: 310px;
  }
  
  .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;
  }
}
