/* ============================================
   SORT RESIDENTIAL — Premium Marketing Site
   Light theme · Animated · Professional
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #FFFFFF;
  color: #334155;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: rgba(33, 150, 243, 0.2);
  color: #0F172A;
}

/* === Custom Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* === Cursor Glow === */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, rgba(100, 181, 246, 0.06) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
  mix-blend-mode: multiply;
  filter: blur(2px);
}

.cursor-glow.hovering {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.22) 0%, rgba(100, 181, 246, 0.08) 30%, rgba(229, 57, 53, 0.04) 50%, transparent 65%);
  filter: blur(0px);
}

/* === Ambient Energy Pulse === */
.energy-pulse {
  position: fixed;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.12) 0%, rgba(100, 181, 246, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  animation: energyPulseExpand 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.energy-ring {
  position: fixed;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(33, 150, 243, 0.15);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  animation: energyRingExpand 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes energyPulseExpand {
  0% { width: 0; height: 0; opacity: 0.6; }
  30% { opacity: 0.4; }
  100% { width: 800px; height: 800px; opacity: 0; }
}

@keyframes energyRingExpand {
  0% { width: 0; height: 0; opacity: 0.5; }
  40% { opacity: 0.3; }
  100% { width: 1000px; height: 1000px; opacity: 0; }
}

/* === Click Ripple Waves === */
.click-ripple {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0);
  mix-blend-mode: screen;
}

.click-ripple-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(33, 150, 243, 0.6);
  opacity: 0;
}

@keyframes rippleExpand {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes rippleRing1 {
  0% {
    transform: scale(0.1);
    opacity: 0.8;
    border-width: 3px;
    border-color: rgba(33, 150, 243, 0.8);
  }
  100% {
    transform: scale(1);
    opacity: 0;
    border-width: 1px;
    border-color: rgba(33, 150, 243, 0);
  }
}

@keyframes rippleRing2 {
  0% {
    transform: scale(0.1);
    opacity: 0.6;
    border-width: 2px;
    border-color: rgba(100, 181, 246, 0.7);
  }
  100% {
    transform: scale(1);
    opacity: 0;
    border-width: 1px;
    border-color: rgba(100, 181, 246, 0);
  }
}

@keyframes rippleRing3 {
  0% {
    transform: scale(0.1);
    opacity: 0.4;
    border-width: 2px;
    border-color: rgba(229, 57, 53, 0.5);
  }
  100% {
    transform: scale(1);
    opacity: 0;
    border-width: 1px;
    border-color: rgba(229, 57, 53, 0);
  }
}

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

/* === Layout === */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2196F3, #1E88E5);
  color: #fff;
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(33, 150, 243, 0.4);
}

.btn-glass {
  background: rgba(33, 150, 243, 0.06);
  color: #1E88E5;
  border: 1.5px solid rgba(33, 150, 243, 0.25);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(33, 150, 243, 0.12);
  border-color: rgba(33, 150, 243, 0.4);
  color: #1565C0;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
}

.btn-glass-dark {
  background: #0F172A;
  color: #fff;
  border: 1px solid #1E293B;
}

.btn-glass-dark:hover {
  background: #1E293B;
  transform: translateY(-2px);
}

.btn-white {
  background: #0F172A;
  color: #fff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.25);
}

.btn-sm { padding: 8px 20px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 14px; }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-download:hover {
  border-color: #2196F3;
  color: #2196F3;
  background: rgba(33, 150, 243, 0.05);
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
  transform: translateY(-1px);
}
.btn-download svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-download:hover svg {
  transform: translateY(2px);
}

/* === Gradient Text === */
.gradient-text {
  background: linear-gradient(135deg, #2196F3, #64B5F6, #E53935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Section Tags & Headers === */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(33, 150, 243, 0.08);
  color: #1E88E5;
  border: 1px solid rgba(33, 150, 243, 0.15);
  margin-bottom: 20px;
}

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

.section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: #64748B;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === Reveal Animations === */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section-level clip reveal (Step Inc style) */
.section-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-reveal.revealed {
  clip-path: inset(0 0 0 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: 2px;
}

.nav-logo img {
  border-radius: 8px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2196F3, #64B5F6);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover {
  color: #0F172A;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #0F172A;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(33, 150, 243, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(229, 57, 53, 0.04) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(33, 150, 243, 0.06);
  top: 10%;
  left: 15%;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(229, 57, 53, 0.04);
  bottom: 20%;
  right: 10%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(100, 181, 246, 0.05);
  top: 60%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #1E88E5;
  background: rgba(33, 150, 243, 0.06);
  border: 1px solid rgba(33, 150, 243, 0.12);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2196F3;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(33, 150, 243, 0); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #94A3B8;
}

.proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #FFFFFF;
  margin-right: -8px;
}

.proof-avatar:last-child { margin-right: 0; }

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 620px;
  z-index: 1;
}

