/* ============================================
   AI PERSONAL ASSISTANT - DEDICATED STYLES
   ============================================ */

:root {
    /* Colors */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8f9fc;
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #94a3b8;

    /* Accent Colors - Purple/Violet theme for Personal Assistant */
    --color-accent-primary: #8b5cf6;
    --color-accent-secondary: #7c3aed;
    --color-accent-pink: #ec4899;
    --color-accent-indigo: #6366f1;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f472b6 100%);
    --gradient-hero-glow: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3), transparent 60%);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.75rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.4);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-links a {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
}

.btn-ghost:hover {
    color: var(--color-text-primary);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    overflow: hidden;
    padding-top: 160px;
}

/* Background Effects */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.3));
    top: -20%;
    left: -15%;
    /* Moved to left */
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(244, 114, 182, 0.2));
    bottom: -20%;
    left: -20%;
    /* Moved away */
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    top: 30%;
    right: -25%;
    /* Moved away */
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-float 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: -3s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: -6s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 80%;
    animation-delay: -9s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: -12s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: translate(20px, -30px);
        opacity: 0.8;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.6s ease-out backwards;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(139, 92, 246, 0);
    }
}

.badge-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent-secondary);
}

.badge-tag {
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-accent-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease-out 0.25s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    justify-content: center;
    align-items: stretch;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-cta .btn {
    flex: 1;
    /* Make them exactly the same width so they are perfectly aligned horizontally */
    white-space: nowrap;
    /* Prevent text wrapping */
}

/* Trust Section */
.trust-section {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 3px solid white;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border: 3px solid white;
    border-radius: 50%;
    margin-left: -10px;
}

.trust-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ============================================
   HERO VISUAL (iMac)
   ============================================ */

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.visual-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imac-glow {
    display: none;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.imac-wrapper {
    position: relative;
    z-index: 1;
}

.imac-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: none;
    border: none;
    outline: none;
    box-shadow: none;
}

@keyframes imac-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Floating Notification Cards Removed */

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN (HERO)
   ============================================ */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .imac-image {
        max-width: 600px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: var(--space-2xl);
    }

    .hero-badge,
    .hero-stats {
        justify-content: center;
    }

    .trust-section {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .imac-image {
        max-width: 100%;
    }
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */

.problems-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-primary);
}

.problems-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.problems-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.problems-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(236, 72, 153, 0.1);
    color: #db2777;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.problems-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.problems-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Modern Card Design */
.problem-card {
    border-radius: 32px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    /* Slightly shorter */
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-8px);
}

/* Card Badge */
.problem-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

/* Card Title */
.problem-card .problem-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

/* Card Text */
.problem-card .problem-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    opacity: 1;
}

.highlight-text {
    font-weight: 700;
}

/* Card Image Wrapper */
.problem-image-wrapper {
    margin-top: auto;
    border-radius: 20px;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.problem-image {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    transition: var(--transition-base);
}

.problem-card:hover .problem-image {
    transform: scale(1.05);
}

/* Dark Grey Card */
.problem-card-dark {
    background: #1f2937;
    color: white;
}

.problem-card-dark .problem-badge {
    background: rgba(168, 133, 255, 0.15);
    color: #e9d5ff;
    border-color: rgba(168, 133, 255, 0.3);
}

.problem-card-dark .problem-title {
    color: white;
}

.problem-card-dark .problem-text {
    color: rgba(255, 255, 255, 0.9);
}

.problem-card-dark .highlight-text {
    color: #c084fc;
}

/* Purple Card (Theme Color) */
.problem-card-purple {
    background: linear-gradient(145deg, #7c3aed 0%, #8b5cf6 100%);
    color: white;
}

.problem-card-purple .problem-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.problem-card-purple .problem-title {
    color: white;
}

.problem-card-purple .problem-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Light Purple Card (New) */
.problem-card-light-purple {
    background: #cdacda;
    color: #1f2937;
}

.problem-card-light-purple .problem-badge {
    background: #1f2937;
    color: #ffffff;
    border-color: rgba(31, 41, 55, 0.2);
}

.problem-card-light-purple .problem-title {
    color: #1f2937;
}

.problem-card-light-purple .problem-text {
    color: #1f2937;
}

.problem-card-light-purple .highlight-text {
    color: #ffffff;
}

/* White Card */
.problem-card-white {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.problem-card-white .problem-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border-color: rgba(139, 92, 246, 0.2);
}

.problem-card-white .problem-title {
    color: #1f2937;
}

.problem-card-white .problem-text {
    color: #374151;
}

.problem-card-white .highlight-text {
    color: #7c3aed;
}

.problem-card-white .highlight {
    color: #8b5cf6;
}

/* Problems Section Responsive */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .problem-card {
        min-height: 480px;
    }
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problem-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .problem-card {
        min-height: 450px;
    }
}



/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.howit-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

.howit-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.howit-content {
    max-width: 550px;
}

.howit-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-accent-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.howit-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.howit-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.howit-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.howit-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.howit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    flex-shrink: 0;
}

