/* ================================
   AUBITY - Modern Landing Page 2025
   Ultra Visual Design with Glassmorphism
   ================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    --primary-300: #a5b4fc;
    --primary-400: #818cf8;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --primary-800: #3730a3;
    --primary-900: #312e81;

    /* Accent Colors */
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-cyan: #22d3ee;
    --accent-emerald: #10b981;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gray-950: #020617;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    --gradient-hero: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f172a 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --gradient-border: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));

    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
    --shadow-card: 0 4px 24px -1px rgba(0, 0, 0, 0.1), 0 2px 8px -2px rgba(0, 0, 0, 0.1);
    --shadow-card-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--gray-600);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Highlight Text */
.highlight {
    position: relative;
    color: var(--primary-500);
    display: inline;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    z-index: -1;
    border-radius: 4px;
}

.highlight-light {
    color: var(--accent-cyan);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

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

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.btn-ghost:hover {
    border-color: var(--primary-500);
    color: var(--primary-500);
}

/* Ghost button for dark backgrounds */
.btn-ghost.light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost.light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.btn-nav svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-nav:hover svg {
    transform: translateX(4px);
}

.play-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: 50%;
    color: var(--primary-600);
}

.play-icon svg {
    width: 16px;
    height: 16px;
}

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-50);
    color: var(--primary-600);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 1px solid var(--primary-100);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.logo-mark {
    width: 40px;
    height: 40px;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-600);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.btn-mobile-cta {
    margin-top: 20px;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-500), transparent);
    top: -200px;
    right: -100px;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-purple), transparent);
    bottom: -100px;
    left: -100px;
    animation: float-orb 15s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-cyan), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb 25s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 3px solid var(--gray-900);
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid var(--gray-900);
    margin-left: -12px;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.proof-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.proof-text strong {
    color: var(--white);
}

/* Hero Visual - Dashboard Preview */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 0;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-dots span:first-child {
    background: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-dots span:nth-child(3) {
    background: #28ca41;
}

.dashboard-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
}

.dashboard-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auto-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.auto-card.active {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.auto-icon {
    font-size: 1.5rem;
}

.auto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auto-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.auto-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-500);
}

.auto-status.running .status-dot {
    background: var(--accent-emerald);
    animation: pulse-dot 1.5s infinite;
}

.auto-status.success .status-dot {
    background: var(--accent-emerald);
}

.auto-badge {
    padding: 4px 10px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
}

.dashboard-stats {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-mini {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.stat-mini .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.stat-mini .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    animation: float 4s ease-in-out infinite;
}

.floating-icon {
    font-size: 1.25rem;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 2s;
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ================================
   LOGOS SECTION
   ================================ */
.logos-section {
    padding: 40px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.logos-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-slider {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
    border: 1px solid var(--gray-200);
}

.logo-icon {
    font-size: 1.25rem;
}

.logo-icon-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* ================================
   PROBLEM SECTION
   ================================ */
.problem-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.problem-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.problem-visual {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Problem Visual - Chart */
.problem-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    width: 20px;
    height: var(--height);
    background: linear-gradient(to top, var(--primary-200), var(--primary-400));
    border-radius: 4px 4px 0 0;
    animation: bar-grow 2s ease-out infinite;
}

.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes bar-grow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.8); }
}

/* Problem Visual - Emails */
.problem-emails {
    display: flex;
    align-items: center;
    gap: -10px;
    position: relative;
}

.email-icon {
    width: 32px;
    height: 32px;
    animation: email-stack 3s ease-in-out infinite;
}

.email-icon svg {
    width: 100%;
    height: 100%;
}

.email-icon:nth-child(2) {
    animation-delay: 0.5s;
    margin-left: 6px;
}

.email-icon:nth-child(3) {
    animation-delay: 1s;
    margin-left: 6px;
}