.hero-phone-wrapper {
  position: relative;
  padding: 40px;
}

.phone-mockup {
  background: linear-gradient(145deg, #1E293B, #0F172A);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden;
}

.phone-screen {
  border-radius: 18px;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: auto;
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(20, 20, 35, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: floatCard 6s ease-in-out infinite;
  z-index: 5;
}

.float-card-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.float-card-label {
  font-size: 13px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 2px;
}

.float-card-value {
  font-size: 12px;
  color: #94A3B8;
}

.float-card-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 25%;
  right: -5%;
  animation-delay: -2s;
}

.float-card-3 {
  bottom: 5%;
  left: 5%;
  animation-delay: -4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========================
   TICKER / MARQUEE
   ======================== */
.ticker-section {
  padding: 32px 0;
  background: rgba(33, 150, 243, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.ticker-track.dragging {
  cursor: grabbing;
}

.ticker-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #94A3B8;
  padding: 0 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ticker-dot {
  color: #2196F3;
  font-size: 8px;
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
}

/* tickerScroll now driven by JS for drag support */

/* ========================
   FEATURES
   ======================== */
.features {
  padding: 120px 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  padding: 36px 32px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(33, 150, 243, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(33, 150, 243, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-lg {
  grid-column: span 2;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(33, 150, 243, 0.15);
  box-shadow: 0 0 24px rgba(33, 150, 243, 0.15);
}

.feature-icon {
  font-size: 26px;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(33, 150, 243, 0.1);
  color: #90CAF9;
}

/* ========================
   HOW IT WORKS
   ======================== */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(33, 150, 243, 0.03) 0%, transparent 100%);
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.step:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(33, 150, 243, 0.2);
  box-shadow: 0 0 40px rgba(33, 150, 243, 0.05);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2196F3, #64B5F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.step-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
}

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

.step-icon-animated {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90CAF9;
  transition: all 0.3s ease;
}

.step:hover .step-icon-animated {
  background: rgba(33, 150, 243, 0.15);
  box-shadow: 0 0 30px rgba(33, 150, 243, 0.15);
  transform: scale(1.05);
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.connector-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0.05));
  border-radius: 1px;
}

/* ========================
   AUDIENCE SECTIONS
   ======================== */
.audience-section {
  padding: 120px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience-grid-reverse {
  direction: rtl;
}

.audience-grid-reverse > * {
  direction: ltr;
}

.audience-content .section-tag,
.audience-content .section-title {
  text-align: left;
}

.audience-content .section-desc {
  margin: 0 0 32px 0;
  text-align: left;
}

.audience-list {
  list-style: none;
  margin-bottom: 36px;
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #b0b0c8;
}

.audience-list li svg {
  flex-shrink: 0;
}

/* Visual Card Stack (For Residents) */
.visual-card-stack {
  position: relative;
  padding: 40px 20px;
}

.visual-card {
  position: relative;
  padding: 20px 24px;
  background: rgba(20, 20, 35, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  animation: cardSlideIn 0.6s ease both;
}

.visual-card:hover {
  border-color: rgba(33, 150, 243, 0.2);
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.08);
  transform: translateX(8px);
}

.vc-1 { animation-delay: 0.1s; }
.vc-2 { animation-delay: 0.3s; }
.vc-3 { animation-delay: 0.5s; }

@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.vc-emoji {
  font-size: 32px;
}

.vc-name {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
}

.vc-meta {
  font-size: 13px;
  color: #94A3B8;
}

.vc-action {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(33, 150, 243, 0.1);
  color: #90CAF9;
  border: 1px solid rgba(33, 150, 243, 0.15);
}

/* Dashboard Preview (For Properties) */
.dashboard-preview {
  background: rgba(15, 15, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-title {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
}

.dash-body {
  padding: 24px;
}

.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-align: center;
}

.dash-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #2196F3, #64B5F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.dash-stat-label {
  font-size: 11px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-chart {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.dash-chart-label {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 16px;
  font-weight: 500;
}

.dash-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #2196F3, rgba(33, 150, 243, 0.3));
  transition: height 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 4px;
}

/* ========================
   STATS
   ======================== */
.stats-section {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(33, 150, 243, 0.03));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 36px 28px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.stat-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(33, 150, 243, 0.2);
  transform: translateY(-4px);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #0F172A, #2196F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.1;
}

.stat-label {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.stat-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #2196F3, #64B5F6);
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials-section {
  padding: 120px 0;
}

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

.testimonial-card {
  padding: 36px 32px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(33, 150, 243, 0.12);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 16px;
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: #b0b0c8;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
}

.testimonial-role {
  font-size: 12px;
  color: #94A3B8;
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(33, 150, 243, 0.2);
  top: -20%;
  right: -10%;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(229, 57, 53, 0.15);
  bottom: -20%;
  left: -10%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 18px;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  padding: 80px 0 0;
  background: #0F172A;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #CBD5E1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-logo img {
  border-radius: 8px;
}

.footer-tagline {
  font-size: 15px;
  color: #94A3B8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(33, 150, 243, 0.1);
  border-color: rgba(33, 150, 243, 0.2);
  color: #90CAF9;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a,
.footer-address {
  display: block;
  font-size: 14px;
  color: #94A3B8;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #90CAF9;
}

.footer-address {
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: #94A3B8;
}

.footer-portals {
  display: flex;
  gap: 20px;
}

.footer-portals a {
  font-size: 13px;
  color: #94A3B8;
  transition: color 0.3s ease;
}

.footer-portals a:hover {
  color: #90CAF9;
}

/* ========================
   LEGAL PAGES (keep these)
   ======================== */
.legal-page {
  background-color: #F8FAFC;
  padding: 120px 24px 80px;
  min-height: 100vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 60px 48px;
}

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
  text-align: center;
}

.legal-container h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(33, 150, 243, 0.3);
}

.legal-container h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1E293B;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-container p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-container a {
  color: #2196F3;
  text-decoration: underline;
}

.legal-container a:hover { color: #BBDEFB; }

.legal-container ul {
  margin: 12px 0 20px 24px;
  padding: 0;
}

.legal-container ul li {
  font-size: 15px;
  color: #64748B;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-notice {
  font-weight: 600;
  color: #1E293B !important;
  background: rgba(33, 150, 243, 0.05);
  padding: 16px 20px;
  border-left: 4px solid #2196F3;
  border-radius: 4px;
  margin: 16px 0 !important;
}

.legal-effective {
  font-style: italic;
  font-weight: 600;
  color: #1E293B !important;
  margin-top: 32px !important;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 140px 0 60px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 32px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 500px;
    margin: 40px auto 0;
  }

  .audience-grid,
  .audience-grid-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }

  .audience-content .section-tag,
  .audience-content .section-title,
  .audience-content .section-desc {
    text-align: center;
  }

  .audience-content .section-desc {
    margin: 0 auto 32px;
  }

  .audience-content .btn {
    display: inline-flex;
    margin: 0 auto;
  }

  .audience-content {
    text-align: center;
  }

  .audience-list li {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .feature-card-lg {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-link {
    font-size: 24px;
    color: #0F172A;
  }

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

  .nav .btn-primary {
    display: none;
  }

  .nav .btn-download {
    padding: 6px 14px;
    font-size: 13px;
    gap: 6px;
  }

  .nav .btn-download svg {
    width: 14px;
    height: 14px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .section-container {
    padding: 0 20px;
  }

  .features,
  .how-it-works,
  .audience-section,
  .stats-section,
  .testimonials-section,
  .cta-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 28px;
  }

  .step-visual {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .float-card-1,
  .float-card-2,
  .float-card-3 {
    display: none;
  }

  .hero-phone-wrapper {
    padding: 20px;
  }

  .legal-container {
    padding: 40px 24px;
  }

  .legal-page {
    padding: 80px 16px 60px;
  }

  /* Sticky CTA mobile */
  .sticky-cta-inner {
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 10px;
  }

  .sticky-cta-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 13px;
    white-space: normal;
    flex: 1;
  }

  .sticky-cta-text span {
    display: none;
  }

  .sticky-cta-actions {
    gap: 8px;
  }

  .sticky-cta-calc {
    display: none;
  }

  /* Video demo mobile */
  .demo-section {
    padding: 80px 0;
  }

  .demo-video-container {
    border-radius: 14px;
  }

  .demo-play-btn {
    width: 60px;
    height: 60px;
  }

  .demo-play-btn svg {
    width: 22px;
    height: 22px;
  }

  .demo-video-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .demo-feature {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    justify-content: center;
  }
}

/* === Calculator / PM Conversion Section === */
.calculator-section {
  padding: 120px 0 100px;
}

/* -- ROI Calculator Card -- */
.calc-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 80px;
  transition: border-color 0.4s ease;
}

.calc-card:hover {
  border-color: rgba(33, 150, 243, 0.12);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.calc-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.04);
  align-self: stretch;
}

.calc-inputs-title,
.calc-results-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 32px;
}

.calc-field {
  margin-bottom: 28px;
}

.calc-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2196F3;
  box-shadow: 0 0 16px rgba(33, 150, 243, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: grab;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.calc-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 24px rgba(33, 150, 243, 0.7), 0 2px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.15);
}

.calc-range::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.05);
}

