/* ==========================================================================
   nudgi Landing Page Styles
   Extracted from index.cfm
   ========================================================================== */

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

:root {
    --primary: #7266ab;
    --primary-dark: #5a5191;
    --primary-light: #8578bd;
    --primary-50: #f5f3fa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-15px); }
    70% { transform: translateY(-7px); }
    90% { transform: translateY(-3px); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(114,102,171,0.3); }
    50% { box-shadow: 0 0 40px rgba(114,102,171,0.5); }
}
@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTextReveal {
    0% { opacity: 0; transform: translateY(60px) scale(0.95); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes heroBadgePop {
    0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
    50% { transform: scale(1.1) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(114,102,171,0.3); }
    50% { box-shadow: 0 8px 30px rgba(114,102,171,0.5), 0 0 0 8px rgba(114,102,171,0.1); }
}
@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, -50px) rotate(180deg); }
    75% { transform: translate(-30px, -20px) rotate(270deg); }
}
@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Feature cards scrambled animation */
.feature-card-scramble {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card-scramble:nth-child(1) { transform: translate(-80px, 60px) rotate(-8deg) scale(0.85); }
.feature-card-scramble:nth-child(2) { transform: translate(40px, -50px) rotate(6deg) scale(0.9); }
.feature-card-scramble:nth-child(3) { transform: translate(100px, 40px) rotate(-5deg) scale(0.85); }
.feature-card-scramble:nth-child(4) { transform: translate(-60px, -40px) rotate(7deg) scale(0.88); }
.feature-card-scramble:nth-child(5) { transform: translate(70px, 70px) rotate(-6deg) scale(0.87); }
.feature-card-scramble:nth-child(6) { transform: translate(-100px, -30px) rotate(8deg) scale(0.9); }

.feature-card-scramble.settled {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
    animation: settleShake 0.4s ease-out forwards;
}
@keyframes settleShake {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-2px, 0) rotate(-0.5deg) scale(1); }
    50% { transform: translate(2px, 0) rotate(0.5deg) scale(1); }
    75% { transform: translate(-1px, 0) rotate(-0.25deg) scale(1); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}
.feature-card-scramble:nth-child(1).settled { transition-delay: 0s; animation-delay: 0s; }
.feature-card-scramble:nth-child(2).settled { transition-delay: 0s; animation-delay: 0s; }
.feature-card-scramble:nth-child(3).settled { transition-delay: 0s; animation-delay: 0s; }
.feature-card-scramble:nth-child(4).settled { transition-delay: 0s; animation-delay: 0s; }
.feature-card-scramble:nth-child(5).settled { transition-delay: 0s; animation-delay: 0s; }
.feature-card-scramble:nth-child(6).settled { transition-delay: 0s; animation-delay: 0s; }

/* Reset transform for hover after settled */
.feature-card-scramble.settled:hover {
    transform: translateY(-8px);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}
.animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-right.visible {
    opacity: 1;
    transform: translateX(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; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }

/* Blur fade in */
.animate-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 0.9s ease, filter 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
/* Bounce up with spring */
.animate-bounce-in {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.animate-bounce-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* Zoom in with subtle rotation */
.animate-zoom {
    opacity: 0;
    transform: scale(0.85) rotate(-2deg);
    transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-zoom.visible {
    opacity: 1;
    transform: scale(1) rotate(0);
}
/* Slide up elastic */
.animate-spring {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.6s ease, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.animate-spring.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Flip in */
.animate-flip {
    opacity: 0;
    transform: perspective(600px) rotateX(15deg) translateY(30px);
    transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-flip.visible {
    opacity: 1;
    transform: perspective(600px) rotateX(0) translateY(0);
}
/* Stagger children: auto-delay for direct children with .stagger-item */
.stagger-container .stagger-item:nth-child(1) { transition-delay: 0.05s; }
.stagger-container .stagger-item:nth-child(2) { transition-delay: 0.12s; }
.stagger-container .stagger-item:nth-child(3) { transition-delay: 0.19s; }
.stagger-container .stagger-item:nth-child(4) { transition-delay: 0.26s; }
.stagger-container .stagger-item:nth-child(5) { transition-delay: 0.33s; }
.stagger-container .stagger-item:nth-child(6) { transition-delay: 0.40s; }
.stagger-container .stagger-item:nth-child(7) { transition-delay: 0.47s; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0);
    backdrop-filter: blur(0);
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo { height: 36px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-current {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: var(--gray-600);
    cursor: pointer; padding: 6px 10px; border-radius: 6px;
    border: 1px solid var(--gray-200); background: white;
    transition: all 0.2s;
}
.lang-current:hover { border-color: var(--primary); color: var(--primary); }
.lang-current svg { width: 12px; height: 12px; transition: transform 0.2s; }
.lang-switcher.open .lang-current svg { transform: rotate(180deg); }
.lang-dropdown {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    background: white; border: 1px solid var(--gray-200); border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); min-width: 140px; z-index: 1001;
    overflow: hidden;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
    display: flex; align-items: center; gap: 8px; padding: 8px 14px;
    font-size: 13px; color: var(--gray-700); text-decoration: none;
    transition: background 0.15s;
}
.lang-option:hover { background: var(--gray-50); }
.lang-option.active { color: var(--primary); font-weight: 600; background: var(--primary-50); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(114,102,171,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114,102,171,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* Hero */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f7fc 0%, #fff 40%, #f0eef8 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(114,102,171,0.12) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(114,102,171,0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite 2s;
}
.hero-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
}
.hero-bg-glow.purple {
    top: 10%;
    right: 10%;
    background: rgba(114,102,171,0.2);
    animation: float 6s ease-in-out infinite;
}
.hero-bg-glow.blue {
    bottom: 20%;
    left: 5%;
    background: rgba(99,102,241,0.15);
    animation: float 8s ease-in-out infinite 1s;
}
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    animation: heroBadgePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-badge-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    animation: sparkle 2s ease-in-out infinite;
}
.hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}
.hero h1 span {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #9d8fd8 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite, heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}
.hero p {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
    opacity: 0;
}
.hero-cta .btn-primary {
    animation: ctaPulse 3s ease-in-out 2s infinite;
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 14px;
    color: var(--gray-500);
    animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
    opacity: 0;
}
.hero-trust svg { color: #10b981; margin-right: 8px; }
.hero-trust span { display: flex; align-items: center; }

/* Hero particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    animation: floatParticle 15s ease-in-out infinite;
}
.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; background: var(--primary); }
.hero-particle:nth-child(2) { left: 85%; top: 30%; animation-delay: -3s; background: #9d8fd8; width: 6px; height: 6px; }
.hero-particle:nth-child(3) { left: 70%; top: 70%; animation-delay: -6s; background: var(--primary-light); width: 10px; height: 10px; }
.hero-particle:nth-child(4) { left: 25%; top: 75%; animation-delay: -9s; background: #6366f1; width: 5px; height: 5px; }
.hero-particle:nth-child(5) { left: 50%; top: 15%; animation-delay: -12s; background: var(--primary); width: 7px; height: 7px; }

/* Dashboard preview */
.hero-image {
    margin-top: 64px;
    position: relative;
    z-index: 1;
    animation: heroImageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    opacity: 0;
    transform: translateY(80px) scale(0.9);
}
@keyframes heroImageReveal {
    0% { opacity: 0; transform: translateY(80px) scale(0.9) perspective(1000px) rotateX(10deg); }
    100% { opacity: 1; transform: translateY(0) scale(1) perspective(1000px) rotateX(2deg); }
}
.hero-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(114,102,171,0.2), 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(114,102,171,0.1);
    background: #fff;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}
.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateX(0) translateY(-5px);
    box-shadow: 0 40px 120px rgba(114,102,171,0.25), 0 20px 50px rgba(0,0,0,0.12);
}
.hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Floating elements */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}
.floating-card.left {
    left: 5%;
    top: 60%;
    animation-delay: 0.5s;
}
.floating-card.right {
    right: 5%;
    top: 45%;
    animation-delay: 1s;
}
.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floating-icon.green { background: #d1fae5; color: #059669; }
.floating-icon.purple { background: var(--primary-50); color: var(--primary); }
.floating-text strong { display: block; font-size: 14px; color: var(--gray-900); }
.floating-text span { font-size: 12px; color: var(--gray-500); }

/* Stats */
.stats {
    padding: 80px 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}
.stat-item {
    position: relative;
    padding: 24px 16px;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(114,102,171,0.08) 0%, rgba(99,102,241,0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}
.stat-value.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
}
.stat-label {
    font-size: 15px;
    color: var(--gray-500);
    font-weight: 500;
    transition: color 0.5s ease;
}
.stat-item:hover {
    transform: translateY(-6px);
}
.stat-item:hover::before {
    opacity: 1;
}
.stat-item:hover .stat-value {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #6366f1 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}
.stat-item:hover .stat-label {
    color: var(--gray-700);
}

/* Features */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}
.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(114,102,171,0.15);
    border-color: transparent;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 26px;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}
.feature-icon.purple { background: linear-gradient(135deg, #f3f0fa 0%, #ebe6f6 100%); color: var(--primary); }
.feature-icon.green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); color: #059669; }
.feature-icon.blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); color: #2563eb; }
.feature-icon.orange { background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%); color: #ea580c; }
.feature-icon.pink { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); color: #db2777; }
.feature-icon.cyan { background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%); color: #0891b2; }
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* How it works */
.how-it-works {
    padding: 120px 0;
    background: #fff;
}
.steps {
    max-width: 700px;
    margin: 0 auto;
}
.step {
    display: flex;
    gap: 32px;
    margin-bottom: 56px;
    position: relative;
    transition: transform 0.4s ease;
}
.step:last-child { margin-bottom: 0; }
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(114,102,171,0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.step-content {
    padding-top: 8px;
}
.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.step-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}
.step::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 64px;
    bottom: -48px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gray-200) 100%);
}
.step:last-child::after { display: none; }
.step:hover {
    transform: translateX(10px);
}
.step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(114,102,171,0.4);
}