.email-count {
    margin-left: 8px;
    padding: 4px 10px;
    background: var(--accent-pink);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

@keyframes email-stack {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
}

/* Problem Visual - Calendar */
.problem-calendar {
    text-align: center;
}

.cal-header {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.cal-date {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 auto 8px;
}

.cal-date.urgent {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    animation: pulse-urgent 2s infinite;
}

@keyframes pulse-urgent {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(236, 72, 153, 0); }
}

.cal-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-pink);
}

/* Problem Visual - Copy */
.problem-copy {
    display: flex;
    align-items: center;
    gap: 16px;
}

.copy-line {
    width: 60px;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
}

.copy-line.short {
    width: 40px;
    margin-top: 8px;
}

.copy-arrow {
    font-size: 1.5rem;
    color: var(--primary-500);
    animation: arrow-move 1.5s ease-in-out infinite;
}

@keyframes arrow-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.problem-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
}

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.problem-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.problem-cost {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.cost-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.cost-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-pink);
}

/* Problem Total */
.problem-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.total-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.total-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-pink);
}

.total-text h3 {
    color: var(--white);
    margin-bottom: 4px;
}

.total-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.total-text strong {
    color: var(--white);
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.service-card-large {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.service-card-large:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-card-hover);
}

.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.service-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.gradient-1 { background: var(--gradient-primary); }
.gradient-2 { background: linear-gradient(135deg, var(--accent-emerald), #059669); }
.gradient-3 { background: linear-gradient(135deg, var(--accent-pink), #be185d); }
.gradient-4 { background: linear-gradient(135deg, var(--accent-cyan), #0891b2); }
.gradient-5 { background: linear-gradient(135deg, #f59e0b, #d97706); }

.service-badge-new {
    padding: 6px 12px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card-large > p {
    font-size: 1rem;
    margin-bottom: 24px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--accent-emerald);
}

.service-result {
    padding: 20px;
    background: var(--primary-50);
    border-radius: var(--radius);
    border: 1px solid var(--primary-100);
}

.result-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.metric-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-600);
}

.metric-label {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Services Grid Small */
.services-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.service-card .service-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.service-card .service-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.stat-icon {
    font-size: 1.1rem;
}

/* Services CTA */
.services-cta {
    margin-top: 40px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    background: var(--white);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-xl);
}

.cta-card h3 {
    margin-bottom: 4px;
}

.cta-card p {
    font-size: 0.95rem;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process-section {
    padding: var(--section-padding);
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-200), var(--primary-500), var(--primary-200));
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: relative;
    z-index: 1;
}

.marker-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-300);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.step-content {
    flex: 1;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.step-content:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-card);
}

.step-time {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.step-includes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.step-includes span {
    font-size: 0.85rem;
    color: var(--accent-emerald);
    font-weight: 500;
}

/* ================================
   RESULTS SECTION
   ================================ */
.results-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

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

.result-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.result-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.result-avatar {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
}

.result-company h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.result-company span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.result-quote {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--primary-300);
    line-height: 1.7;
}

.result-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-item .metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-600);
}

.metric-item .metric-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* ================================
   COMPARISON SECTION
   ================================ */
.comparison-section {
    padding: 80px 0;
    background: var(--white);
}

.comparison-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.comparison-side {
    padding: 40px;
}

.comparison-side.before {
    background: var(--gray-50);
}

.comparison-side.after {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

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

.comparison-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-icon svg {
    width: 32px;
    height: 32px;
}

.comparison-side.before .comparison-icon svg {
    stroke: var(--accent-pink);
}

.comparison-side.after .comparison-icon svg {
    stroke: var(--accent-emerald);
}

.comparison-header h3 {
    font-size: 1.25rem;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.comparison-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-side.before .comparison-list svg {
    stroke: var(--accent-pink);
}

.comparison-side.after .comparison-list svg {
    stroke: var(--accent-emerald);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
}

.comparison-divider span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50%;
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-300);
}

.faq-item.active {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-600);
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background: var(--gray-400);
    border-radius: 2px;
    transition: var(--transition);
}