.howit-icon svg {
    width: 20px;
    height: 20px;
}

.howit-features li div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.howit-features li strong {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-primary);
}

.howit-features li span {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.howit-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.howit-image {
    width: 100%;
    max-width: 700px;
    height: auto;
}

/* How It Works Responsive */
@media (max-width: 1024px) {
    .howit-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .howit-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .howit-features {
        align-items: flex-start;
        /* Make them flush left inside the list */
        max-width: fit-content;
        margin: 0 auto;
    }

    .howit-features li {
        text-align: left;
    }
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.steps-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.steps-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-accent-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.steps-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.steps-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Vertical Flow Layout */
.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Removed gap to allow connectors to handle spacing */
    position: relative;
}

.step-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-connector {
    height: 120px;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.connector-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.connector-path {
    fill: none;
    stroke-width: 2px;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 8 8;
    opacity: 0.5;
}

.step-row-left {
    grid-template-columns: 1fr 1.2fr;
}

.step-row-left .step-info {
    order: 1;
}

.step-row-left .step-visual {
    order: 2;
}

.step-row-right .step-info {
    order: 2;
}

.step-row-right .step-visual {
    order: 1;
}

/* Step Visual - The Image Container */
.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-screen {
    width: 100%;
    max-width: 520px;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.step-screen:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Purple/Pink Color Palette for Steps */
.step-screen-1 {
    background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
}

.step-screen-2 {
    background: linear-gradient(145deg, #fdf2f8 0%, #fce7f3 100%);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12);
}

.step-screen-3 {
    background: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
}

.step-screen-4 {
    background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.12);
}

.step-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
}

/* Step Info - Text Content */
.step-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.step-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.step-heading {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-top: calc(-1 * var(--space-lg));
}

.step-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

/* Steps Section Responsive */
@media (max-width: 1024px) {

    .step-row,
    .step-row-left {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .step-row-right .step-visual,
    .step-row-left .step-visual {
        order: 1;
    }

    .step-row-right .step-info,
    .step-row-left .step-info {
        order: 2;
    }

    .step-info {
        align-items: center;
    }

    .step-desc {
        max-width: 100%;
    }

    .step-num {
        font-size: 4rem;
    }

    .step-heading {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 768px) {
    .step-screen {
        padding: var(--space-lg);
    }

    .step-num {
        font-size: 3rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.faq-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-3xl);
    color: var(--color-text-primary);
}

.faq-contact-box {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-contact-box h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.faq-contact-box p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent-primary);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .faq-left {
        position: static;
        text-align: center;
    }

    .faq-contact-box {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0f172a;
    color: white;
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 280px;
}

/* Connectors added successfully */

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-col h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: white;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
}

/* ============================================
   BACKGROUND DETAILS & SHAPES (From Receptionist)
   ============================================ */

.section-bg-lights {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-details {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    color: var(--color-accent-primary);
    font-weight: 500;
    pointer-events: none;
    z-index: -1;
}

.shape-plus {
    font-size: 24px;
    font-family: monospace;
    font-weight: 900;
}

.shape-circle {
    width: 14px;
    height: 14px;
    border: 2px solid var(--color-accent-primary);
    border-radius: 50%;
}

.shape-square {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-accent-primary);
    transform: rotate(45deg);
}

.shape-1 {
    top: 15%;
    left: 8%;
    animation: float-slow 12s ease-in-out infinite;
    opacity: 0.8;
}

.shape-2 {
    top: 25%;
    right: 12%;
    animation: float-slow 15s ease-in-out infinite reverse;
    font-size: 32px;
    opacity: 0.7;
}

.shape-3 {
    top: 45%;
    left: 15%;
    animation: float-slow 18s ease-in-out infinite;
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.shape-4 {
    top: 60%;
    right: 8%;
    animation: float-slow 14s ease-in-out infinite reverse;
    opacity: 0.7;
}

.shape-5 {
    bottom: 20%;
    left: 10%;
    animation: float-slow 16s ease-in-out infinite;
    font-size: 24px;
    opacity: 0.8;
}

.shape-6 {
    bottom: 30%;
    right: 15%;
    animation: float-slow 20s ease-in-out infinite reverse;
    width: 22px;
    height: 22px;
    opacity: 0.5;
}

.shape-7 {
    top: 10%;
    left: 50%;
    animation: float-slow 22s ease-in-out infinite;
    opacity: 0.6;
}

.shape-8 {
    bottom: 15%;
    right: 30%;
    animation: float-slow 19s ease-in-out infinite reverse;
    font-size: 30px;
    opacity: 0.7;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translate(20px, -20px) rotate(10deg);
        opacity: 0.5;
    }
}

.hero,
.problems-section,
.howit-section,
.steps-section,
.faq-section {
    position: relative;
    overflow: hidden;
}

/* ============================================
   BUSINESS DEMO SECTION STYLES (Added)
   ============================================ */

#business-demo-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 40%, #1a1145 100%);
    color: #fff;
    padding: 60px 0;
}

#business-demo-section .bg-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

#business-demo-section .demo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

#business-demo-section .demo-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.08);
    top: -150px;
    right: -100px;
}

#business-demo-section .demo-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(249, 115, 22, 0.07);
    bottom: -150px;
    left: -100px;
}

