/* static/css/index.css - Docufisc Landing Page - Blue/White Theme - FIXED FOR LAPTOP */

:root {
    /* Blue & White Color Palette */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #60a5fa;
    --color-primary-lighter: #dbeafe;
    --color-secondary: #0ea5e9;
    --color-success: #10b981;
    --color-dark: #0f172a;
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --color-bg: #f8fafc;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    
    /* Gradients - Blue Theme */
    --gradient-hero: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #06b6d4 100%);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-soft: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%); 
    
    /* Spacing - ADJUSTED FOR BETTER LAPTOP SCALING */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 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-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-blue: 0 10px 40px -10px rgba(37, 99, 235, 0.3);
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* 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);
}

/* =========================
   GLOBAL STYLES
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.2);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(6, 182, 212, 0.3);
    bottom: -15%;
    right: -10%;
    animation-delay: 7s;
}

.hero-shape.shape-3 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 40%;
    animation-delay: 14s;
}

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

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    animation: slideInDown 0.6s ease-out 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Services Pills */
.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: default;
}

.service-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.service-pill svg {
    flex-shrink: 0;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: nowrap;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero button styling */
.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--color-white);
    color: var(--color-primary) !important;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero .btn-primary svg {
    transition: transform var(--transition-base);
}

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

.hero .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: transparent;
    color: var(--color-white);
    padding: 0.875rem 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.visual-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.card-main {
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
}

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

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.card-dots span:nth-child(1) { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #28ca42; }

.card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.card-content {
    padding: var(--spacing-lg);
}

/* Dashboard Preview Animation */
.dashboard-preview {
    position: relative;
    min-height: 200px;
}

.chaos-container {
    position: absolute;
    inset: 0;
    animation: chaosToOrder 4s ease-in-out infinite;
}

.scattered-doc {
    position: absolute;
    color: var(--color-primary);
    opacity: 0.7;
    animation: scatter 4s ease-in-out infinite;
}

.scattered-doc.doc-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.scattered-doc.doc-2 {
    top: 60%;
    left: 70%;
    animation-delay: 0.5s;
}

.scattered-doc.doc-3 {
    top: 30%;
    left: 50%;
    animation-delay: 1s;
}

.scattered-doc.doc-4 {
    top: 70%;
    left: 20%;
    animation-delay: 1.5s;
}

@keyframes scatter {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(10px, -15px) rotate(10deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-5px, 10px) rotate(-5deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(15px, 5px) rotate(15deg);
        opacity: 0.6;
    }
}

@keyframes chaosToOrder {
    0%, 40% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.organized-dashboard {
    animation: orderAppear 4s ease-in-out infinite;
}

@keyframes orderAppear {
    0%, 40% {
        opacity: 0;
        transform: translateY(20px);
    }
    50%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Invoice Data Extraction Animation */
.invoice-data-extraction {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.extraction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    border: 1px solid transparent;
    transition: all var(--transition-base);
    animation: slideInExtraction 0.5s ease-out both;
}

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

.extraction-item:hover {
    border-color: var(--color-border);
    background: #f8fafc;
}

.extraction-item.highlight {
    background: var(--color-primary-lighter);
    border-color: var(--color-primary);
}

.extraction-item .item-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.extraction-item .item-value {
    font-size: 0.875rem;
    color: var(--color-text);
    font-weight: 600;
}

.extraction-item.highlight .item-value {
    color: var(--color-primary);
    font-size: 1rem;
}

.search-bar-preview {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--color-bg);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--color-border);
}

.search-bar-preview svg {
    color: var(--color-text-muted);
}

.typing-text {
    color: var(--color-text);
    font-size: 0.875rem;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--color-primary);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.mini-file-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.mini-file {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-size: 0.8rem;
}

.mini-file.found {
    background: var(--color-primary-lighter);
    animation: highlight 2s ease-in-out infinite;
}

@keyframes highlight {
    0%, 100% {
        background: var(--color-primary-lighter);
    }
    50% {
        background: #bfdbfe;
    }
}

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

.file-name {
    flex: 1;
    color: var(--color-text);
}

.file-check {
    color: var(--color-success);
    font-weight: bold;
}

.card-status {
    padding: var(--spacing-md);
    background: #f0fdf4;
    border-top: 1px solid var(--color-border);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-success);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Floating Cards */
.card-floating {
    position: absolute;
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: floatCard 3s ease-in-out infinite;
    z-index: 5;
}

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

.card-float-2 {
    bottom: 35%;
    left: -15%;
    animation-delay: 1s;
}

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

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

.mini-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

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

/* =========================
   PROBLEM SECTION
========================= */
.problem-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-soft);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.problem-content .section-tag {
    display: inline-block;
    background: #fef2f2;
    color: #dc2626;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.problem-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.problem-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.chaos-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-pdf {
    position: absolute;
    font-size: 2.5rem;
    animation: floatChaos 3s ease-in-out infinite;
}