.faq-icon span:first-child {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon span:last-child {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon span {
    background: var(--primary-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ================================
   FINAL CTA SECTION
   ================================ */
.final-cta-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--gradient-hero);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.cta-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-500);
    opacity: 0.2;
    top: -200px;
    right: -100px;
}

.cta-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    opacity: 0.2;
    bottom: -150px;
    left: -100px;
}

.cta-section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.cta-section-title .section-title {
    color: var(--white);
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cta-text {
    padding-top: 20px;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-text > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.check-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-emerald);
    flex-shrink: 0;
}

/* Calendar Embed */
.cta-calendar {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    min-height: 720px;
}

.calendar-header {
    padding: 28px 28px 20px;
    text-align: center;
}

.calendar-header h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.calendar-header p {
    font-size: 0.9rem;
}

.calendar-embed {
    padding: 0 20px;
}

.calendar-embed iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.calendar-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    border-top: 1px solid var(--gray-100);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-400);
}

/* ================================
   STICKY CTA MOBILE
   ================================ */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.sticky-cta-mobile .btn {
    width: 100%;
    padding: 16px;
}

/* ================================
   WHATSAPP BUTTON (Desktop only)
   ================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 997;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ================================
   SCROLL TO TOP BUTTON
   ================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 108px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

.scroll-top-btn:hover {
    background: var(--gray-50);
    border-color: var(--primary-300);
    color: var(--primary-600);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--gray-900);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ================================
   ANIMATIONS
   ================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-visual {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

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

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .services-grid-small {
        grid-template-columns: 1fr 1fr;
    }

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

    .comparison-card {
        grid-template-columns: 1fr;
    }

    .comparison-divider {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--gray-200);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px;
    }

    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-checklist {
        align-items: center;
    }
}

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

    .nav-links,
    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    h1 {
        font-size: 2rem;
    }

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

    .hero-proof {
        flex-direction: column;
        gap: 12px;
    }

    .problem-total {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .total-content {
        flex-direction: column;
    }

    .services-grid-small {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .step-marker {
        margin-bottom: 16px;
    }

    .step-content {
        width: 100%;
    }

    .step-includes {
        justify-content: center;
    }

    .timeline-line {
        display: none;
    }

    .result-metrics {
        flex-wrap: wrap;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

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

    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .comparison-side {
        padding: 28px 20px;
    }

    .sticky-cta-mobile {
        display: block;
    }

    /* Hide WhatsApp button on mobile */
    .whatsapp-btn {
        display: none;
    }

    /* Hide checklist on mobile */
    .hide-mobile {
        display: none;
    }

    /* Adjust scroll-top button position on mobile (no WhatsApp) */
    .scroll-top-btn {
        right: 20px;
        bottom: 106px;
        width: 44px;
        height: 44px;
    }

    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }

    .final-cta-section {
        padding-bottom: 140px;
    }

    .calendar-embed iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .problem-card {
        padding: 24px;
    }

    .problem-visual {
        height: 80px;
    }

    .service-card-large {
        padding: 28px;
    }

    .step-content {
        padding: 20px;
    }

    .result-card {
        padding: 24px;
    }

    .cta-calendar {
        margin: 0 -16px;
        border-radius: var(--radius-lg);
    }

    .calendar-embed iframe {
        height: 580px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 16px 18px;
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .logos-track {
        gap: 20px;
    }

    .logo-item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* ================================
   DEMO MODAL
   ================================ */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.demo-modal.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.demo-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s ease;
}

.demo-modal.active .demo-modal-content {
    transform: translateY(0) scale(1);
}

.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.demo-modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.demo-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-600);
}

/* Demo Slides */
.demo-slide {
    display: none;
    padding: 32px;
}