.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2196F3;
  box-shadow: 0 0 16px rgba(33, 150, 243, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: grab;
}

.calc-range::-moz-range-track {
  height: 6px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  border: none;
}

.calc-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  min-width: 72px;
  text-align: right;
  white-space: nowrap;
}

/* Results Grid */
.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.calc-result-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.calc-result-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(33, 150, 243, 0.12);
}

.calc-result-card.accent {
  background: rgba(33, 150, 243, 0.08);
  border-color: rgba(33, 150, 243, 0.2);
}

.calc-result-card.accent:hover {
  background: rgba(33, 150, 243, 0.12);
  border-color: rgba(33, 150, 243, 0.3);
}

.calc-result-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2196F3;
  margin-bottom: 4px;
}

.calc-result-card.accent .calc-result-value {
  color: #64B5F6;
}

.calc-result-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 2px;
}

.calc-result-sub {
  font-size: 12px;
  color: #94A3B8;
}

.calc-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* -- Case Studies / Proof -- */
.proof-header,
.resource-header {
  text-align: center;
  margin-bottom: 40px;
}

.proof-title,
.resource-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.proof-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proof-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(33, 150, 243, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.proof-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #2196F3;
  margin-bottom: 4px;
}

.proof-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 16px;
}

.proof-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 16px;
}