.floating-pdf.pdf-1 { top: 10%; left: 20%; animation-delay: 0s; }
.floating-pdf.pdf-2 { top: 30%; right: 10%; animation-delay: 0.5s; }
.floating-pdf.pdf-3 { bottom: 30%; left: 10%; animation-delay: 1s; }
.floating-pdf.pdf-4 { top: 50%; left: 50%; animation-delay: 1.5s; }
.floating-pdf.pdf-5 { bottom: 10%; right: 20%; animation-delay: 2s; }

.frustrated-user {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes floatChaos {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -20px) rotate(10deg);
    }
    50% {
        transform: translate(-10px, 15px) rotate(-10deg);
    }
    75% {
        transform: translate(20px, 10px) rotate(5deg);
    }
}

@keyframes shake {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-48%, -52%) rotate(-2deg); }
    75% { transform: translate(-52%, -48%) rotate(2deg); }
}

/* =========================
   SOLUTION SECTION
========================= */
.solution-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.solution-feature {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.solution-feature:hover {
    background: var(--color-bg);
    transform: translateY(-4px);
}

.solution-feature .feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin: 0 auto var(--spacing-md);
    background: var(--color-primary-lighter);
    color: var(--color-primary);
}

.solution-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.solution-feature p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.solution-cta {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-blue);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(37, 99, 235, 0.4);
}

.btn-cta-primary svg {
    transition: transform var(--transition-base);
}

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

/* Transformation Visual */
.transformation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--color-bg);
    border-radius: var(--radius-2xl);
}

.before-state,
.after-state {
    text-align: center;
    padding: var(--spacing-lg);
}

.state-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.scattered-icons {
    display: flex;
    gap: var(--spacing-xs);
    font-size: 2rem;
    animation: scatterIcons 2s ease-in-out infinite;
}

@keyframes scatterIcons {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.organized-icons {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.transform-arrow {
    color: var(--color-primary);
    animation: arrowMove 1.5s ease-in-out infinite;
}

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

/* =========================
   DIFFERENCE SECTION
========================= */
.difference-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-dark);
    color: var(--color-white);
}

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

.difference-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.difference-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.difference-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.difference-icon {
    color: #ef4444;
    margin-bottom: var(--spacing-md);
}

.difference-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.difference-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.speed-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
}

.speed-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.speed-icon {
    font-size: 2rem;
}

.speed-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================
   RESULTS SECTION
========================= */
.results-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-soft);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.results-content .section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.results-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.results-highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.before-after-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
}

.ba-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.ba-card.before {
    border: 2px solid #fecaca;
}

.ba-card.after {
    border: 2px solid #bbf7d0;
}