.demo-slide.active {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.demo-header {
    text-align: center;
    margin-bottom: 24px;
}

.demo-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-100);
    color: var(--primary-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.demo-header h3 {
    font-size: 1.4rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.demo-subtitle {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Mobile navigation - hidden on desktop */
.demo-mobile-nav {
    display: none;
}

.demo-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin: 20px 0;
    color: var(--white);
}

.demo-metric {
    font-size: 1.5rem;
    font-weight: 800;
}

.demo-result span:last-child {
    font-size: 0.95rem;
}

.demo-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.demo-actions .btn {
    flex: 1;
}

/* ================================
   SIMULATION STYLES
   ================================ */
.demo-simulation {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    min-height: 280px;
}

/* Inbox Simulation */
.sim-inbox, .sim-result {
    flex: 1;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.sim-inbox-header, .sim-result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.sim-inbox-header svg, .sim-result-header svg {
    width: 20px;
    height: 20px;
}

.sim-email {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    background: var(--white);
    opacity: 0;
    transform: translateX(-20px);
    animation: emailSlide 0.5s ease forwards;
}

.sim-email-1 { animation-delay: 0.3s; }
.sim-email-2 { animation-delay: 0.6s; }
.sim-email-3 { animation-delay: 0.9s; }

@keyframes emailSlide {
    to { opacity: 1; transform: translateX(0); }
}

.sim-email-icon {
    font-size: 1.2rem;
}

.sim-email-content {
    flex: 1;
}

.sim-email-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.sim-email-content span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.sim-processing {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
    animation-delay: 1.5s;
}

.sim-email-2 .sim-processing { animation-delay: 1.8s; }
.sim-email-3 .sim-processing { animation-delay: 2.1s; }

.sim-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-100);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Arrow Simulation */
.sim-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
}

.sim-arrow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-500));
    animation: pulse 2s ease infinite;
}

.sim-arrow-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-500);
    animation: arrowPulse 1s ease infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.sim-ai-badge {
    padding: 6px 12px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    animation: glow 2s ease infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.6); }
}

/* Folder Results */
.sim-folder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    opacity: 0;
    transform: translateX(20px);
    animation: folderSlide 0.5s ease forwards;
}

.sim-folder-1 { animation-delay: 2s; }
.sim-folder-2 { animation-delay: 2.3s; }
.sim-folder-3 { animation-delay: 2.6s; }

@keyframes folderSlide {
    to { opacity: 1; transform: translateX(0); }
}

.sim-folder-icon {
    font-size: 1.2rem;
}

.sim-folder-content {
    flex: 1;
}

.sim-folder-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.sim-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: var(--radius-full);
}