/* Demo */
.demo {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}
.demo-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.demo-frame {
    position: relative;
    padding-bottom: calc(62.7432% + 41px);
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
}

/* Product Hunt badge in footer */
.ph-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 16px !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 500;
    color: var(--gray-400) !important;
    text-decoration: none;
    transition: all 0.3s !important;
    width: auto !important;
    height: auto !important;
}
.ph-badge:hover {
    background: rgba(255,97,84,0.15) !important;
    border-color: rgba(255,97,84,0.3);
    color: #ff6154 !important;
    padding-left: 16px !important;
    transform: translateY(-2px);
}

/* AppSumo Banner */
.appsumo-banner {
    max-width: 720px;
    margin: 0 auto 48px;
}
.appsumo-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
    border: 1px solid #fed7aa;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(251,146,60,0.08);
}
.appsumo-banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.appsumo-banner-text {
    flex: 1;
}
.appsumo-banner-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 2px;
}
.appsumo-banner-text span {
    font-size: 13px;
    color: #b45309;
}
.appsumo-banner-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.appsumo-banner-btn:hover {
    background: linear-gradient(135deg, #ea580c, #d97706);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251,146,60,0.3);
}
.appsumo-badge:hover {
    background: rgba(251,146,60,0.15) !important;
    border-color: rgba(251,146,60,0.3) !important;
    color: #fb923c !important;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    perspective: 1200px;
}
/* Pricing entrance: stacked deck → fan out */
.pricing-card.animate-on-scroll {
    opacity: 0;
    transform: translateX(0) translateY(30px) scale(0.92) rotateY(8deg);
    transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing-card.animate-on-scroll:nth-child(1) {
    transform: translateX(60px) translateY(30px) scale(0.92) rotateY(8deg);
    transition-delay: 0.15s;
}
.pricing-card.animate-on-scroll:nth-child(2) {
    transform: translateY(40px) scale(0.88);
    transition-delay: 0s;
}
.pricing-card.animate-on-scroll:nth-child(3) {
    transform: translateX(-60px) translateY(30px) scale(0.92) rotateY(-8deg);
    transition-delay: 0.25s;
}
.pricing-card.animate-on-scroll.visible:nth-child(1) {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateY(0);
}
.pricing-card.animate-on-scroll.visible:nth-child(2) {
    opacity: 1;
    transform: translateY(-8px) scale(1);
}
.pricing-card.animate-on-scroll.visible:nth-child(3) {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateY(0);
}
.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    border: 2px solid var(--gray-200);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(114,102,171,0.12);
}
.pricing-card.popular {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(114,102,171,0.2);
    z-index: 1;
}
.pricing-card.popular h3,
.pricing-card.popular .price,
.pricing-card.popular .desc,
.pricing-card.popular .price .period {
    color: #fff;
}
.pricing-card.popular .pricing-features li {
    color: rgba(255,255,255,0.9);
}
.pricing-card.popular .pricing-features svg {
    color: #86efac;
}
.pricing-card.popular .btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.pricing-card.popular .btn:hover {
    background: #f3f0ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.pricing-card.popular:hover {
    transform: translateY(-14px);
    box-shadow: 0 32px 64px rgba(114,102,171,0.25);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(114,102,171,0.3);
}
.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.pricing-card .desc {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.pricing-card .price {
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}
.pricing-card .price .currency {
    font-size: 24px;
    margin-right: 4px;
}
.pricing-card .price .period {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-500);
    margin-left: 4px;
}
.pricing-features {
    list-style: none;
    margin: 32px 0;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.pricing-features li:last-child { margin-bottom: 0; }
.pricing-features svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 3px;
}
.pricing-card .btn { width: 100%; margin-top: 8px; }

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}
.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    padding: 20px 0;
}
.testimonials-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: scroll-testimonials 50s linear infinite;
}
.testimonials-track:hover {
    animation-play-state: paused;
}
@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.testimonial-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, #fff 100%);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.06;
    line-height: 1;
    transition: opacity 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(114,102,171,0.12);
    border-color: var(--primary-50);
}
.testimonial-card:hover::before {
    opacity: 0.12;
}
.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.star-half {
    display: inline-block;
    overflow: hidden;
    width: 0.55em;
    vertical-align: top;
}
.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 15px;
}
.testimonial-role {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--primary);
}
.faq-item.active {
    box-shadow: 0 10px 30px rgba(114,102,171,0.1);
}
.faq-question {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    color: var(--gray-900);
    transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-answer {
    padding: 0 32px;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, padding 0.35s ease, opacity 0.3s ease;
    opacity: 0;
}
.faq-answer > div {
    overflow: hidden;
}
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 32px;
    opacity: 1;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-icon {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 6s ease-in-out infinite;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta h2 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}
.cta .btn-white {
    background: #fff;
    color: var(--primary);
    padding: 18px 40px;
    font-size: 17px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cta .btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.cta-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}
.cta-sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cta-sparkle:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; }
.cta-sparkle:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 1s; }
.cta-sparkle:nth-child(4) { bottom: 35%; right: 25%; animation-delay: 1.5s; }
.cta-sparkle:nth-child(5) { top: 40%; left: 30%; animation-delay: 2s; }

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--gray-900);
    color: var(--gray-400);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
