/* Rich gradient body */
body {
  background: linear-gradient(160deg, #0b1a18 0%, #0e2a26 15%, #163d38 35%, #1a4a3e 50%, #163d38 65%, #0e2a26 85%, #0b1a18 100%);
  background-attachment: fixed;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  filter: url(#noise);
  width: 100%;
  height: 100%;
}

#preloader { position: relative; z-index: 9999; }

/* Fullscreen hero — normal flow, scrolls away naturally with parallax fade */
.hero-wrapper {
  position: relative;
  z-index: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
}
.hero-fullscreen {
  position: relative;
  height: 100%;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.25) 100%);
}

/* Hero content that fades + drifts up on scroll (set via JS in scroll handler) */
.hero-parallax {
  will-change: opacity, transform;
}

/* Content wrapper sits right after hero with a subtle rounded "drawer" edge */
.content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.content-wrapper::before {
  content: '';
  display: block;
  height: 40px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(160deg, #0b1a18 0%, #0e2a26 15%, #163d38 35%, #1a4a3e 50%, #163d38 65%, #0e2a26 85%, #0b1a18 100%);
  background-attachment: fixed;
  box-shadow: 0 -16px 48px rgba(11, 26, 24, 0.55);
}
.content-wrapper > section,
.content-wrapper > footer,
.content-wrapper > .section-divider {
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.content-sections-bg {
  background: linear-gradient(160deg, #0b1a18 0%, #0e2a26 15%, #163d38 35%, #1a4a3e 50%, #163d38 65%, #0e2a26 85%, #0b1a18 100%);
  background-attachment: fixed;
}

/* Page wrapper for inner pages (no sticky hero) */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* Fixed nav bar */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.875rem 1.5rem;
  background: rgba(11, 26, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 640px) {
  .nav-fixed { padding: 0.875rem 2.5rem; }
}
@media (min-width: 1024px) {
  .nav-fixed { padding: 0.875rem 4rem; }
}

/* Homepage sticky nav — hidden by default, slides in on scroll */
.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  background: rgba(11, 26, 24, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.nav-sticky.visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .nav-sticky { padding: 0 2.5rem; }
}
@media (min-width: 1024px) {
  .nav-sticky { padding: 0 4rem; }
}
.nav-sticky-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: baseline;
}
.nav-logo-text .dot { color: #4da895; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: rgba(255, 255, 255, 0.9); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3d8b80, #2d6b63);
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-cta:hover { filter: brightness(1.15); }

.gradient-text {
  background: linear-gradient(135deg, #6bbfae 0%, #99d7cb 40%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass card with animated gradient border */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(77, 168, 149, 0.4) 50%, rgba(107, 191, 174, 0.3) 60%, transparent 70%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.glass-card:hover {
  border-color: rgba(77, 168, 149, 0.25);
  box-shadow: 0 8px 40px rgba(61, 139, 128, 0.12);
  transform: translateY(-3px);
}
.glass-card:hover::before {
  opacity: 1;
  animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Brighter glass variant */
.glass-card-bright {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.glass-card-bright::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(77, 168, 149, 0.4) 50%, rgba(107, 191, 174, 0.3) 60%, transparent 70%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.glass-card-bright:hover {
  border-color: rgba(77, 168, 149, 0.25);
  box-shadow: 0 8px 40px rgba(61, 139, 128, 0.12);
  transform: translateY(-3px);
}
.glass-card-bright:hover::before {
  opacity: 1;
  animation: borderGlow 2s linear infinite;
}

/* Glowing card */
.glass-card-glow {
  background: linear-gradient(135deg, rgba(61, 139, 128, 0.12) 0%, rgba(45, 107, 99, 0.06) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(77, 168, 149, 0.30);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(61, 139, 128, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.glass-card-glow:hover {
  border-color: rgba(77, 168, 149, 0.50);
  box-shadow: 0 0 60px rgba(61, 139, 128, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Ambient glow blobs */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(77,168,149,0.12) 50%, rgba(255,255,255,0.06) 70%, transparent 100%);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #3d8b80 0%, #2d6b63 100%);
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4da895 0%, #3d8b80 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(61, 139, 128, 0.3);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.input-glow:focus {
  box-shadow: 0 0 0 2px rgba(61, 139, 128, 0.3);
}

/* Icon box */
.icon-box {
  background: rgba(61, 139, 128, 0.10);
  border: 1px solid rgba(61, 139, 128, 0.15);
  transition: all 0.3s ease;
}
.glass-card:hover .icon-box,
.glass-card-bright:hover .icon-box {
  background: rgba(61, 139, 128, 0.20);
  border-color: rgba(61, 139, 128, 0.30);
  transform: scale(1.1);
}

/* Integration icons hover */
.integration-icon {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.integration-icon:hover {
  transform: translateY(-4px) scale(1.1);
}
.integration-icon:hover svg {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Glass pills hover */
.glass-pill {
  transition: all 0.25s ease;
}
.glass-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(77, 168, 149, 0.3);
  color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-1px);
}

/* Accent bar animate on reveal */
.accent-bar {
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible .accent-bar {
  transform: scaleY(1);
}

/* Gradient shimmer */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gradient-text-shimmer {
  background: linear-gradient(90deg, #6bbfae 0%, #99d7cb 25%, #ffffff 50%, #99d7cb 75%, #6bbfae 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Ambient glow drift */
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -10px) scale(1.05); }
  66% { transform: translate(-10px, 8px) scale(0.97); }
}
.ambient-glow { animation: glowDrift 12s ease-in-out infinite; }

/* Section divider animate */
.section-divider {
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-divider.visible { transform: scaleX(1); }

/* Core animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.35s; opacity: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
.reveal-delay-5 { transition-delay: 0.30s; }
.reveal-delay-6 { transition-delay: 0.36s; }
.reveal-delay-7 { transition-delay: 0.42s; }
.reveal-delay-8 { transition-delay: 0.48s; }

/* Reveal directional */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Reveal scale */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Pipeline flow animation */
.pipeline-card {
  opacity: 0;
  transform: translateX(var(--pipeline-dir, -30px)) scale(0.92);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pipeline-card.dist { --pipeline-dir: 30px; }
.pipeline-active .pipeline-card {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Staggered delays for pipeline cards */
.pipeline-card[data-i="0"] { transition-delay: 0s; }
.pipeline-card[data-i="1"] { transition-delay: 0.07s; }
.pipeline-card[data-i="2"] { transition-delay: 0.14s; }
.pipeline-card[data-i="3"] { transition-delay: 0.21s; }
.pipeline-card.dist[data-i="0"] { transition-delay: 0.7s; }
.pipeline-card.dist[data-i="1"] { transition-delay: 0.77s; }
.pipeline-card.dist[data-i="2"] { transition-delay: 0.84s; }
.pipeline-card.dist[data-i="3"] { transition-delay: 0.91s; }
.pipeline-card.dist[data-i="4"] { transition-delay: 0.98s; }
.pipeline-card.dist[data-i="5"] { transition-delay: 1.05s; }
.pipeline-card.dist[data-i="6"] { transition-delay: 1.12s; }
.pipeline-card.dist[data-i="7"] { transition-delay: 1.19s; }
.pipeline-card.dist[data-i="8"] { transition-delay: 1.26s; }
.pipeline-card.dist[data-i="9"] { transition-delay: 1.33s; }

/* Pipeline arrows — data pulse */
.pipeline-arrow-line {
  position: relative;
  overflow: hidden;
}
.pipeline-arrow-line::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -100%;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(77, 168, 149, 0.9), transparent);
  border-radius: 2px;
  opacity: 0;
}
.pipeline-active .pipeline-arrow-line::after {
  animation: dataPulse 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards,
             dataPulseLoop 2.5s cubic-bezier(0.4, 0, 0.2, 1) 2s infinite;
}
@keyframes dataPulse {
  0% { left: -40%; opacity: 0; }
  10% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes dataPulseLoop {
  0% { left: -40%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { left: 100%; opacity: 0; }
}

/* Pipeline hub — glow on activate */
.pipeline-hub {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.pipeline-active .pipeline-hub {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.35s;
  box-shadow: 0 0 40px rgba(61, 139, 128, 0.35), 0 0 80px rgba(61, 139, 128, 0.15);
}
.pipeline-active .pipeline-hub {
  animation: hubPulse 3s ease-in-out 1.5s infinite;
}
@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(61, 139, 128, 0.25), 0 0 80px rgba(61, 139, 128, 0.1); }
  50% { box-shadow: 0 0 60px rgba(61, 139, 128, 0.45), 0 0 100px rgba(61, 139, 128, 0.2); }
}

/* Pipeline chevron arrows */
.pipeline-chevron {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pipeline-active .pipeline-chevron {
  opacity: 1;
  transition-delay: 0.3s;
  animation: chevronPulse 2.5s ease-in-out 2s infinite;
}
@keyframes chevronPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* CTA glow pulse */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(61, 139, 128, 0.15); }
  50% { box-shadow: 0 0 50px rgba(61, 139, 128, 0.30); }
}
.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0b1a18;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-letter {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0);
  letter-spacing: -0.03em;
  animation: letterIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.preloader-dot {
  color: rgba(77, 168, 149, 0) !important;
  animation: dotIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}
@keyframes dotIn {
  to { color: #4da895; }
}
@keyframes letterIn {
  0% { color: rgba(255,255,255,0); transform: translateY(12px) scale(0.95); filter: blur(6px); }
  100% { color: rgba(255,255,255,0.9); transform: translateY(0) scale(1); filter: blur(0); }
}
.preloader-line {
  width: 0;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, transparent, rgba(77,168,149,0.6), rgba(107,191,174,0.8), rgba(77,168,149,0.6), transparent);
  animation: lineSweep 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
@keyframes lineSweep {
  0% { width: 0; opacity: 0; }
  30% { opacity: 1; }
  100% { width: 120px; opacity: 1; }
}
.preloader-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,139,128,0.20) 0%, transparent 70%);
  animation: glowIn 1s ease 0.2s forwards;
  opacity: 0;
}
@keyframes glowIn {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}
.preloader-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  margin-top: 20px;
  animation: tagIn 0.5s ease 0.7s forwards;
}
@keyframes tagIn {
  0% { color: rgba(255,255,255,0); transform: translateY(6px); }
  100% { color: rgba(255,255,255,0.3); transform: translateY(0); }
}

/* Page hero for inner pages */
.page-hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

/* Blog prose */
.prose-blog { max-width: 56rem; margin: 0 auto; }
.prose-blog p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.0625rem; }
.prose-blog h2 { color: rgba(255,255,255,0.9); font-size: 1.5rem; font-weight: 600; margin-top: 3rem; margin-bottom: 1rem; }
.prose-blog h3 { color: rgba(255,255,255,0.85); font-size: 1.25rem; font-weight: 600; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose-blog ul, .prose-blog ol { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; padding-left: 1.5rem; }
.prose-blog li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose-blog blockquote { border-left: 3px solid rgba(61,139,128,0.5); padding-left: 1.25rem; margin: 2rem 0; }
.prose-blog blockquote p { color: rgba(255,255,255,0.55); font-style: italic; }
.prose-blog code { font-family: 'JetBrains Mono', monospace; font-size: 0.875em; background: rgba(255,255,255,0.06); padding: 0.15em 0.4em; border-radius: 4px; color: rgba(255,255,255,0.7); }
.prose-blog pre { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.25rem; overflow-x: auto; margin: 2rem 0; }
.prose-blog pre code { background: none; padding: 0; font-size: 0.85rem; line-height: 1.6; }
.prose-blog a { color: #6bbfae; text-decoration: underline; text-underline-offset: 3px; }
.prose-blog a:hover { color: #99d7cb; }
.prose-blog img { border-radius: 12px; margin: 2rem 0; }
.prose-blog strong { color: rgba(255,255,255,0.8); }

/* Blog card */
.blog-card { transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card:hover .blog-card-title { color: rgba(255,255,255,1); }

/* Scroll progress bar (blog) */
/* Typewriter animation (homepage) */
.typewriter { overflow: hidden; }
.typewriter-line {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.typewriter-line.typed { opacity: 1; transform: translateY(0); }

/* Floating hero card (homepage) */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}
.hero-floating-card { animation: heroFloat 4s ease-in-out infinite; }

/* Price counter (homepage) */
.price-counter { display: inline-block; }

/* Parallax cards (homepage) */
.parallax-card { will-change: transform; }

/* FAQ smooth accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
}
.faq-answer.open {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* Scroll progress bar (blog) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #3d8b80, #6bbfae);
  z-index: 200;
  width: 0%;
  transition: width 0.1s ease-out;
}