.sim-check {
    width: 24px;
    height: 24px;
    background: var(--accent-emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    animation: checkPop 0.3s ease forwards;
}

.sim-folder-1 .sim-check { animation-delay: 2.2s; }
.sim-folder-2 .sim-check { animation-delay: 2.5s; }
.sim-folder-3 .sim-check { animation-delay: 2.8s; }

@keyframes checkPop {
    to { opacity: 1; transform: scale(1); }
}

/* Phone Simulation */
.sim-phone {
    width: 260px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px;
    flex-shrink: 0;
}

.sim-phone-header {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.sim-phone-notch {
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
}

.sim-whatsapp {
    background: #e5ddd5;
    border-radius: 22px;
    overflow: hidden;
    height: 320px;
}

.sim-wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #075e54;
    color: white;
}

.sim-wa-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.sim-wa-info strong {
    display: block;
    font-size: 0.9rem;
}

.sim-wa-info span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.sim-wa-chat {
    padding: 12px;
    height: calc(100% - 56px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sim-wa-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    animation: msgPop 0.4s ease forwards;
}

.sim-wa-msg p {
    margin-bottom: 4px;
}

.sim-wa-msg p:last-of-type {
    margin-bottom: 0;
}

.sim-wa-out {
    background: #dcf8c6;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.sim-wa-in {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.sim-wa-time {
    display: block;
    font-size: 0.65rem;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.sim-wa-msg-1 { animation-delay: 0.5s; }
.sim-wa-msg-2 { animation-delay: 1.2s; }
.sim-wa-msg-3 { animation-delay: 1.9s; }
.sim-wa-msg-4 { animation-delay: 2.5s; }

@keyframes msgPop {
    to { opacity: 1; transform: translateY(0); }
}

/* Typing indicator */
.sim-typing {
    display: flex;
    gap: 4px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    width: fit-content;
    opacity: 0;
    animation: typingShow 0.3s ease forwards 0.9s, typingHide 0.3s ease forwards 1.1s;
}

.sim-typing span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typingDot 1s ease infinite;
}

.sim-typing span:nth-child(2) { animation-delay: 0.2s; }
.sim-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes typingShow {
    to { opacity: 1; }
}

@keyframes typingHide {
    to { opacity: 0; display: none; }
}

/* Stats Side */
.sim-stats-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sim-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateX(20px);
    animation: statSlide 0.5s ease forwards;
}

.sim-stat-1 { animation-delay: 0.8s; }
.sim-stat-2 { animation-delay: 1.1s; }
.sim-stat-3 { animation-delay: 1.4s; }

@keyframes statSlide {
    to { opacity: 1; transform: translateX(0); }
}

.sim-stat-icon {
    font-size: 1.5rem;
}

.sim-stat-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.sim-stat-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Calendar Simulation */
.sim-calendar {
    width: 240px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 16px;
    flex-shrink: 0;
}

.sim-cal-header {
    text-align: center;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.sim-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    font-size: 0.75rem;
}

.sim-cal-day {
    text-align: center;
    color: var(--gray-500);
    font-weight: 600;
    padding: 4px;
}

.sim-cal-num {
    text-align: center;
    padding: 6px 4px;
    border-radius: 4px;
    color: var(--gray-700);
}

.sim-cal-alert {
    background: var(--accent-pink);
    color: white;
    font-weight: 700;
    animation: alertPulse 2s ease infinite;
}

.sim-cal-alert-2 {
    background: var(--accent-amber);
    color: white;
    font-weight: 700;
}

@keyframes alertPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Alerts */
.sim-alerts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sim-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateY(10px);
    animation: alertSlide 0.5s ease forwards;
}

.sim-alert-1 { animation-delay: 0.5s; }
.sim-alert-2 { animation-delay: 0.8s; }
.sim-alert-3 { animation-delay: 1.1s; }

@keyframes alertSlide {
    to { opacity: 1; transform: translateY(0); }
}

.sim-alert-icon {
    font-size: 1.3rem;
}

.sim-alert-content {
    flex: 1;
}

.sim-alert-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.sim-alert-content span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.sim-alert-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
}

.sim-alert-badge.urgent {
    background: var(--accent-pink);
    color: white;
}

.sim-alert-badge.done {
    background: var(--accent-emerald);
    color: white;
}

/* Report Simulation */
.sim-report {
    gap: 24px;
}

.sim-report-gen {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sim-report-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
}

.sim-report-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.sim-report-progress {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.sim-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    animation: progressFill 2.5s ease forwards 0.5s;
}

@keyframes progressFill {
    to { width: 100%; }
}

.sim-report-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sim-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-600);
    opacity: 0;
    animation: stepShow 0.4s ease forwards;
}

.sim-step-1 { animation-delay: 0.8s; }
.sim-step-2 { animation-delay: 1.4s; }
.sim-step-3 { animation-delay: 2s; }

@keyframes stepShow {
    to { opacity: 1; }
}

.sim-step-check {
    width: 20px;
    height: 20px;
    background: var(--accent-emerald);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: scale(0);
    animation: checkPop 0.3s ease forwards;
}

.sim-step-1 .sim-step-check { animation-delay: 1s; }
.sim-step-2 .sim-step-check { animation-delay: 1.6s; }
.sim-step-3 .sim-step-check { animation-delay: 2.2s; }

/* PDF Preview */
.sim-report-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sim-pdf {
    width: 100%;
    max-width: 220px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: pdfAppear 0.5s ease forwards 2.5s;
}