#business-demo-section .demo-orb-3 {
    width: 700px;
    height: 700px;
    background: rgba(99, 102, 241, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#business-demo-section .demo-section-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

#business-demo-section .demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: #a5b4fc;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

#business-demo-section .demo-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #818cf8;
    animation: pulse-dot 2s ease-in-out infinite;
}

#business-demo-section .text-center {
    text-align: center;
}

#business-demo-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: #fff;
    opacity: 0;
    animation: fadeUp 0.7s 0.1s ease forwards;
}

#business-demo-section h1 .gradient-text {
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#business-demo-section .demo-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.6s 0.25s ease forwards;
}

#business-demo-section .glass-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s ease forwards;
}

#business-demo-section .glass-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), transparent 40%, rgba(16, 185, 129, 0.08));
    filter: blur(40px);
}

#business-demo-section .demo-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

#business-demo-section .col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

#business-demo-section .col-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#business-demo-section .col-icon.orange {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

#business-demo-section .col-icon.green {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

#business-demo-section .col-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

#business-demo-section .col-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

#business-demo-section .col-sub {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

#business-demo-section .input-block {
    width: 100%;
}

#business-demo-section .input-card {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.2), rgba(146, 64, 14, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

#business-demo-section .scenario-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(251, 191, 36, 0.9);
    font-weight: 600;
    background: rgba(249, 115, 22, 0.15);
    padding: 10px 24px;
    border-radius: 999px;
    margin: 0 auto 24px auto;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

#business-demo-section .rec-dot {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    opacity: 0;
    transition: opacity 0.3s;
}