.proof-source {
  font-size: 12px;
  color: #94A3B8;
  font-style: italic;
}

.proof-source a {
  color: #94A3B8;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 74, 96, 0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.proof-source a:hover {
  color: #90CAF9;
  border-color: #90CAF9;
}

/* -- White Papers / Resources -- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.resource-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.resource-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(33, 150, 243, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.resource-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.resource-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 12px;
}

.resource-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 20px;
}

.resource-gate {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-form {
  display: flex;
  gap: 10px;
  animation: fadeSlideUp 0.3s ease;
}

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

.resource-email {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  color: #0F172A;
  outline: none;
  transition: border-color 0.3s ease;
}

.resource-email::placeholder {
  color: #94A3B8;
}

.resource-email:focus {
  border-color: rgba(33, 150, 243, 0.4);
}

.resource-email.error {
  border-color: #E53935;
}

.resource-success {
  font-size: 13px;
  color: #4CAF50;
  animation: fadeSlideUp 0.3s ease;
}

/* -- Calculator Responsive -- */
@media (max-width: 1024px) {
  .calc-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .calc-divider {
    width: 100%;
    height: 1px;
  }

  .calc-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .calculator-section {
    padding: 80px 0 60px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resource-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calc-results-grid {
    grid-template-columns: 1fr;
  }

  .calc-result-value {
    font-size: 28px;
  }

  .proof-stat {
    font-size: 40px;
  }

  .resource-form {
    flex-direction: column;
  }
}

/* === FAQ Section === */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(33, 150, 243, 0.2);
  background: rgba(0, 0, 0, 0.02);
}

.faq-item[open] {
  border-color: rgba(33, 150, 243, 0.2);
  background: rgba(0, 0, 0, 0.03);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #334155;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #90CAF9;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-question:hover {
  color: #0F172A;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #64748B;
}

/* === About Section === */
.about-section {
  padding: 100px 0 60px;
}

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

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748B;
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ========================
   STICKY CTA BAR
   ======================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

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

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.08);
}

.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #64748B;
  white-space: nowrap;
}

.sticky-cta-text strong {
  color: #0F172A;
  font-weight: 700;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sticky-cta-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #94A3B8;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sticky-cta-close:hover {
  color: #0F172A;
  background: rgba(0, 0, 0, 0.04);
}

/* ========================
   VIDEO / DEMO SECTION
   ======================== */
.demo-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(33, 150, 243, 0.02), transparent);
}

.demo-video-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.demo-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #0F172A;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12),
              0 4px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.demo-video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.demo-poster-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.demo-poster-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.2);
  transition: filter 0.5s ease, transform 0.8s ease;
}

.demo-video-container:hover .demo-poster-bg img {
  filter: brightness(0.4) saturate(1.3);
  transform: scale(1.03);
}

.demo-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 150, 243, 0.9);
  border-radius: 50%;
  color: #fff;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 40px rgba(33, 150, 243, 0.4);
}

.demo-play-btn svg {
  margin-left: 3px;
}

.demo-video-container:hover .demo-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 60px rgba(33, 150, 243, 0.5);
}

.demo-play-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(33, 150, 243, 0.4);
  animation: playRingPulse 2s ease-in-out infinite;
}

@keyframes playRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

.demo-poster-label {
  position: relative;
  z-index: 2;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.demo-video-embed {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.demo-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-video-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.demo-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.demo-feature:hover {
  background: rgba(33, 150, 243, 0.04);
  border-color: rgba(33, 150, 243, 0.15);
  transform: translateY(-2px);
}

.demo-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.demo-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
}

.demo-feature span {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
}

/* === About Section === */
.about-section {
  padding: 100px 0 60px;
}

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

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748B;
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* === Smooth Page Load === */
@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: pageLoad 0.6s ease;
}