.footer-brand p {
    font-size: 14px;
    margin: 20px 0 28px;
    line-height: 1.8;
}
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 14px; }
.footer a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.footer a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Mobile menu */
.mobile-menu-btn { display: none; }
.mobile-menu {
    display: none;
    padding: 0 24px 24px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gray-200);
}
.mobile-menu.open { display: block; }
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-menu-nav a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s;
}
.mobile-menu-nav a:hover { color: var(--primary); }
.mobile-menu-lang {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    flex-wrap: wrap;
}
.mobile-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}
.mobile-lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.mobile-lang-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-menu-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ==========================================================================
   Hero Stats
   ========================================================================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
    opacity: 0;
}
.hero-stat {
    text-align: center;
}
.hero-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.hero-stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 4px;
}

/* ==========================================================================
   App Screenshots Slider
   ========================================================================== */
.app-slider {
    padding: 80px 0 100px;
    background: #fff;
    overflow: hidden;
}
.app-slider .section-header {
    max-width: 800px;
}
.slider-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.slide-content {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(114,102,171,0.12), 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.slide-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(114,102,171,0.18), 0 12px 32px rgba(0,0,0,0.08);
}
.slide-content img {
    display: block;
    width: 100%;
    height: auto;
}
.slide-caption {
    padding: 16px 28px;
    background: #d5d1e5;
    border-top: none;
}
.slide-caption h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}
.slide-caption p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}
/* Splide fade edges */
.slider-wrapper {
    position: relative;
}
.slider-wrapper::before,
.slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 40px;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
}
.slider-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
}
/* Splide custom arrows - centered above slider */
.splide {
    position: relative;
    padding-top: 56px;
}
.splide__arrows {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}
.splide__arrow {
    position: static;
    background: #fff;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s;
    cursor: pointer;
}
.splide__arrow--prev svg {
    transform: scaleX(-1);
}
.splide__arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(114,102,171,0.3);
}
.splide__arrow svg {
    fill: var(--gray-500);
    width: 18px;
    height: 18px;
}
.splide__arrow:hover svg {
    fill: #fff;
}
.splide__pagination {
    bottom: -32px;
    gap: 6px;
}
.splide__pagination__page {
    background: var(--gray-300);
    width: 28px;
    height: 4px;
    border-radius: 100px;
    margin: 0;
    transition: all 0.4s ease;
    opacity: 1;
}
.splide__pagination__page.is-active {
    background: var(--primary);
    width: 48px;
    transform: none;
}