#business-demo-section .rec-dot.active {
    opacity: 1;
}

#business-demo-section .rec-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.4);
    animation: rec-ping 1.5s ease-in-out infinite;
}

#business-demo-section .sound-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 44px;
    margin-bottom: 16px;
}

#business-demo-section .sound-wave .bar {
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(to top, #f97316, #fbbf24);
    height: 4px;
    transition: height 0.15s ease;
}

#business-demo-section .transcription-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px;
    min-height: 100px;
}

#business-demo-section .transcription-box .placeholder {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
}

#business-demo-section .transcription-text {
    font-family: 'Inter', monospace;
    font-size: 15px;
    line-height: 1.75;
    color: #ffffff;
}

#business-demo-section .transcription-text .quote {
    font-size: 22px;
    color: #cbd5e1;
}

#business-demo-section .transcription-text .correction {
    background: rgba(251, 191, 36, 0.25);
    color: #fde68a;
    border-radius: 4px;
    padding: 1px 4px;
}

#business-demo-section .transcription-text .addition {
    background: rgba(96, 165, 250, 0.25);
    color: #93c5fd;
    border-radius: 4px;
    padding: 1px 4px;
}

#business-demo-section .cursor-blink {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: #f97316;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 0.8s step-end infinite;
}

#business-demo-section .flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    min-height: 120px;
}

#business-demo-section .flow-line-top {
    width: 2px;
    border-radius: 2px;
    height: 45px;
    background: transparent;
    transition: background 0.6s ease;
    position: relative;
}

#business-demo-section .flow-line-top.active {
    background: linear-gradient(to bottom, rgba(249, 115, 22, 0.6), rgba(139, 92, 246, 0.6));
}

#business-demo-section .flow-brain {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
    transform: scale(0) rotate(-180deg);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    flex-shrink: 0;
    margin: 8px 0;
}

#business-demo-section .flow-brain.active {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

#business-demo-section .flow-line-bottom {
    width: 2px;
    border-radius: 2px;
    height: 45px;
    background: transparent;
    transition: background 0.6s ease 0.3s;
}

#business-demo-section .flow-line-bottom.active {
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0.6), rgba(16, 185, 129, 0.6));
}

#business-demo-section .flow-arrow-tip {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid transparent;
    transition: border-top-color 0.3s ease 0.6s;
}

#business-demo-section .flow-arrow-tip.active {
    border-top-color: rgba(16, 185, 129, 0.6);
}

#business-demo-section .output-block {
    width: 100%;
}

#business-demo-section .output-card {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.2), rgba(15, 118, 110, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

#business-demo-section .waiting-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 160px;
    color: #374151;
}

#business-demo-section .waiting-state svg {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    stroke: #1e293b;
}

#business-demo-section .waiting-state p {
    font-size: 14px;
    color: #475569;
}

#business-demo-section .processing-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

#business-demo-section .processing-overlay.active {
    display: flex;
}

#business-demo-section .spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-top-color: #34d399;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

#business-demo-section .processing-overlay span {
    font-size: 14px;
    color: #6ee7b7;
    font-weight: 500;
}

#business-demo-section .actions-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#business-demo-section .action-card {
    border-radius: 18px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#business-demo-section .action-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#business-demo-section .action-card.green-card {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

#business-demo-section .action-card.blue-card {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
}

#business-demo-section .action-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

#business-demo-section .action-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#business-demo-section .action-icon.green-icon {
    background: #10b981;
}

#business-demo-section .action-icon.blue-icon {
    background: #0ea5e9;
}

#business-demo-section .action-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#business-demo-section .action-label.green-label {
    color: #059669;
}

#business-demo-section .action-label.blue-label {
    color: #0284c7;
}

#business-demo-section .action-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

#business-demo-section .action-detail {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

#business-demo-section .action-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#business-demo-section .action-check.show {
    transform: scale(1);
}

#business-demo-section .action-check.green-check {
    background: #10b981;
}