.ba-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.ba-emoji {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.ba-text {
    font-weight: 600;
    color: var(--color-text);
}

.ba-arrow {
    font-size: 2rem;
    color: var(--color-primary);
    animation: arrowMove 1.5s ease-in-out infinite;
}

/* =========================
   SECTION HEADERS
========================= */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

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

/* =========================
   SOCIAL PROOF BAR
========================= */
.social-proof {
    padding: var(--spacing-2xl) 0;
    background: var(--color-dark);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    text-align: center;
}

.proof-item {
    padding: var(--spacing-lg);
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* =========================
   STEPS SECTION
========================= */
.steps {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-card-share {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border-color: var(--color-primary-light);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.step-icon-modern {
    font-size: 3rem;
    margin: var(--spacing-md) 0;
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.step-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    flex-grow: 1;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    flex-shrink: 0;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: bold;
}

/* Export Formats Tags for Step 4 */
.export-formats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: var(--spacing-sm);
}

.format-tag {
    display: inline-block;
    background: var(--color-primary-lighter);
    color: var(--color-primary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
}

.step-card:hover .format-tag {
    background: var(--color-primary);
    color: var(--color-white);
}

/* =========================
   FEATURES SECTION
========================= */
.features-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-box {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.icon-ai {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: var(--color-white);
}

.icon-secure {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--color-white);
}

.icon-export {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--color-white);
}

.icon-analytics {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--color-white);
}

.icon-collab {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: var(--color-white);
}

.icon-auto {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: var(--color-white);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-box p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =========================
   PRICING SECTION
========================= */
.pricing {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.plan {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-blue);
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
    z-index: 10;
}

.plan-header {
    text-align: center;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--spacing-lg);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.plan-price {
    margin: var(--spacing-md) 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.plan-description {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.plan-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--color-text);
}

.plan-features svg {
    flex-shrink: 0;
    color: var(--color-success);
}

.btn-plan {
    display: block;
    width: 100%;
    padding: var(--spacing-md);
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    margin-top: auto;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-plan:hover {
    background: var(--color-text);
    transform: translateY(-2px);
}

.btn-plan-featured {
    background: var(--gradient-primary);
}

.btn-plan-featured:hover {
    opacity: 0.9;
}

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--color-dark);
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* =========================
   FAQ SECTION
========================= */
.faq {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.faq-item p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =========================
   FINAL CTA
========================= */
.cta-final {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-hero);
    color: var(--color-white);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-final .btn-primary {
    background: var(--color-white);
    color: var(--color-primary) !important;
}

.btn-outline-light {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE DESIGN - LAPTOP FIXES (900px - 1200px)
   ========================= */

/* Laptop Specific Adjustments (900px - 1200px) */
@media (min-width: 900px) and (max-width: 1200px) {
    /* Hero Section Laptop Fixes */
    .hero {
        min-height: 80vh;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 2.75rem !important; /* Slightly smaller than desktop */
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 95%;
    }
    
    .hero-container {
        gap: var(--spacing-xl);
        align-items: center;
    }
    
    /* Adjust visual card for laptop */
    .visual-card {
        transform: scale(0.95);
        transform-origin: center;
    }
    
    .card-floating {
        transform: scale(0.8);
    }
    
    .card-float-1 {
        top: 2%;
        right: -5%;
    }
    
    .card-float-2 {
        bottom: 30%;
        left: -10%;
    }
    
    .card-float-3 {
        bottom: 2%;
        right: -2%;
    }
    
    /* Adjust hero stats spacing */
    .hero-stats {
        gap: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* Section titles for laptop */
    .section-title {
        font-size: 2.25rem;
    }
    
    /* Solution features grid adjustment */
    .solution-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Features grid adjustment */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing grid adjustment */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .plan {
        padding: var(--spacing-lg);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    /* Testimonials grid adjustment */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* =========================
   RESPONSIVE DESIGN - TABLET (768px - 1024px)
   ========================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .problem-grid,
    .results-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .solution-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Adjust floating cards for tablet */
    .card-floating {
        display: none; /* Hide floating cards on tablet for cleaner layout */
    }
}

/* =========================
   RESPONSIVE DESIGN - MOBILE (< 768px)
   ========================= */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .service-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .service-pill svg {
        width: 16px;
        height: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    /* Hero CTAs - Stack on mobile */
    .hero-ctas {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }
    
    .hero-ctas .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
    
    .problem-visual {
        display: none;
    }
    
    .results-visual {
        order: -1;
    }
    
    .solution-features,
    .difference-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, auto);
        gap: var(--spacing-lg);
        max-width: 400px;
    }
    
    .step-card:nth-child(1) { grid-column: 1; grid-row: 1; }
    .step-connector:nth-child(2) { grid-column: 1; grid-row: 2; }
    .step-card:nth-child(3) { grid-column: 1; grid-row: 3; }
    .step-connector:nth-child(4) { grid-column: 1; grid-row: 4; }
    .step-card:nth-child(5) { grid-column: 1; grid-row: 5; }
    .step-connector:nth-child(6) { grid-column: 1; grid-row: 6; }
    .step-card:nth-child(7) { grid-column: 1; grid-row: 7; }
    
    .step-connector {
        width: 2px;
        height: 40px;
        justify-self: center;
    }
    
    .step-connector::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -12px;
        transform: translateX(50%);
    }
    
    .step-card {
        min-height: auto;
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-featured {
        transform: scale(1);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .transformation-visual {
        flex-direction: column;
    }
    
    .before-after-cards {
        flex-direction: column;
    }
    
    .ba-arrow {
        transform: rotate(90deg);
    }
    
    .speed-indicators {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* =========================
   RESPONSIVE DESIGN - SMALL MOBILE (< 480px)
   ========================= */
@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-ctas .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .step-icon-modern {
        font-size: 2.5rem;
        margin: var(--spacing-sm) 0;
    }
    
    .step-card h3 {
        font-size: 1rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
    }
    
    .step-connector {
        height: 30px;
    }
    
    .export-formats {
        gap: 4px;
    }
    
    .format-tag {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}