/* ==========================================================================
   Escalation Section
   ========================================================================== */
.escalation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f3fa 0%, #ebe6f6 50%, #f5f3fa 100%);
    position: relative;
    overflow: hidden;
}
.escalation-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,102,171,0.08) 0%, transparent 70%);
    animation: float 12s ease-in-out infinite;
}
.escalation-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,102,171,0.06) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite 3s;
}
.escalation-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
    margin-bottom: 40px;
}
.esc-step {
    flex: 1;
    max-width: 220px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.esc-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(114,102,171,0.12);
    border-color: var(--primary);
}
.esc-level {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}
.esc-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.esc-timing {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.esc-tone {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.tone-friendly { background: #d1fae5; color: #059669; }
.tone-firm { background: #fef3c7; color: #d97706; }
.tone-urgent { background: #fee2e2; color: #dc2626; }
.tone-legal { background: #fce7f3; color: #be185d; }
.esc-arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: var(--primary);
    flex-shrink: 0;
}
.esc-footer {
    text-align: center;
}
.esc-stop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #d1fae5;
    color: #059669;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.esc-stop svg { color: #059669; }
.esc-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
    font-style: italic;
}

/* ==========================================================================
   Import IA Section
   ========================================================================== */
.import-ia-section {
    padding: 100px 0;
    background: #fff;
}
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.badge-blue { background: rgba(37,99,235,0.1); color: #2563eb; }
.ia-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.ia-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 20px;
}
.ia-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    transition: transform 0.3s ease;
}
.ia-step:hover .ia-step-icon { transform: scale(1.15); }
.ia-step-icon.purple { background: linear-gradient(135deg, #f3f0fa 0%, #ebe6f6 100%); color: var(--primary); }
.ia-step-icon.green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); color: #059669; }
.ia-step-icon.blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); color: #2563eb; }
.ia-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.ia-step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}
.ia-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 24px;
    color: var(--gray-300);
    flex-shrink: 0;
}
.ia-argument {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 28px;
    background: var(--primary-50);
    border-radius: 12px;
    font-size: 15px;
    color: var(--gray-700);
    border-left: 4px solid var(--primary);
}

/* ==========================================================================
   Deliverability Section
   ========================================================================== */
.deliverability-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0eef8 0%, #e8e3f3 50%, #f0eef8 100%);
    position: relative;
    overflow: hidden;
}
.deliverability-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,102,171,0.07) 0%, transparent 70%);
    transform: translateY(-50%);
    animation: float 14s ease-in-out infinite 2s;
}
.deliverability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 32px;
}
.del-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}
.del-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(114,102,171,0.1);
    border-color: var(--primary);
}
.del-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.del-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.del-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}
.del-stat {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    padding: 16px 24px;
    background: #d1fae5;
    border-radius: 100px;
    display: inline-block;
    margin: 0 auto;
    display: block;
    max-width: 400px;
    margin: 0 auto;
}

