:root {
  --ink: #071c18;
  --forest: #0d3c32;
  --emerald: #19c37d;
  --emerald-dark: #0e9f68;
  --mint: #a7f3d0;
  --mist: #eef8f4;

  /* New unified surface tokens */
  --surface: #fafcfb;
  --surface-alt: #f5f9f7;
  --surface-card: #ffffff;
  --glow-emerald: rgba(52, 211, 153, 0.07);
  --glow-teal: rgba(20, 184, 166, 0.05);
  --glow-cyan: rgba(34, 211, 238, 0.04);
}

* {
  box-sizing: border-box;
}
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}
html { scroll-padding-top: 104px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
}
header#siteHeader, main, section, footer {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

i, .fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, [class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", FontAwesome !important;
}

/* ===== AURORA / MESH GLOW SYSTEM ===== */

.section-glow {
  position: relative;
  overflow: hidden;
}

.section-glow::before,
.section-glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  transition: opacity 1.2s ease;
}

.section-glow::before {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, var(--glow-emerald) 0%, transparent 70%);
  animation: glowDrift 12s ease-in-out infinite alternate;
}

.section-glow::after {
  width: 450px;
  height: 450px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, var(--glow-teal) 0%, transparent 70%);
  animation: glowDrift 14s ease-in-out 2s infinite alternate-reverse;
}

@keyframes glowDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -10px) scale(1.05); }
  100% { transform: translate(-10px, 12px) scale(0.97); }
}

.section-glow--alt::before {
  left: auto;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, var(--glow-teal) 0%, transparent 70%);
}
.section-glow--alt::after {
  right: auto;
  left: -60px;
  bottom: -80px;
  background: radial-gradient(circle, var(--glow-emerald) 0%, transparent 70%);
}

.section-glow--center::before {
  width: 700px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, var(--glow-emerald) 0%, var(--glow-teal) 40%, transparent 70%);
  filter: blur(100px);
  animation: glowPulseCenter 10s ease-in-out infinite;
}
.section-glow--center::after {
  display: none;
}

@keyframes glowPulseCenter {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.aurora-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(52, 211, 153, 0.12) 25%, rgba(20, 184, 166, 0.18) 50%, rgba(52, 211, 153, 0.12) 75%, transparent 95%);
  overflow: visible;
  z-index: 1;
}
.aurora-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -25%;
  width: 40%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent 0%, rgba(52, 211, 153, 0.5) 20%, rgba(45, 212, 191, 0.9) 50%, rgba(52, 211, 153, 0.5) 80%, transparent 100%);
  filter: blur(1px);
  animation: auroraWave 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}
.aurora-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -25%;
  width: 40%;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent 0%, rgba(52, 211, 153, 0.15) 30%, rgba(45, 212, 191, 0.3) 50%, rgba(52, 211, 153, 0.15) 70%, transparent 100%);
  filter: blur(6px);
  animation: auroraWave 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes auroraWave {
  0% { left: -25%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 105%; opacity: 0; }
}

