/* ============================================
   SMART TABLETS HERO - YELLOW THEME 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 - Yellow/Gold theme */
    --color-accent-primary: #f59e0b;
    --color-accent-secondary: #d97706;
    --color-accent-light: #fbbf24;
    --color-accent-dark: #b45309;
    --color-accent-orange: #ea580c;
    --color-accent-green: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #dc2626 100%);
    --gradient-hero-glow: radial-gradient(ellipse at center, rgba(245, 158, 11, 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(245, 158, 11, 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(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 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;
    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(245, 158, 11, 0.4), rgba(234, 88, 12, 0.3));
    top: -10%;
    left: 5%;
    /* Moved to Left */
    right: auto;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.3), rgba(220, 38, 38, 0.2));
    bottom: -5%;
    left: -10%;
    /* Kept on Left */
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.2));
    top: 40%;
    left: 10%;
    /* Moved to Left */
    right: auto;
    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;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 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(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 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;
    white-space: nowrap;
}

/* 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, #fef3c7, #fde68a);
    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 (iPad)
   ============================================ */

.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;
}

.tablet-glow {
    display: none;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.ipad-wrapper {
    position: relative;
    z-index: 1;
}

.ipad-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: none;
    border: none;
    outline: none;
    box-shadow: none;
}

@keyframes tablet-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* 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;
    }
}

/* ============================================
   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(245, 158, 11, 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);
}

.problems-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.problems-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.problem-card {
    border-radius: 32px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    min-height: 640px;
    /* Uniform height increased */
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* 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);
    color: inherit;
    /* Inherit from card theme */
}

/* Card Text */
.problem-card .problem-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    opacity: 1;
    color: inherit;
}

.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;
    background: transparent;
    /* Reset background */
    padding: 0;
    min-height: auto;
    /* Reset min-height */
}

.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(245, 158, 11, 0.15);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

.problem-card-dark .problem-text {
    color: #ffffff;
}

.problem-card-dark .highlight-text {
    color: #fbbf24;
}

/* Yellow Theme Card (Replaces Blue) */
.problem-card-yellow {
    background: linear-gradient(145deg, #d97706 0%, #f59e0b 100%);
    color: #000000;
}

.problem-card-yellow .problem-badge {
    background: #1f2937;
    color: #ffffff;
    border-color: rgba(31, 41, 55, 0.2);
}

.problem-card-yellow .problem-text {
    color: #000000;
}

.problem-card-yellow .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(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.2);
}

.problem-card-white .problem-text {
    color: #374151;
}

.problem-card-white .highlight-text {
    color: #d97706;
}

/* Problem Orbs */
.orb-problem-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.25), rgba(234, 88, 12, 0.15), transparent 70%);
    top: 10%;
    left: 10%;
    opacity: 0.8;
    filter: blur(60px);
    animation: float 25s ease-in-out infinite;
}

.orb-problem-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(234, 88, 12, 0.2), rgba(245, 158, 11, 0.1), transparent 70%);
    bottom: 10%;
    right: 15%;
    opacity: 0.7;
    filter: blur(50px);
    animation: float 28s ease-in-out infinite reverse;
}

/* Responsive Grid */
@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;
    }
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problem-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* ============================================
   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(245, 158, 11, 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: 950px;
    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;
        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-primary);
}

.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(245, 158, 11, 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);
}

/* Colors matching the images */
.step-screen-1 {
    background: linear-gradient(145deg, #e0f2fe 0%, #bae6fd 100%);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.12);
}

.step-screen-2 {
    background: linear-gradient(145deg, #fce7f3 0%, #f9a8d4 100%);
    box-shadow: 0 8px 30px rgba(219, 39, 119, 0.12);
}

.step-screen-3 {
    background: linear-gradient(145deg, #ffedd5 0%, #fed7aa 100%);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.12);
}

.step-screen-4 {
    background: linear-gradient(145deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.25);
}

.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);
    }
}