/* ==========================================================================
   Imports Multi-formats Section
   ========================================================================== */
.imports-section {
    padding: 100px 0;
    background: #fff;
}
.imports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.import-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.import-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(114,102,171,0.12);
    border-color: var(--primary);
}
.import-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}
.import-icon.purple { background: linear-gradient(135deg, #f3f0fa 0%, #ebe6f6 100%); color: var(--primary); }
.import-icon.green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); color: #059669; }
.import-icon.blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); color: #2563eb; }
.import-icon.orange { background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%); color: #ea580c; }
.import-icon.pink { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); color: #db2777; }
.import-icon.cyan { background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%); color: #0891b2; }
.import-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.import-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}
.imports-fallback {
    text-align: center;
    font-size: 15px;
    color: var(--gray-500);
    font-style: italic;
}

/* ==========================================================================
   Automation Section
   ========================================================================== */
.automation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f3fa 0%, #ebe6f6 50%, #f5f3fa 100%);
    position: relative;
    overflow: hidden;
}
.automation-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,102,171,0.06) 0%, transparent 60%);
    transform: translateX(-50%);
    animation: float 16s ease-in-out infinite;
}
.auto-timeline {
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
}
.auto-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gray-200) 100%);
}
.auto-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    position: relative;
}
.auto-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(114,102,171,0.3);
}
.auto-step-content {
    flex: 1;
}
.auto-step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}
.auto-step-content p {
    font-size: 14px;
    color: var(--gray-500);
}
.auto-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(16,185,129,0.1);
    color: #059669;
    flex-shrink: 0;
}
.auto-badge.badge-config {
    background: rgba(37,99,235,0.1);
    color: #2563eb;
}
.auto-tagline {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    padding: 20px 0;
}

/* ==========================================================================
   PDF Storage Section
   ========================================================================== */