@keyframes pdfAppear {
    to { opacity: 1; transform: translateY(0); }
}

.sim-pdf-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.sim-pdf-logo {
    font-size: 1.3rem;
}

.sim-pdf-header strong {
    display: block;
    font-size: 0.85rem;
}

.sim-pdf-header span {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.sim-pdf-content {
    padding: 12px;
}

.sim-pdf-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.8rem;
}

.sim-pdf-row span {
    color: var(--gray-600);
}

.sim-pdf-row strong {
    color: var(--gray-800);
}

.sim-pdf-total {
    border-bottom: none;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 2px solid var(--gray-200);
}

.sim-pdf-total strong {
    color: var(--accent-emerald);
    font-size: 1rem;
}

.sim-pdf-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    height: 80px;
    background: var(--gray-50);
}

.sim-bar {
    width: 30px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: barGrow 0.5s ease forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.sim-bar:nth-child(1) { animation-delay: 2.7s; }
.sim-bar:nth-child(2) { animation-delay: 2.9s; }
.sim-bar:nth-child(3) { animation-delay: 3.1s; }
.sim-bar:nth-child(4) { animation-delay: 3.3s; }

@keyframes barGrow {
    to { transform: scaleY(1); }
}

/* Demo Modal Responsive */
@media (max-width: 768px) {
    .demo-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    /* Hide the original close button on mobile */
    .demo-modal-close {
        display: none;
    }

    .demo-slide {
        padding: 16px;
    }

    /* Mobile navigation bar at top */
    .demo-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--gray-200);
    }

    .demo-badge {
        order: 1;
        margin-bottom: 0;
    }

    .demo-header h3 {
        order: 3;
        width: 100%;
        font-size: 1.1rem;
        text-align: left;
        margin-top: 8px;
    }

    .demo-subtitle {
        display: none;
    }

    /* Mobile nav buttons in header */
    .demo-mobile-nav {
        display: flex;
        gap: 8px;
        order: 2;
    }

    .demo-mobile-nav button {
        height: 40px;
        min-width: 40px;
        border: none;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 600;
        transition: var(--transition);
    }

    .demo-mobile-nav .mobile-close,
    .demo-mobile-nav .mobile-prev {
        width: 40px;
        background: var(--gray-100);
        color: var(--gray-600);
    }

    .demo-mobile-nav .mobile-next,
    .demo-mobile-nav .mobile-cta {
        padding: 0 16px;
        background: var(--primary-500);
        color: white;
    }

    .demo-mobile-nav .mobile-next:active,
    .demo-mobile-nav .mobile-cta:active {
        background: var(--primary-600);
    }

    .demo-simulation {
        flex-direction: column;
        min-height: auto;
    }

    .sim-phone {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .sim-whatsapp {
        height: 280px;
    }

    .sim-calendar {
        width: 100%;
    }

    .sim-inbox, .sim-result {
        min-height: 140px;
    }

    .sim-arrow {
        flex-direction: row;
        padding: 8px 0;
    }

    .sim-arrow-line {
        width: 30px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-500));
    }

    .sim-arrow-icon svg {
        transform: rotate(90deg);
        width: 20px;
        height: 20px;
    }

    .sim-ai-badge {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .demo-result {
        flex-direction: column;
        gap: 4px;
        padding: 12px;
        margin: 12px 0;
    }

    .demo-metric {
        font-size: 1.2rem;
    }

    /* Hide bottom actions on mobile */
    .demo-actions {
        display: none;
    }

    .sim-stat-card {
        padding: 12px;
    }

    .sim-stat-icon {
        font-size: 1.2rem;
    }

    .sim-stat-info strong {
        font-size: 0.85rem;
    }

    .sim-stat-info span {
        font-size: 0.7rem;
    }
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {
    .navbar,
    .sticky-cta-mobile,
    .hero-bg,
    .cursor-glow {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}