/* 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%;
    }

    .problems-title {
        font-size: var(--font-size-3xl);
    }

    .problem-card {
        min-height: 450px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, #fefce8 0%, #fef3c7 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(245, 158, 11, 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);
}

.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;
}

.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;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .ipad-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;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-section {
        flex-direction: column;
    }

    .ipad-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .stat-divider {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 280px;
    }

    .ipad-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-badge {
        flex-wrap: wrap;
        justify-content: 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;
}

/* ============================================
   STRATEGY SECTION
   ============================================ */

.strategy-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #f8fafc;
}

.strategy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Background Decor */
.strategy-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.strategy-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.3);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(249, 115, 22, 0.3);
}

.blob-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(224, 231, 255, 0.3);
}

/* Badge */
.strategy-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.strategy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header */
.strategy-header {
    text-align: center;
    margin-bottom: 60px;
}

.strategy-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text-strategy {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.strategy-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Toggle Switch */
.strategy-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.strategy-toggle {
    position: relative;
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 16px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toggle-bg {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: calc(50% - 6px);
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* State for Zero */
.strategy-toggle.toggled-zero .toggle-bg {
    left: 50%;
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.toggle-btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #64748b;
    transition: color 0.3s ease;
    width: 50%;
}

.toggle-btn.active {
    color: white;
}

/* Content Area */
.strategy-content-area {
    position: relative;
    min-height: 600px;
    /* Prevent layout shift */
}

.strategy-view {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    width: 100%;
}

.strategy-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Cards */
.strategy-card {
    padding: 40px;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.card-vip {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.4);
}

.card-zero {
    background: linear-gradient(135deg, #f97316, #dc2626);
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px -10px rgba(234, 88, 12, 0.4);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.card-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-objective {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

/* Chat Visual */
.strategy-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    inset: -20px;
    border-radius: 32px;
    filter: blur(40px);
    opacity: 0.3;
    z-index: 0;
}

.glow-vip {
    background: linear-gradient(135deg, #a78bfa, #818cf8);
}

.glow-zero {
    background: linear-gradient(135deg, #fdba74, #fca5a5);
}

.chat-container-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
}

.chat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* WhatsApp Card */
.whatsapp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.wa-header {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #008069;
    color: white;
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-back-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.wa-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-weight: 600;
    font-size: 15px;
}

.wa-status {
    font-size: 12px;
    opacity: 0.8;
}

.wa-body {
    background: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    height: 380px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.wa-date {
    text-align: center;
    margin: 10px 0;
}

.wa-date span {
    background: #d1d7db;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    color: #54656f;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.wa-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    margin-bottom: 8px;
    animation: slideUp 0.3s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-msg-in {
    align-self: flex-start;
}

.wa-msg-out {
    align-self: flex-end;
}

.wa-bubble {
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    font-size: 14px;
    line-height: 1.4;
    color: #111b21;
}

.wa-msg-in .wa-bubble {
    background: #fff;
    border-top-left-radius: 0;
}

.wa-msg-out .wa-bubble {
    background: #d9fdd3;
    border-top-right-radius: 0;
}

.wa-sender {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.wa-time {
    font-size: 11px;
    color: #667781;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 4px;
    gap: 4px;
}

.wa-input {
    background: #f0f2f5;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-input-bar {
    flex: 1;
    background: white;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #54656f;
}

.wa-mic {
    width: 40px;
    height: 40px;
    background: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chat-hint-text {
    margin-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Comparison Box */
.strategy-comparison {
    margin-top: 80px;
}

.comparison-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.comparison-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid transparent;
    border-radius: 16px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: #cbd5e1;
}

.comp-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.comp-icon-box.bg-purple {
    background: #7c3aed;
}

.comp-icon-box.bg-orange {
    background: #ea580c;
}

.comp-info {
    flex: 1;
}

.comp-name {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.comp-sub {
    font-size: 13px;
    color: #64748b;
}

.strategy-hint {
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 24px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .strategy-content-area {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .toggle-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 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;
}