.pdf-storage-section {
    padding: 100px 0;
    background: #fff;
}
.pdf-pain-point {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px;
    padding: 16px 24px;
    background: #fef3c7;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #92400e;
    font-style: italic;
}
.pdf-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pdf-benefit {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.pdf-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(114,102,171,0.1);
    border-color: var(--primary);
}
.pdf-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}
.pdf-benefit-icon.purple { background: linear-gradient(135deg, #f3f0fa 0%, #ebe6f6 100%); color: var(--primary); }
.pdf-benefit-icon.green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); color: #059669; }
.pdf-benefit-icon.blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); color: #2563eb; }
.pdf-benefit-icon.orange { background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%); color: #ea580c; }
.pdf-benefit h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.pdf-benefit p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0eef8 0%, #e8e3f3 50%, #f0eef8 100%);
    position: relative;
    overflow: hidden;
}
.comparison-section::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,102,171,0.08) 0%, transparent 70%);
    animation: float 11s ease-in-out infinite 1s;
}
.comparison-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.comparison-table th {
    text-align: left;
    padding: 16px 20px;
    font-weight: 700;
    color: var(--gray-900);
    background: var(--gray-50);
    border-bottom: 2px solid var(--primary);
    white-space: nowrap;
}
.comparison-table th:first-child { border-radius: 12px 0 0 0; }
.comparison-table th:last-child { border-radius: 0 12px 0 0; }
.comparison-table th.col-nudgi {
    background: linear-gradient(135deg, var(--primary-50) 0%, #ebe6f6 100%);
    color: var(--primary);
}
.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}
.comparison-table td:first-child {
    font-weight: 600;
    color: var(--gray-800);
}
.comparison-table td.col-nudgi {
    background: rgba(114,102,171,0.04);
}
.comparison-table td.col-nudgi.check {
    color: #059669;
    font-weight: 700;
}
.comparison-table td.cross {
    color: var(--gray-300);
}
.comparison-table td.partial {
    color: #d97706;
}
.comparison-table tr:hover td {
    background-color: var(--gray-50);
}
.comparison-table tr:hover td.col-nudgi {
    background-color: rgba(114,102,171,0.08);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav { display: none; }
    .mobile-menu-btn {
        display: flex;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--gray-600);
    }
    .header-cta .lang-switcher { display: none; }
    .header-cta .btn-outline { display: none; }
    .header-cta { gap: 8px; }
    .header-inner { height: 60px; }
    .logo { height: 30px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .testimonial-card { min-width: 300px; max-width: 300px; padding: 28px; }
    .pricing-card.popular { transform: none; box-shadow: 0 16px 32px rgba(114,102,171,0.15); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-card { display: none; }
    .imports-grid { grid-template-columns: repeat(2, 1fr); }
    .pdf-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .demo { padding: 80px 0; }
    .demo-frame { border-radius: 12px; }
    .hero { min-height: auto; padding: 80px 0 40px; }
    .hero h1 { font-size: 36px; margin-bottom: 16px; }
    .hero h1 span { font-size: 34px; }
    .hero p { font-size: 16px; margin-bottom: 28px; line-height: 1.6; }
    .hero p br { display: none; }
    .hero-cta { flex-direction: column; margin-bottom: 24px; align-items: center; }
    .hero-cta .btn-lg { padding: 12px 28px; font-size: 15px; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .hero-particles { display: none; }
    .hero-bg-glow { width: 250px; height: 250px; opacity: 0.3; }
    .hero::before, .hero::after { display: none; }
    .hero-badge { font-size: 13px; padding: 6px 14px; margin-bottom: 16px; }
    .section-header h2 { font-size: 32px; }
    .cta h2 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .appsumo-banner-inner { flex-direction: column; text-align: center; }
    .appsumo-banner-btn { width: 100%; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .stat-value { font-size: 36px; }
    .grecaptcha-badge { visibility: hidden; }
    /* Hero stats mobile */
    .hero-stats { flex-direction: row; gap: 24px; flex-wrap: wrap; justify-content: center; }
    .hero-stat-value { font-size: 28px; }
    .hero-stat-label { font-size: 12px; }
    /* Escalation mobile - vertical layout */
    .escalation-flow { flex-direction: column; align-items: center; gap: 0; }
    .esc-step { max-width: 100%; width: 100%; }
    .esc-arrow { transform: rotate(90deg); padding: 8px 0; }
    /* Import IA mobile */
    .ia-steps { flex-direction: column; align-items: center; gap: 16px; }
    .ia-step { max-width: 100%; }
    .ia-step-arrow { transform: rotate(90deg); padding: 0; }
    /* Deliverability mobile */
    .deliverability-grid { grid-template-columns: 1fr; }
    /* Imports mobile */
    .imports-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }
    /* Automation mobile */
    .auto-timeline { max-width: 100%; }
    /* PDF benefits mobile */
    .pdf-benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    /* Comparison mobile */
    .comparison-wrapper { margin: 0 -24px; padding: 0 24px; }
    .comparison-table { font-size: 13px; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
    /* Sections padding mobile */
    .escalation-section, .import-ia-section, .deliverability-section,
    .imports-section, .automation-section, .pdf-storage-section,
    .comparison-section { padding: 60px 0; }
    .app-slider { padding: 40px 0 60px; }
}
@media (max-width: 480px) {
    .hero { padding: 72px 0 32px; }
    .hero h1 { font-size: 30px; margin-bottom: 12px; }
    .hero h1 span { font-size: 28px; }
    .hero p { font-size: 15px; margin-bottom: 24px; }
    .hero-content { padding: 0 8px; }
    .hero-cta .btn-primary, .hero-cta .btn-secondary, .hero-cta .btn-outline { width: 100%; justify-content: center; }
    .section-header h2 { font-size: 26px; }
    .cta h2 { font-size: 26px; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .hero-stat-value { font-size: 24px; }
    .splide__arrow { width: 36px; height: 36px; }
    .splide__arrow svg { width: 16px; height: 16px; }
    .splide { padding-top: 48px; }
    .slider-wrapper::before, .slider-wrapper::after { width: 40px; }
    .slide-caption { padding: 14px 18px; }
    .slide-caption h4 { font-size: 15px; }
    .slide-caption p { font-size: 12px; }
    .esc-name { font-size: 15px; }
    .esc-timing { font-size: 12px; }
    .auto-badge { display: none; }
    .comparison-table { font-size: 12px; min-width: 600px; }
}