#business-demo-section .action-check.blue-check {
    background: #0ea5e9;
}

#business-demo-section .action-check svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

#business-demo-section .insight-card {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#business-demo-section .insight-card.show {
    opacity: 1;
    transform: translateY(0);
}

#business-demo-section .insight-card .insight-emoji {
    font-size: 20px;
    margin-top: 2px;
}

#business-demo-section .insight-card .insight-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c4b5fd;
    margin-bottom: 4px;
}

#business-demo-section .insight-card .insight-text {
    font-size: 13px;
    color: rgba(196, 181, 253, 0.8);
    line-height: 1.6;
}

#business-demo-section .legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s 0.5s ease, transform 0.4s 0.5s ease;
}

#business-demo-section .legend.show {
    opacity: 1;
    transform: translateY(0);
}

#business-demo-section .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

#business-demo-section .legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

#business-demo-section .legend-dot.amber {
    background: rgba(251, 191, 36, 0.5);
}

#business-demo-section .legend-dot.blue {
    background: rgba(96, 165, 250, 0.5);
}

#business-demo-section .legend-dot.green {
    background: #10b981;
    border-radius: 50%;
}

#business-demo-section .legend-dot.sky {
    background: #0ea5e9;
    border-radius: 50%;
}

#business-demo-section .cta-area {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

#business-demo-section .btn-start {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 36px;
    background: linear-gradient(90deg, #f97316, #f59e0b);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.3);
    transition: transform 0.15s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

#business-demo-section .btn-start:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 50px rgba(249, 115, 22, 0.45);
}

#business-demo-section .btn-start:active {
    transform: scale(0.97);
}

#business-demo-section .btn-start .play-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

#business-demo-section .btn-start:hover .play-icon {
    background: rgba(255, 255, 255, 0.3);
}

#business-demo-section .btn-start .play-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

#business-demo-section .btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}

#business-demo-section .btn-reset:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: scale(1.04);
}

#business-demo-section .btn-reset:active {
    transform: scale(0.97);
}

#business-demo-section .btn-reset svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

#business-demo-section .status-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    color: #94a3b8;
}

#business-demo-section .status-text .hourglass {
    animation: pulse-opacity 1.5s ease-in-out infinite;
}

#business-demo-section .demo-stats-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeUp 0.8s 1s ease forwards;
}

#business-demo-section .demo-stat-item {
    text-align: center;
    padding: 0 16px;
}

#business-demo-section .demo-stat-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    background: linear-gradient(90deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#business-demo-section .demo-stat-label {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#business-demo-section .hidden {
    display: none !important;
}

/* ===== DEMO TOGGLE ===== */
#business-demo-section .demo-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.6s 0.3s ease forwards;
}

#business-demo-section .demo-toggle {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    backdrop-filter: blur(10px);
}

#business-demo-section .demo-toggle-bg {
    position: absolute;
    top: 6px;
    bottom: 6px;
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#business-demo-section .demo-toggle-bg.active-voice {
    left: 6px;
    right: 50%;
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

#business-demo-section .demo-toggle-bg.active-chat {
    left: 50%;
    right: 6px;
    background: linear-gradient(135deg, #25D366, #128C7E);
}

#business-demo-section .demo-toggle-btn {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 50%;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

@media (min-width: 640px) {
    #business-demo-section .demo-toggle-btn {
        padding: 12px 32px;
        font-size: 16px;
    }
}

#business-demo-section .demo-toggle-btn svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 640px) {
    #business-demo-section .demo-toggle-btn svg {
        width: 20px;
        height: 20px;
    }
}

#business-demo-section .demo-toggle-btn.active {
    color: #ffffff;
}

#business-demo-section .demo-toggle-btn.inactive {
    color: #64748b;
}

#business-demo-section .demo-toggle-btn.inactive:hover {
    color: #94a3b8;
}

/* ===== WHATSAPP DEMO GRID ===== */
#business-demo-section .wa-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease forwards;
}