/* ===== PROCESS LINE WAVE ===== */
.process-line { 
  position: absolute; 
  z-index: 0; 
  left: 12%; 
  right: 12%; 
  top: 33px; 
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.25));
  overflow: hidden;
  border-radius: 99px;
}
.process-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.8), rgba(52, 211, 153, 1), transparent);
  animation: processWave 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes processWave {
  0% { left: -40%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* ===== CALCULATOR & BUTTON INTERACTION ANIMATIONS ===== */
.btn-primary:active,
.btn-ghost:active,
.calc-light-scope-btn:active,
.calc-pm-btn:active {
  transform: scale(0.96) !important;
}

/* Value Pop animation when calculation results update */
.value-pop {
  animation: valuePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes valuePop {
  0% { transform: scale(0.94); opacity: 0.7; }
  50% { transform: scale(1.04); color: #059669; }
  100% { transform: scale(1); opacity: 1; }
}

/* Flash effect for result cards */
.card-pulse {
  animation: cardPulse 0.45s ease-out;
}
@keyframes cardPulse {
  0% { border-color: rgba(16, 185, 129, 0.5); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
  100% { border-color: #e2ebe7; box-shadow: none; }
}

/* ===== GLASSMORPHISM ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(13, 60, 50, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
  border-color: rgba(52, 211, 153, 0.25);
  box-shadow: 
    0 16px 48px rgba(13, 60, 50, 0.08),
    0 0 0 1px rgba(52, 211, 153, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.glass-card--emerald {
  background: linear-gradient(145deg, rgba(236, 253, 245, 0.75) 0%, rgba(209, 250, 229, 0.45) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(13, 60, 50, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card--emerald:hover {
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 
    0 20px 60px rgba(13, 60, 50, 0.1),
    0 0 40px rgba(52, 211, 153, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ===== CALCULATOR LIGHT THEME ===== */
.calc-light-panel {
  border-radius: 24px;
  border: 1px solid #e2ebe7;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(13, 60, 50, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.calc-light-panel:hover {
  border-color: #c6e8da;
  box-shadow: 0 12px 40px rgba(13, 60, 50, 0.06);
}

.calc-light-scope-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #e2ebe7;
  background: #f8fbfa;
  padding: 10px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.calc-light-scope-btn:hover {
  border-color: #a7f3d0;
  background: #ecfdf5;
  transform: translateY(-1px);
}
.calc-light-scope-btn.active {
  border-color: #10b981;
  background: #ecfdf5;
  color: #065f46;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}

.calc-light-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e2ebe7;
  background: #fafcfb;
  padding: 12px 96px 12px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d3c32;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.calc-light-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08), 0 0 20px rgba(16, 185, 129, 0.06);
  background: #ffffff;
}

.calc-light-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid #e2ebe7;
  background: #fafcfb;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d3c32;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.calc-light-trigger:hover,
.calc-light-trigger:focus {
  border-color: #10b981;
  background: #ffffff;
}

.calc-light-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid #e2ebe7;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(13, 60, 50, 0.12);
  animation: dropdownSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownSlideIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.calc-light-dropdown .calc-search-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e2ebe7;
  background: #f8fbfa;
  padding: 8px 12px 8px 32px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #0d3c32;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.calc-light-dropdown .calc-search-input:focus {
  border-color: #10b981;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.06);
}

.calc-light-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.calc-light-opt:hover {
  background: #ecfdf5;
  border-color: #a7f3d0;
  transform: translateX(2px);
}
.calc-light-opt.active {
  background: #ecfdf5;
  border-color: #10b981;
  color: #065f46;
}

.calc-pm-btn {
  display: flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #e2ebe7;
  background: #f8fbfa;
  color: #0d3c32;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.calc-pm-btn:hover {
  border-color: #10b981;
  background: #ecfdf5;
  color: #059669;
  transform: translateY(-1px);
}
.calc-pm-btn:active {
  transform: scale(0.95);
}

.calc-result-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  background: linear-gradient(160deg, #ecfdf5 0%, #f0fdf4 40%, #fafcfb 100%);
  padding: 24px;
  box-shadow: 
    0 8px 30px rgba(13, 60, 50, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.calc-result-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #059669;
}

.calc-impact-card {
  border-radius: 16px;
  border: 1px solid #e2ebe7;
  background: #ffffff;
  padding: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.calc-impact-card:hover {
  border-color: #a7f3d0;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.08);
  transform: translateY(-2px);
}

.calc-methodology-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid #e2ebe7;
  background: #f8fbfa;
  padding: 12px;
  font-size: 0.75rem;
  color: #475569;
}

/* ===== BENEFIT CARDS (LIGHT THEME) ===== */
.benefit-card-light {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  border: 1px solid #e2ebe7;
  background: #ffffff;
  padding: 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(13, 60, 50, 0.03);
}
.benefit-card-light:hover {
  border-color: #a7f3d0;
  box-shadow: 0 16px 44px rgba(13, 60, 50, 0.08);
  transform: translateY(-4px);
}
.benefit-card-light:hover .benefit-icon-light {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.15);
}
.benefit-card-light .benefit-icon-light {
  display: flex;
  height: 44px;
  width: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ecfdf5;
  color: #059669;
  font-size: 18px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.benefit-card-light h4 {
  margin-top: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #102d27;
  letter-spacing: -0.01em;
}
.benefit-card-light p {
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #64748b;
}

/* ===== NAVIGATION ===== */
.nav-shell {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  box-shadow: 0 14px 45px rgba(7, 28, 24, 0.14);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#siteHeader.scrolled .nav-shell { 
  margin-top: 10px; 
  border-color: rgba(13,60,50,.08); 
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 50px rgba(7,28,24,.12), inset 0 1px 0 rgba(255,255,255,0.5); 
}
.nav-link { 
  padding: .68rem .88rem; 
  border-radius: .75rem; 
  font-size: .875rem; 
  font-weight: 700; 
  color: #475569; 
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #10b981;
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}
.nav-link:hover { background: #ecfdf5; color: #047857; }
.nav-link:hover::after { width: 24px; }
.mobile-nav-link { border-radius: .8rem; padding: .8rem .9rem; font-size: .92rem; font-weight: 700; color: #334155; transition: all 0.2s ease; }
.mobile-nav-link:hover { background: #ecfdf5; color: #047857; }

.brand-mark { display:flex; max-width: 290px; height: 60px; align-items:center; text-decoration:none; flex-shrink: 0; overflow: visible; }
.brand-logo-img { display:block; height: 56px; width: auto; max-width: 100%; object-fit:contain; object-position:left center; transform: none; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04)); transition: filter 0.3s ease; }
.brand-mark:hover .brand-logo-img { filter: drop-shadow(0 4px 8px rgba(16,185,129,0.12)); }
.brand-logo-fallback { height:100%; align-items:center; font-family: 'Plus Jakarta Sans', sans-serif; font-size:1.2rem; font-weight:800; color:#0d3c32; }

/* ===== BUTTONS ===== */
.btn-primary, .btn-ghost { display: inline-flex; align-items: center; border-radius: .9rem; padding: .85rem 1.35rem; font-weight: 800; letter-spacing: -0.01em; transition: all .3s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; text-decoration: none; position: relative; overflow: hidden; }
.btn-primary { background: #059669; color: #ffffff; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover { transform: translateY(-2.5px); background: linear-gradient(135deg, #34d399 0%, #10b981 100%); color: #ffffff; box-shadow: 0 8px 28px rgba(16, 185, 129, 0.3); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(0.97); }

.btn-ghost { border: 1px solid rgba(52, 211, 153, 0.38); background: rgba(16, 185, 129, 0.12); color: #ecfdf5; backdrop-filter: blur(12px); box-shadow: 0 4px 18px rgba(0,0,0,0.1); }
.btn-ghost:hover { background: rgba(16, 185, 129, 0.24); border-color: rgba(52, 211, 153, 0.7); color: #ffffff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25); }
.btn-ghost:active { transform: translateY(0); }
.btn-lg { padding: 1.02rem 1.5rem; font-size: 1.02rem; }

/* ===== HERO ===== */
.hero-grid::before {
  content: ''; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000, transparent 90%);
  animation: gridShift 25s linear infinite;
}

@keyframes gridShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

.text-gradient { color: #34d399; font-weight: 800; }

/* ===== HERO CARD — ULTRA PREMIUM ENTERPRISE WIDGET ===== */
.hero-card-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.45) 0%, rgba(16, 185, 129, 0.12) 30%, rgba(52, 211, 153, 0.35) 60%, rgba(20, 184, 166, 0.15) 85%, rgba(52, 211, 153, 0.45) 100%);
  background-size: 250% 250%;
  animation: gradientBorderShift 7s ease infinite;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 35px rgba(52, 211, 153, 0.12);
}

@keyframes gradientBorderShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#heroCard {
  position: relative;
  overflow: hidden;
  border-radius: 22.5px;
  border: none;
  background: linear-gradient(165deg, rgba(5, 30, 25, 0.96) 0%, rgba(7, 36, 30, 0.94) 50%, rgba(4, 25, 21, 0.98) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#heroCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(52, 211, 153, 0.4) 30%, rgba(167, 243, 208, 0.6) 50%, rgba(52, 211, 153, 0.4) 70%, transparent 95%);
}

#heroCard::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  animation: cardAmbientPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cardAmbientPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.2); }
}

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-wrap { position: relative; margin-inline: auto; max-width: 620px; }
.dashboard-glow { position: absolute; inset: 8% 5%; border-radius: 2.5rem; background: radial-gradient(ellipse, rgba(52,211,153,.25) 0%, rgba(16,185,129,.12) 50%, transparent 80%); filter: blur(70px); }
.dashboard-window { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 1.8rem; background: #fff; box-shadow: 0 40px 100px -20px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06), inset 0 1px 0 rgba(255,255,255,.1); transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg); transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1); }
.dashboard-window::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #10b981 0%, #34d399 35%, #2dd4bf 65%, #10b981 100%); z-index: 10; }
.dashboard-wrap:hover .dashboard-window { transform: perspective(1400px) rotateY(-1deg) rotateX(0deg) translateY(-4px); box-shadow: 0 50px 120px -20px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.12); }
.dashboard-topbar { display: flex; height: 46px; align-items: center; justify-content: space-between; border-bottom: 1px solid #eef2f1; padding: 0 16px; background: linear-gradient(180deg, #fafffe 0%, #fff 100%); gap: 8px; }
.dashboard-body { display: flex; min-height: 370px; }
.dashboard-sidebar { width: 128px; flex: 0 0 128px; background: linear-gradient(180deg, #f0f9f5 0%, #e8f5ef 100%); padding: 15px 10px; border-right: 1px solid #e2ede8; }
.dash-side { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; border-radius: 8px; padding: 8px 7px; font-size: 8px; font-weight: 800; color: #6b7f79; }
.dash-side i { width: 10px; }
.dash-side.active { background: #0d3c32; color: #d1fae5; box-shadow: 0 6px 14px rgba(13,60,50,.18); }
.metric-card { position: relative; min-width: 0; border: 1px solid #edf2f0; border-radius: 13px; background: white; padding: 11px; box-shadow: 0 4px 12px rgba(15,50,43,.035); }
.metric-card small { display: block; margin-top: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 8px; font-weight: 700; color: #94a3b8; }
.metric-card strong { display: inline-block; margin-top: 2px; font-family: Manrope,sans-serif; font-size: 15px; line-height: 1.1; color: #18352e; }
.metric-card em { margin-left: 2px; font-size: 7px; font-style: normal; font-weight: 700; color: #94a3b8; }
.metric-icon { display: flex; height: 22px; width: 22px; align-items: center; justify-content: center; border-radius: 8px; background: #ecfdf5; color: #0ea56d; font-size: 9px; }
.chart-card { overflow: hidden; border: 1px solid #edf2f0; border-radius: 13px; background: white; padding: 12px; }
.chart-area { position: relative; height: 112px; overflow: hidden; }
.chart-area svg { position: relative; z-index: 2; }
.chart-grid { position: absolute; inset: 0; background-image: linear-gradient(#edf2f0 1px,transparent 1px); background-size: 100% 25%; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.94); padding: 10px 12px; color: #0f3129; box-shadow: 0 14px 34px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.floating-card-one { left: -26px; bottom: 62px; animation: floatCard 5s ease-in-out infinite; }
.floating-card-two { right: -18px; top: 76px; animation: floatCard 5.5s ease-in-out infinite reverse; }
.float-icon { display: flex; height: 30px; width: 30px; align-items: center; justify-content: center; border-radius: 9px; background: #ecfdf5; color: #10b981; font-size: 12px; }
.floating-card strong { display: block; font-size: 10px; }
.floating-card small { display: block; margin-top: 1px; font-size: 7px; font-weight: 700; color: #94a3b8; }
@keyframes floatCard { 50% { transform: translateY(-7px); } }

/* ===== SECTIONS ===== */
.section-pad { padding-block: 96px; }
.section-kicker { font-size: .73rem; font-weight: 800; letter-spacing: .16em; color: #059669; }
.section-title { margin-top: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem,4vw,3.25rem); font-weight: 800; line-height: 1.11; letter-spacing: 0.01em; color: #102d27; }
.section-title span { color: #0e9f68; }
.section-copy { margin-top: 1.15rem; font-size: 1rem; line-height: 1.8; color: #64748b; }

/* ===== FEATURE CARDS ===== */
.feature-card { 
  position: relative; 
  overflow: hidden; 
  min-height: 260px; 
  border: 1px solid #e7efec; 
  border-radius: 24px; 
  background: #fff; 
  padding: 28px; 
  box-shadow: 0 12px 34px rgba(20,66,54,.05); 
  transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover { 
  transform: translateY(-5px); 
  border-color: #b6e8d5; 
  box-shadow: 0 20px 52px rgba(20,66,54,.1); 
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
}
.feature-icon { 
  display: flex; 
  height: 50px; 
  width: 50px; 
  align-items: center; 
  justify-content: center; 
  border-radius: 15px; 
  background: #eafaf3; 
  color: #0d9f69; 
  font-size: 18px; 
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card h3 { margin-top: 28px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.16rem; font-weight: 800; color: #163a31; }
.feature-card p { margin-top: 10px; max-width: 25rem; font-size: .92rem; line-height: 1.7; color: #64748b; }
.feature-number { position: absolute; right: 22px; top: 18px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.6rem; font-weight: 800; color: #e9f5f1; transition: color 0.3s ease; }
.feature-card:hover .feature-number { color: #d1fae5; }

/* ===== BENTO CARDS ===== */
.bento-card { 
  position: relative; 
  overflow: hidden; 
  border: 1px solid #dce8e3; 
  border-radius: 26px; 
  background: rgba(255,255,255,.94); 
  padding: 30px; 
  box-shadow: 0 14px 38px rgba(15,61,50,.04); 
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover { 
  transform: translateY(-4px); 
  border-color: #a7f3d0; 
  box-shadow: 0 24px 56px rgba(13,60,50,0.09); 
}
.bento-card::after { 
  content:''; 
  position:absolute; 
  right:-70px; 
  top:-80px; 
  width:180px; 
  height:180px; 
  border-radius:50%; 
  background:radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 70%); 
  transition: all 0.5s ease;
}
.bento-card:hover::after {
  transform: scale(1.3);
  opacity: 0.8;
}
.bento-card.dark-card { border-color: rgba(255,255,255,0.1); background: linear-gradient(145deg, #0d3c32 0%, #072720 100%); color:#fff; box-shadow: 0 20px 50px rgba(7,39,32,0.25); }
.bento-card.dark-card:hover { border-color: rgba(52,211,153,0.35); box-shadow: 0 28px 65px rgba(7,39,32,0.35); }
.bento-card h3 { position: relative; z-index: 1; margin-top: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 800; color: #102d27; letter-spacing: -0.02em; }
.bento-card p { position: relative; z-index: 1; margin-top: 10px; max-width: 34rem; font-size: .91rem; line-height: 1.75; color: #64748b; }
.bento-card.dark-card h3 { color: #fff; }
.bento-card.dark-card p { color: rgba(236,253,245,.72); }
.overview-bento { min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; }
.trend-bento { min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; }
.mini-dashboard { width: 100%; border: 1px solid #e2ebe7; border-radius: 22px; background: white; padding: 18px 20px; box-shadow: 0 16px 45px rgba(16,62,50,.07); }
.mini-dashboard-flow { position: relative; z-index: 2; width: 100%; margin-top: 24px; margin-left: 0; transform: none; }
.trend-chart { position: relative; z-index: 2; margin-top: 24px; width: 100%; }
.mini-stat { border: 1px solid #edf3f0; border-radius: 14px; padding: 11px 13px; background: #fafdfc; transition: all .25s cubic-bezier(0.16, 1, 0.3, 1); }
.mini-stat:hover { border-color: #a7f3d0; box-shadow: 0 6px 18px rgba(16,185,129,0.1); transform: translateY(-2px); }
.mini-stat small,.mini-stat span { display:block; font-size:9px; font-weight:700; color:#94a3b8; }
.mini-stat strong { display:block; margin-top:3px; font-family:'Plus Jakarta Sans',sans-serif; font-size:16px; font-weight:800; color:#18352e; }

/* Bar Chart Stagger Animation */
.bar-col { display: flex; align-items: flex-end; justify-content: center; height: 100%; }
.bar { 
  width: 100%; 
  border-radius: 6px 6px 2px 2px; 
  background: linear-gradient(to top, #10b981 0%, #34d399 100%); 
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1); 
  cursor: pointer; 
  transform-origin: bottom;
  position: relative;
}
.bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bar:hover { 
  filter: brightness(1.1); 
  transform: scaleY(1.06); 
  box-shadow: 0 -4px 16px rgba(16,185,129,0.25); 
}
.bar:hover::after { opacity: 1; }
.active-bar { background: linear-gradient(to top, #059669 0%, #10b981 100%); box-shadow: 0 4px 12px rgba(16,185,129,0.35); }
.active-bar::after { opacity: 1; }

.badge-dark { display: inline-flex; align-items: center; border: 1px solid rgba(52,211,153,0.3); border-radius: 999px; background: rgba(52,211,153,0.1); padding: 4px 12px; font-size: 11px; font-weight: 800; color: #a7f3d0; margin-bottom: 6px; }

/* Avatars with stagger hover */
.avatar { 
  display:flex; height:44px; width:44px; align-items:center; justify-content:center; border:3px solid #fff; border-radius:50%; 
  background:linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); font-size:11px; font-weight:800; color:#0f6f53; 
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1); 
  cursor: pointer; 
}
.avatar:hover { transform: scale(1.15) translateY(-3px); z-index: 10; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2); }
.avatar:nth-child(2) { background:linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); color:#1e5f94; }
.avatar:nth-child(3) { background:linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); color:#8a6414; }
.avatar-more { background:#0d3c32; color:#fff; font-size:10px; border-color:#fff; width:auto; height:44px; border-radius:999px; padding:0 14px; white-space:nowrap; }
.history-row { 
  display:flex; align-items:center; gap:12px; border:1px solid #e2ebe7; border-radius:14px; background:#fff; padding:11px 14px; font-size:11px; 
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.history-row:hover {
  transform: translateX(3px);
}
.history-row span { color:#94a3b8; }
.history-row b{flex:1;color:#3d554f}
.history-row i{color:#10b981}

/* ===== DİJİTAL İŞ AKIŞI FLOWCHART ARCHITECTURE ===== */
.animate-spin-slow {
  animation: spinSlow 14s linear infinite;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.flow-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.flow-card:hover {
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.12);
}
.flow-mini-card {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  user-select: none;
}
.flow-mini-card:hover {
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.18);
}
.process-line { 
  position: absolute; 
  z-index: 0; 
  left: 12%; 
  right: 12%; 
  top: 33px; 
  height: 2px;
  background: #d1fae5;
  border-top: none;
  overflow: hidden;
}
.process-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #10b981, #34d399, transparent);
  animation: processLaserFlow 3.5s ease-in-out infinite;
}

@keyframes processLaserFlow {
  0% { left: -40%; }
  100% { left: 100%; }
}

.process-card { 
  position: relative; 
  z-index: 1; 
  padding: 0 10px 10px; 
  text-align: center; 
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-no { 
  position: absolute; 
  left: 50%; 
  top: -6px; 
  z-index: 6; 
  transform: translateX(22px); 
  border: 3px solid #fff; 
  border-radius: 999px; 
  background: #0d3c32; 
  padding: 3px 7px; 
  font-size: 8px; 
  line-height: 1; 
  font-weight: 800; 
  color: #d1fae5; 
  box-shadow: 0 6px 15px rgba(13,60,50,.16); 
  transition: all 0.3s ease;
}
.process-icon { 
  position: relative; 
  z-index: 2; 
  margin: 0 auto; 
  display: flex; 
  height: 66px; 
  width: 66px; 
  align-items: center; 
  justify-content: center; 
  border: 8px solid #fff; 
  border-radius: 22px; 
  background: #e8faf2; 
  color: #0ca46c; 
  font-size: 20px; 
  box-shadow: 0 8px 25px rgba(18,86,66,.08); 
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: processIconBreath 4s ease-in-out infinite;
}

@keyframes processIconBreath {
  0%, 100% { box-shadow: 0 8px 25px rgba(18,86,66,.08); }
  50% { box-shadow: 0 8px 25px rgba(18,86,66,.08), 0 0 0 6px rgba(16, 185, 129, 0.08); }
}

.process-card:hover .process-icon,
.process-card.active-step .process-icon {
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.28), 0 0 0 5px rgba(52, 211, 153, 0.15);
}

.process-card.active-step .process-no {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.process-card h3 { margin-top:24px; font-family:'Plus Jakarta Sans',sans-serif; font-size:1rem; font-weight:800; color:#17372f; }
.process-card p { margin:8px auto 0; max-width:250px; font-size:.86rem; line-height:1.65; color:#64748b; }

/* ===== OLD BENEFIT CARDS (kept for backward compat) ===== */
.benefit-card { display:flex; gap:13px; border:1px solid rgba(255,255,255,.09); border-radius:18px; background:rgba(255,255,255,.055); padding:18px; }
.benefit-card>i { display:flex; height:30px; width:30px; flex:0 0 30px; align-items:center; justify-content:99px; background:#34d399; color:#07372a; font-size:11px; }
.benefit-card span { font-size:.82rem; line-height:1.5; color:rgba(236,253,245,.62); }
.benefit-card b { display:block; margin-bottom:4px; font-family:'Plus Jakarta Sans',sans-serif; font-size:.95rem; color:#fff; }

/* ===== FAQ ===== */
.faq-item { 
  overflow:hidden; 
  border:1px solid #e0ebe7; 
  border-radius:18px; 
  background:#fff; 
  box-shadow:0 7px 24px rgba(17,72,57,.035); 
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item:hover {
  border-color: #c6e8da;
  box-shadow: 0 10px 30px rgba(17, 72, 57, 0.06);
}
.faq-item.active {
  border-color: #a7f3d0;
  box-shadow: 0 12px 36px rgba(17, 72, 57, 0.07);
}
.faq-question { 
  display:flex; width:100%; align-items:center; justify-content:space-between; gap:20px; padding:20px 22px; 
  text-align:left; font-family:'Plus Jakarta Sans',sans-serif; font-size:.98rem; font-weight:800; color:#17372f; 
  transition: color 0.2s ease;
}
.faq-question:hover { color: #059669; }
.faq-question i { transition: all .3s cubic-bezier(0.16, 1, 0.3, 1); color:#0ea56d; }
.faq-item.active .faq-question i { transform:rotate(45deg); }
.faq-answer { display:none; padding:0 22px 20px; }
.faq-item.active .faq-answer { display:block; animation: faqSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes faqSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer p { max-width:900px; font-size:.9rem; line-height:1.7; color:#64748b; }

/* ===== CTA ===== */
.cta-shell { 
  position:relative; overflow:hidden; border-radius:32px; background:#0c342c; 
  box-shadow:0 28px 65px rgba(13,60,50,.18); 
  transition: box-shadow 0.4s ease;
}
.cta-shell:hover {
  box-shadow: 0 32px 75px rgba(13, 60, 50, 0.22);
}
.cta-pattern { position:absolute; inset:0; opacity:.13; background-image:radial-gradient(circle at 1px 1px,rgba(255,255,255,.4) 1px,transparent 0); background-size:26px 26px; mask-image:linear-gradient(110deg,#000,transparent 75%); }
.form-field span { display:block; margin-bottom:7px; font-size:.72rem; font-weight:800; color:rgba(236,253,245,.65); }
.form-field input,
.form-field textarea { 
  width:100%; border:1px solid rgba(255,255,255,.12); outline:none; border-radius:12px; 
  background:rgba(255,255,255,.08); padding:12px 13px; font-size:.86rem; color:#fff; 
  font-family: inherit;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.form-field input:focus,
.form-field textarea:focus { 
  border-color:rgba(52,211,153,.65); 
  background:rgba(255,255,255,.11); 
  box-shadow: 0 0 0 3px rgba(52,211,153,.08), 0 0 24px rgba(52, 211, 153, 0.06); 
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(236, 253, 245, 0.3);
  transition: color 0.2s ease;
}
.form-field input:focus::placeholder,
.form-field textarea:focus::placeholder {
  color: rgba(236, 253, 245, 0.5);
}

/* Custom Select & Number Input Controls */
.custom-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%3C34d399' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.25rem !important;
  padding-right: 3rem !important;
  cursor: pointer;
}

.custom-select option {
  background-color: #061a15 !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.custom-select option:hover,
.custom-select option:focus,
.custom-select option:active,
.custom-select option:checked {
  background-color: #10b981 !important;
  color: #ffffff !important;
}

/* Hide native number input spinners */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none !important; 
  margin: 0 !important; 
}
input[type=number] {
  -moz-appearance: textfield !important;
}

/* Custom scrollbar for dropdowns */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(16,185,129,0.2); border-radius: 99px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: rgba(16,185,129,0.4); }

/* ===== FOOTER ===== */
.footer-shell { background:#082820; color:#fff; }
.footer-logo-card { 
  display:inline-flex; height: 68px; max-width: 290px; align-items:center; border-radius:16px; background:#fff; 
  padding:8px 20px; box-shadow:0 12px 32px rgba(0,0,0,.2); text-decoration: none; 
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.footer-logo-img { display:block; height: 52px; width: auto; max-width: 100%; object-fit:contain; object-position:left center; transform: none; }
.footer-about { margin-top: 1.35rem; max-width: 28rem; font-size: .92rem; line-height: 1.8; color: rgba(236,253,245,.68); }
.footer-title { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1rem; font-weight:800; color:#fff; }
.footer-copy { margin-top: 1rem; font-size:.92rem; line-height:1.8; color:rgba(236,253,245,.68); }
.footer-list { margin-top:1rem; display:grid; gap:13px; }
.footer-list li { display:flex; align-items:flex-start; gap:10px; font-size:.9rem; line-height:1.65; color:rgba(236,253,245,.68); }
.footer-list i { width:16px; margin-top:4px; color:#5ee3ad; }
.footer-list a { color:rgba(236,253,245,.74); text-decoration:none; transition: all 0.2s ease; }
.footer-list a:hover { color:#a7f3d0; transform: translateX(2px); display: inline-block; }
.certificate-list { margin-top:1rem; display:flex; flex-wrap:wrap; gap:9px; }
.certificate-list span { 
  display:inline-flex; align-items:center; border:1px solid rgba(167,243,208,.16); border-radius:10px; 
  background:rgba(255,255,255,.06); padding:8px 10px; font-size:.76rem; font-weight:800; color:rgba(236,253,245,.72); 
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.certificate-list span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(167, 243, 208, 0.08), transparent);
  transition: left 0.6s ease;
}
.certificate-list span:hover {
  border-color: rgba(167, 243, 208, 0.35);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.certificate-list span:hover::before {
  left: 100%;
}
.footer-bottom-link { font-weight:700; color:rgba(236,253,245,.58); transition: all .25s cubic-bezier(0.16, 1, 0.3, 1); text-decoration:none; }
.footer-bottom-link:hover { color:#a7f3d0; transform: translateY(-1px); display: inline-block; }

/* ===== ANIMATIONS ===== */
.reveal { 
  opacity:0; 
  transform:translateY(28px); 
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1), transform .7s cubic-bezier(0.16, 1, 0.3, 1); 
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ===== FLOATING DATA PILLS & SUCTION VORTEX ===== */
.float-file-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 12px;
  background: rgba(6, 32, 27, 0.94);
  padding: 6.5px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(236, 253, 245, 0.94);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: absolute;
  letter-spacing: -0.01em;
  user-select: none;
}

.float-file-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.float-file-badge:hover {
  border-color: #34d399;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 
    0 14px 32px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(52, 211, 153, 0.25);
  z-index: 50;
}
.float-file-badge:hover::before { opacity: 1; }

/* Subtle organic floating orbits */
.float-badge-1 { animation: floatOrbit1 5.5s ease-in-out infinite; }
.float-badge-2 { animation: floatOrbit2 6.5s ease-in-out 0.5s infinite; }
.float-badge-3 { animation: floatOrbit3 6s ease-in-out 1s infinite; }
.float-badge-4 { animation: floatOrbit4 6.2s ease-in-out 1.5s infinite; }

@keyframes floatOrbit1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -5px); }
}
@keyframes floatOrbit2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3px, -6px); }
}
@keyframes floatOrbit3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -4px); }
}
@keyframes floatOrbit4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, -5px); }
}

/* Suction Vortex Beam */
.suction-vortex {
  filter: drop-shadow(0 0 20px rgba(52, 211, 153, 0.4));
  animation: vortexGlowPulse 3s ease-in-out infinite;
}

@keyframes vortexGlowPulse {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(52, 211, 153, 0.3)); opacity: 0.85; }
  50% { filter: drop-shadow(0 0 28px rgba(52, 211, 153, 0.65)); opacity: 1; }
}

.animate-stream {
  animation: streamFlow 1.3s linear infinite;
}
.animate-stream-fast {
  animation: streamFlow 0.8s linear infinite;
}

@keyframes streamFlow {
  from { stroke-dashoffset: 20; }
  to { stroke-dashoffset: 0; }
}

/* "TEK MERKEZDE BİRLEŞİR" shimmer text */
.shimmer-text {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.9) 0%, rgba(167, 243, 208, 1) 25%, rgba(52, 211, 153, 0.9) 50%, rgba(167, 243, 208, 1) 75%, rgba(52, 211, 153, 0.9) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
  from { background-position: 200% center; }
  to { background-position: -200% center; }
}

/* Vacuum Suction States — pulls smoothly into the center vortex */
.float-file-badge.badge-pulled {
  border-color: #34d399 !important;
  background: rgba(16, 185, 129, 0.35) !important;
  box-shadow: 
    0 0 30px rgba(52, 211, 153, 0.6),
    0 0 60px rgba(52, 211, 153, 0.2) !important;
  color: #ffffff !important;
  z-index: 40;
}

.float-file-badge.badge-sucked-left {
  opacity: 0 !important;
  transform: translate(110px, 60px) scale(0.12) rotate(10deg) !important;
  filter: blur(5px);
  pointer-events: none;
}

.float-file-badge.badge-sucked-right {
  opacity: 0 !important;
  transform: translate(-110px, 60px) scale(0.12) rotate(-10deg) !important;
  filter: blur(5px);
  pointer-events: none;
}

/* Card flash on ingestion */
.card-flash {
  animation: cardFlashPulse 1.2s ease;
}
@keyframes cardFlashPulse {
  0% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 50px rgba(0,0,0,0.5); }
  30% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 50px rgba(0,0,0,0.5), 0 0 50px rgba(52, 211, 153, 0.4); }
  100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 50px rgba(0,0,0,0.5); }
}

.total-pulse {
  animation: totalTextGlow 1.2s ease;
}
@keyframes totalTextGlow {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.06); color: #a7f3d0; text-shadow: 0 0 24px rgba(52, 211, 153, 0.6); }
}

/* Verified Stamp — refined */
.verified-stamp {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(5, 38, 30, 0.9);
  border: 1.5px solid rgba(52, 211, 153, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 6px 18px rgba(0, 0, 0, 0.35), 
    inset 0 0 10px rgba(52, 211, 153, 0.2),
    0 0 0 3px rgba(52, 211, 153, 0.08);
  z-index: 20;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stamp-text-ring {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: rotateStamp 25s linear infinite;
}
@keyframes rotateStamp {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== HERO BOTTOM PROCESS PIPELINE STYLES ===== */
.pipe-step {
  cursor: default;
}
.pipe-step.active {
  opacity: 1 !important;
}
.pipe-step.active .pipe-icon {
  background: rgba(16, 185, 129, 0.25) !important;
  color: #34d399 !important;
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.35);
  transform: scale(1.08);
}
.pipe-step.active .pipe-text {
  color: #ffffff !important;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(52, 211, 153, 0.4);
}
.pipe-step.active .pipe-dot {
  display: flex !important;
}

/* ===== HERO BOTTOM BAR ANIMATION ===== */
.hero-bottom-bar {
  position: relative;
}
.hero-bottom-bar span {
  transition: all 0.3s ease;
}
.hero-bottom-bar span:hover {
  color: rgba(236, 253, 245, 0.7);
}

/* ===== HERO DATA INGESTION & CARD ANIMATION SYSTEM (ZERO LAYOUT SHIFT) ===== */

/* Source File Pills Interaction */
.source-file-pill {
  position: relative;
  overflow: hidden;
  user-select: none;
  min-width: 0;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.source-file-pill .pill-badge {
  min-width: 0;
  max-width: 52px;
}
.source-file-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(52, 211, 153, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.source-file-pill:hover::before {
  opacity: 1;
}

/* Pill Active States (Color & Glow only, NO transform scale) */
.source-file-pill.pill-active-emerald {
  border-color: #34d399 !important;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.45), inset 0 0 14px rgba(52, 211, 153, 0.2) !important;
  background: #062820 !important;
}
.source-file-pill.pill-active-rose {
  border-color: #fb7185 !important;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.45), inset 0 0 14px rgba(244, 63, 94, 0.2) !important;
  background: #250b12 !important;
}
.source-file-pill.pill-active-amber {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.45), inset 0 0 14px rgba(251, 191, 36, 0.2) !important;
  background: #271a06 !important;
}

/* Center Merge Node */
#centerMergeNode {
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
#centerMergeNode.merge-active {
  background: #093b30 !important;
  border-color: #34d399 !important;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.6), 0 0 8px #34d399 !important;
}

/* Flying Data Packets (Strictly overlay layer) */
.flying-data-packet {
  position: absolute;
  z-index: 45;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 10.5px;
  font-weight: 800;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(52, 211, 153, 0.7);
  background: rgba(4, 26, 21, 0.95);
  color: #a7f3d0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(52, 211, 153, 0.4);
  transform-origin: center center;
  will-change: transform, opacity;
  transition: transform 0.68s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.68s ease, filter 0.68s ease;
}

.flying-data-packet.packet-rose {
  border-color: rgba(251, 113, 133, 0.8);
  background: rgba(30, 8, 14, 0.95);
  color: #fecdd3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(244, 63, 94, 0.4);
}
.flying-data-packet.packet-amber {
  border-color: rgba(251, 191, 36, 0.8);
  background: rgba(32, 22, 6, 0.95);
  color: #fde68a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(251, 191, 36, 0.4);
}
.flying-data-packet.packet-teal {
  border-color: rgba(45, 212, 191, 0.8);
  background: rgba(4, 28, 25, 0.95);
  color: #99f6e4;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(45, 212, 191, 0.4);
}

/* Card Ingestion Shockwave (Zero transform, purely optical lighting) */
.card-shockwave {
  animation: cardIngestPulse 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cardIngestPulse {
  0% {
    box-shadow: 0 30px 90px rgba(0,0,0,0.8), 0 0 50px rgba(16,185,129,0.15);
    border-color: rgba(16, 185, 129, 0.3);
  }
  35% {
    box-shadow: 0 30px 90px rgba(0,0,0,0.8), 0 0 65px rgba(52,211,153,0.5), inset 0 0 30px rgba(52,211,153,0.12);
    border-color: rgba(52, 211, 153, 0.8);
  }
  100% {
    box-shadow: 0 30px 90px rgba(0,0,0,0.8), 0 0 50px rgba(16,185,129,0.15);
    border-color: rgba(16, 185, 129, 0.3);
  }
}

/* Scope Rows Interactive Reaction (Zero transform layout shift) */
.scope-interactive-row {
  position: relative;
  transition: border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.scope-flash-rose {
  border-color: rgba(244, 63, 94, 0.6) !important;
  background: rgba(244, 63, 94, 0.08) !important;
  box-shadow: 0 0 18px rgba(244, 63, 94, 0.25) !important;
}
.scope-flash-amber {
  border-color: rgba(251, 191, 36, 0.6) !important;
  background: rgba(251, 191, 36, 0.08) !important;
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.25) !important;
}
.scope-flash-emerald {
  border-color: rgba(52, 211, 153, 0.6) !important;
  background: rgba(52, 211, 153, 0.08) !important;
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.25) !important;
}

/* Numbers Tabular Monospace to Prevent Horizontal Jitter */
#dashScope1Val, #dashScope2Val, #dashScope3Val, #dashTotalVal {
  font-variant-numeric: tabular-nums;
}

/* Seal Stamp Ingestion Pulse */
.seal-spin-pulse {
  animation: sealGlance 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes sealGlance {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); box-shadow: 0 0 25px rgba(52, 211, 153, 0.6); }
  100% { transform: rotate(360deg); }
}

/* Total Box Ingestion Glow */
.total-box-glow {
  animation: totalBoxFlash 1.1s ease;
}
@keyframes totalBoxFlash {
  0%, 100% { color: #ffffff; }
  35% {
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.7);
  }
}




/* No scrollbar utility */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .section-pad { padding-block: 76px; }
  .dashboard-window { transform:none; }
  .floating-card-one { left:-8px; bottom:34px; }
  .floating-card-two{right:-8px;top:62px}
  .overview-bento,.trend-bento { min-height:0; }
  .mini-dashboard-flow { width:100%; margin-left:0; }
  .section-glow::before,
  .section-glow::after { filter: blur(60px); animation: none; }
  .section-glow::before { width: 300px; height: 300px; }
  .section-glow::after { width: 250px; height: 250px; }
}
@media (max-width: 640px) {
  .brand-mark { max-width: 175px; height: 42px; }
  .brand-logo-img { height: 46px; }
  .dashboard-sidebar { display:none; }
  .dashboard-body { min-height:320px; }
  .dashboard-window { border-radius:1.15rem; }
  .floating-card { display:none; }
  .section-pad { padding-block:64px; }
  .feature-card,.bento-card { border-radius:21px; padding:20px; }
  .cta-shell { border-radius:24px; }
  .process-no { transform:translateX(18px); }
  .footer-logo-card { height:48px; max-width: 190px; padding: 4px 10px; }
  .footer-logo-img { height: 34px; }
  .section-glow::before { width: 200px; height: 200px; top: -60px; left: -40px; }
  .section-glow::after { width: 180px; height: 180px; }
  .calc-light-panel,
  .calc-result-panel { padding: 16px; border-radius: 20px; }
  .scope-progress { width: 40px; }
  .hero-card-wrapper { border-radius: 22px; }
  #heroCard { border-radius: 20px; padding: 18px; }
  .process-icon { animation: none; }
  .nav-shell { border-radius: 16px; }

  /* Mobile Hero Card & Ingestion Fixes (Zero Overflow) */
  #heroCardContainer {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #masterHeroCard {
    padding: 16px !important;
    border-radius: 20px !important;
  }
  .source-file-pill {
    padding: 6px 8px !important;
    gap: 4px !important;
    font-size: 10px !important;
  }
  .source-file-pill .pill-badge {
    display: none !important;
  }
  #dashStreamBox {
    padding: 6px 10px !important;
    height: 32px !important;
  }
  #dashSealStamp {
    width: 44px !important;
    height: 44px !important;
  }
  #dashSealStamp i {
    font-size: 16px !important;
  }
}
@media (max-width: 420px) {
  .brand-mark { max-width: 150px; height: 36px; }
  .brand-logo-img { height: 30px; }
  #mobileMenuButton { width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; }
  .reveal { opacity:1; transform:none; }
  .hero-card-wrapper { animation: none; }
  .float-file-badge { animation: none; }
  .suction-funnel-beam { animation: none; }
  .process-icon { animation: none; }
}