@media (max-width: 768px) {
    #business-demo-section .wa-demo-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 40px;
    }
}

#business-demo-section .wa-demo-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Phone Labels */
#business-demo-section .wa-phone-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

#business-demo-section .wa-phone-label.urgent-label {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

#business-demo-section .wa-phone-label.medical-label {
    background: rgba(96, 165, 250, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(96, 165, 250, 0.25);
}

#business-demo-section .wa-phone-label.image-label {
    background: rgba(168, 85, 247, 0.15);
    color: #c4b5fd;
    border: 1px solid rgba(168, 85, 247, 0.25);
}

#business-demo-section .wa-phone-label.booking-label {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

/* WhatsApp Phone Frame */
#business-demo-section .chat-phone {
    width: 100%;
    max-width: 360px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#business-demo-section .wa-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #075E54;
    padding: 12px 16px;
}

#business-demo-section .wa-header>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#business-demo-section .wa-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    display: grid !important;
    place-content: center !important;
    place-items: center !important;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

#business-demo-section .wa-back svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
}

#business-demo-section .wa-contact-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

#business-demo-section .wa-online {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.2;
}

#business-demo-section .wa-body {
    background-color: #ECE5DD;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8bfb0' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#business-demo-section .wa-body.wa-body-fixed {
    height: 420px;
    overflow-y: hidden;
    justify-content: flex-start;
}

#business-demo-section .wa-date-chip {
    display: flex;
    justify-content: center;
}

#business-demo-section .wa-date-chip span {
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    color: #6b7280;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#business-demo-section .wa-msg-row {
    display: flex;
}

#business-demo-section .wa-msg-row.ai {
    justify-content: flex-start;
}

#business-demo-section .wa-msg-row.user {
    justify-content: flex-end;
}

/* Message entrance animation */
#business-demo-section .wa-msg-anim {
    opacity: 0;
    transform: translateY(16px);
    animation: waMsgIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s) forwards;
    animation-play-state: paused;
}

#business-demo-section .wa-msg-anim.running {
    animation-play-state: running;
}

@keyframes waMsgIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#business-demo-section .wa-bubble {
    max-width: 85%;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

#business-demo-section .wa-bubble.ai {
    background: #ffffff;
    border-top-left-radius: 0;
}

#business-demo-section .wa-bubble.user {
    background: #DCF8C6;
    border-top-right-radius: 0;
}

#business-demo-section .wa-sender {
    font-size: 11px;
    font-weight: 600;
    color: #075E54;
    margin-bottom: 0px;
}

#business-demo-section .wa-text {
    font-size: 13px;
    line-height: 1.6;
    color: #1f2937;
    white-space: pre-line;
    margin: 0;
}

#business-demo-section .wa-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 2px;
}

#business-demo-section .wa-time {
    font-size: 10px;
    color: #9ca3af;
}

#business-demo-section .wa-check svg {
    width: 14px;
    height: 14px;
}

#business-demo-section .wa-check.read svg {
    color: #53BDEB;
}

#business-demo-section .wa-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F0F0F0;
    padding: 8px 12px;
}

#business-demo-section .wa-input-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #ffffff;
}

#business-demo-section .wa-input-field span {
    font-size: 13px;
    color: #9ca3af;
}

#business-demo-section .wa-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: #075E54;
    display: flex;
    align-items: center;
    justify-content: center;
}

#business-demo-section .wa-send-btn svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

/* Mock Image Placeholder */
#business-demo-section .wa-mock-image {
    margin: 8px 0;
    border-radius: 8px;
    overflow: hidden;
}

#business-demo-section .wa-mock-image-inner {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 100px;
    border-radius: 8px;
}

#business-demo-section .wa-mock-image-inner svg {
    width: 32px;
    height: 32px;
    color: #94a3b8;
}

#business-demo-section .wa-mock-image-inner span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* ===== ANIMATIONS ===== */
/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes rec-ping {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-opacity {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    visibility: hidden !important;
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}