/**
 * CLEAN AI AGENT LANDING PAGE CSS
 * Green, Black, Red, Yellow Color Scheme
 * Simple, Clean, Professional Design
 */

/* ========================================
   CSS CUSTOM PROPERTIES & VARIABLES
======================================== */

:root {
    /* Brand Colors - Green, Black, Red, Yellow */
    --primary-green: #22c55e;
    --primary-green-dark: #16a34a;
    --primary-green-light: #4ade80;
    
    --primary-black: #111827;
    --black-light: #1f2937;
    --black-medium: #374151;
    --black-soft: #4b5563;
    
    --primary-red: #ef4444;
    --red-dark: #dc2626;
    --red-light: #f87171;
    
    --primary-yellow: #eab308;
    --yellow-dark: #ca8a04;
    --yellow-light: #facc15;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    
    /* 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;
    
    /* 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 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    --gradient-red: linear-gradient(135deg, var(--primary-red) 0%, var(--red-dark) 100%);
    --gradient-yellow: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-black) 0%, var(--black-light) 100%);
    
    /* Animations */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ========================================
   RESET & BASE STYLES
======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection Colors */
::selection {
    background: var(--primary-green);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-green);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--primary-black);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(1.1rem, 6vw, 4rem);
    font-weight: var(--fw-extrabold);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

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

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--fw-semibold);
}

p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-green-dark);
}

/* ========================================
   UTILITY CLASSES
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
    box-sizing: border-box;
}

.section-padding {
    padding: var(--space-4xl) 0;
}

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

.highlight {
    color: var(--primary-green);
}

.highlight-red {
    color: var(--primary-red);
}

.highlight-yellow {
    color: var(--primary-yellow);
}

.highlight-green {
    color: var(--primary-green);
}

/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    line-height: 1;
    min-height: 44px; /* Minimum touch target for accessibility */
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

/* ========================================
   NAVIGATION
======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.5rem 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: var(--fw-bold);
    font-size: 0.875rem;
    color: var(--primary-black);
    flex: 1;
    min-width: 0;
}

.brand-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    font-size: 0.8rem;
}

.nav-icon {
    font-size: 1rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.nav-menu {
    display: none; /* Hidden on mobile by default */
    list-style: none;
    gap: var(--space-xl);
    margin: 0;
}

.nav-link {
    color: var(--gray-600);
    font-weight: var(--fw-medium);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-green);
    background: rgba(34, 197, 94, 0.1);
}

.nav-cta-btn {
    background: var(--gradient-green);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: var(--fw-semibold);
    transition: var(--transition-normal);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    padding: 70px 0 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: var(--primary-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-weight: var(--fw-medium);
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-description {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: var(--fw-extrabold);
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: var(--fw-medium);
}

.hero-ctas {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 0;
    min-width: 280px;
    max-width: 380px;
    max-height: 420px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.demo-chat .chat-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-weight: var(--fw-semibold);
    color: var(--primary-black);
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-height: 350px;
    overflow-y: auto;
    padding: var(--space-md);
    scroll-behavior: smooth;
    background: transparent;
    border: none;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
    border-radius: var(--radius-sm);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.5);
}

.message {
    display: flex;
}

.message-bubble {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 200px;
}

.ai-message .message-bubble {
    background: var(--gradient-green);
    color: var(--white);
    margin-right: auto;
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-bubble {
    background: var(--gray-100);
    color: var(--gray-700);
    margin-left: auto;
}

/* WhatsApp Demo Enhancements */
.whatsapp-demo .chat-header {
    background: var(--primary-green);
    color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    box-shadow: none;
}

.whatsapp-demo .chat-header i {
    color: var(--white);
}

.online-indicator {
    font-size: 0.8rem;
    color: var(--primary-yellow);
    font-weight: var(--fw-semibold);
}

.message-time {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
    text-align: right;
}

.ai-message .message-time {
    text-align: left;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: var(--space-sm);
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typingDots 1.5s ease-in-out infinite;
}

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

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

.sale-closed {
    text-align: center;
    padding: var(--space-md);
    margin-top: var(--space-md);
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-green);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    font-size: 0.9rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes typingDots {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

/* ========================================
   TRUST SECTION
======================================== */

.trust-section {
    padding: 3rem 0; /* Consistent spacing */
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--primary-green);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-weight: var(--fw-semibold);
    color: var(--primary-black);
    margin-bottom: var(--space-xs);
}

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

/* ========================================
   SECTION HEADERS
======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ========================================
   PROBLEM SECTION
======================================== */

.problem-section {
    padding: 4rem 0; /* Consistent spacing */
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, var(--white) 100%);
    margin-bottom: 2rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.problem-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(239, 68, 68, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.problem-icon i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.problem-title {
    color: var(--primary-black);
    margin-bottom: var(--space-md);
}

.problem-description {
    margin-bottom: var(--space-lg);
}

.problem-cost {
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-red);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    text-align: center;
}

/* ========================================
   SOLUTION SECTION
======================================== */

.solution-section {
    padding: 4rem 0; /* Consistent spacing */
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, var(--white) 100%);
    margin-bottom: 2rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.solution-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.solution-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.solution-title {
    color: var(--primary-black);
    margin-bottom: var(--space-md);
}

.solution-description {
    margin-bottom: var(--space-lg);
}

.solution-benefit {
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-green);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    text-align: center;
}

/* ========================================
   VIDEO DEMOS SECTION
======================================== */

.video-demos-section {
    padding: 4rem 0; /* Consistent spacing */
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, var(--white) 100%);
    margin-bottom: 2rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(34, 197, 94, 0.1);
    transition: var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-green);
}

.video-container {
    position: relative;
    background: var(--primary-black);
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition-normal);
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: playButtonPulse 2s ease-in-out infinite;
    cursor: pointer;
    pointer-events: all;
}

.video-info {
    padding: var(--space-2xl);
}

.video-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.video-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.video-title {
    color: var(--primary-black);
    margin-bottom: var(--space-md);
    font-size: 1.4rem;
}

.video-description {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.video-stats {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.video-stats .stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: var(--fw-semibold);
}

.video-stats .stat i {
    font-size: 1rem;
}

.video-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, var(--white) 100%);
    border-radius: var(--radius-2xl);
    border: 2px solid rgba(34, 197, 94, 0.1);
}

.video-cta h3 {
    color: var(--primary-black);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.video-cta p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
}

@keyframes playButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
}

/* ========================================
   PRICING SECTION
======================================== */

.pricing-section {
    padding: 4rem 0; /* Consistent spacing */
    background: var(--gray-50);
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--gradient-yellow);
    color: var(--primary-black);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    z-index: 10;
}

.pricing-header {
    padding: var(--space-2xl);
    text-align: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.pricing-icon i {
    font-size: 2rem;
    color: var(--white);
}

.pricing-title {
    margin-bottom: var(--space-md);
    color: var(--primary-black);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: var(--fw-extrabold);
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

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

.pricing-features {
    padding: var(--space-xl);
}

.feature {
    padding: var(--space-sm) 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.feature:last-child {
    border-bottom: none;
}

.pricing-cta {
    padding: var(--space-xl);
    padding-top: 0;
}

/* ========================================
   COMPARISON SECTION
======================================== */

.comparison-section {
    padding: 4rem 0; /* Consistent spacing */
    background: var(--white);
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.without-ai {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, var(--white) 100%);
    border: 2px solid rgba(239, 68, 68, 0.1);
}

.with-ai {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, var(--white) 100%);
    border: 2px solid rgba(34, 197, 94, 0.1);
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.comparison-title {
    margin-bottom: var(--space-sm);
}

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

.comparison-costs {
    margin-bottom: var(--space-xl);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-label {
    color: var(--gray-600);
}

.cost-amount {
    font-weight: var(--fw-semibold);
    color: var(--primary-black);
}

.cost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    margin-top: var(--space-lg);
    border-top: 2px solid var(--gray-300);
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
}

.without-ai .cost-total .cost-amount {
    color: var(--primary-red);
}

.with-ai .cost-total .cost-amount {
    color: var(--primary-green);
}

.comparison-problems, .comparison-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.problem-item {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.benefit-item {
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* ========================================
   RESULTS SECTION
======================================== */

.results-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.result-image {
    height: 200px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-content {
    padding: var(--space-xl);
}

.result-title {
    margin-bottom: var(--space-sm);
    color: var(--primary-black);
}

.result-description {
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.result-stats {
    display: flex;
    gap: var(--space-md);
}

.result-stat {
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-green);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
}

/* ========================================
   ROI CALCULATOR SECTION
======================================== */

.roi-calculator-section {
    padding: 4rem 0; /* Consistent spacing */
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.02) 0%, var(--white) 100%);
    margin-bottom: 2rem;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.calculator-inputs {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(234, 179, 8, 0.1);
}

.input-group {
    margin-bottom: var(--space-2xl);
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    font-weight: var(--fw-semibold);
    color: var(--primary-black);
    margin-bottom: var(--space-md);
}

.calculator-slider {
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gray-200);
    outline: none;
    appearance: none;
    margin-bottom: var(--space-md);
}

.calculator-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-yellow);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.calculator-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-yellow);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.slider-value {
    text-align: center;
    font-weight: var(--fw-semibold);
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.calculator-results .result-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.ai-savings {
    border-color: var(--primary-green) !important;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, var(--white) 100%) !important;
}

.calculator-results h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--primary-black);
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.cost-item:last-child {
    border-bottom: none;
}

.total-cost,
.savings-total,
.roi-total {
    border-top: 2px solid var(--primary-green) !important;
    border-bottom: none !important;
    padding-top: var(--space-lg) !important;
    margin-top: var(--space-md);
    font-weight: var(--fw-bold);
    font-size: 1.1rem;
}

.cost-amount {
    font-weight: var(--fw-bold);
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* ========================================
   AUDIENCE SECTION
======================================== */

.audience-section {
    padding: 4rem 0; /* Consistent spacing */
    background: var(--white);
    margin-bottom: 2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.audience-badge {
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    text-align: center;
    font-weight: var(--fw-semibold);
    color: var(--primary-black);
    transition: var(--transition-normal);
    cursor: pointer;
}

.audience-badge:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, var(--white) 100%);
    transform: translateY(-3px);
}

/* ========================================
   PROCESS SECTION
======================================== */

.process-section {
    padding: 4rem 0; /* Consistent spacing */
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.02) 0%, var(--white) 100%);
    margin-bottom: 2rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 2;
}

.step-title {
    margin-bottom: var(--space-md);
    color: var(--primary-black);
}

.step-description {
    color: var(--gray-600);
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
    padding: 4rem 0; /* Consistent spacing */
    background: var(--gray-50);
    margin-bottom: 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    cursor: pointer;
    font-weight: var(--fw-semibold);
    color: var(--primary-black);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: var(--space-lg);
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
    padding: 4rem 0; /* Consistent spacing */
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    margin-bottom: 0; /* Last section before footer */
}

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

.cta-title {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.urgency-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.urgency-number {
    font-size: 2rem;
    font-weight: var(--fw-extrabold);
    color: var(--primary-yellow);
    line-height: 1;
}

.urgency-label {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-align: center;
}

.urgency-text {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-align: center;
    line-height: 1.4;
}

/* ========================================
   SIMPLE FOOTER
======================================== */

.simple-footer {
    background: var(--primary-black);
    color: var(--gray-400);
    padding: var(--space-xl) 0;
    text-align: center;
}

.simple-footer p {
    margin: 0;
    color: var(--gray-400);
}

/* ========================================
   MOBILE-FIRST RESPONSIVE DESIGN - COMPLETELY REBUILT
======================================== */

/* MOBILE BASE STYLES (320px and up) - Start here */
/* These styles apply to all screen sizes and get enhanced as screens get larger */

/* Base mobile typography and spacing */
body {
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* 16px */
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ===== NAVIGATION - MOBILE FIRST ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.5rem 0; /* 8px */
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: var(--fw-bold);
    font-size: 0.875rem; /* 14px */
    color: var(--primary-black);
    flex: 1;
    min-width: 0;
}

.brand-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    font-size: 0.8rem; /* 12.8px */
}

.nav-icon {
    font-size: 1rem; /* 16px */
    color: var(--primary-green);
    flex-shrink: 0;
}

.nav-menu {
    display: none; /* Hidden on mobile */
}

.nav-cta-btn {
    padding: 0.25rem 0.5rem; /* 4px 8px */
    font-size: 0.7rem; /* 11.2px */
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--gradient-green);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
}

/* ===== HERO SECTION - MOBILE FIRST ===== */
.hero {
    padding: 70px 0 2rem; /* Account for navbar */
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.hero .container {
    padding-top: 1rem;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

.hero-text {
    order: 1;
    width: 100%;
}

.hero-visual {
    order: 2;
    width: 100%;
    margin-top: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: var(--primary-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-weight: var(--fw-medium);
    font-size: 0.7rem; /* 11.2px */
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(1.1rem, 6vw, 1.6rem); /* 17.6px to 25.6px */
    font-weight: var(--fw-extrabold);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
    max-width: 100%;
}

.hero-description {
    font-size: 0.85rem; /* 13.6px */
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 0 1 30%;
    min-width: 70px;
}

.stat-number {
    display: block;
    font-size: 0.95rem; /* 15.2px */
    font-weight: var(--fw-extrabold);
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem; /* 10.4px */
    color: var(--gray-500);
    font-weight: var(--fw-medium);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1rem;
}

.hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.8rem; /* 12.8px */
    padding: 0.75rem 1rem;
    justify-content: center;
}

/* Video container mobile */
.video-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: static;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    width: 100%;
    max-height: none;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-md);
}

.message-bubble {
    font-size: 0.75rem; /* 12px */
    max-width: 200px;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-lg);
    line-height: 1.3;
}

/* ===== SECTION STYLES - MOBILE FIRST ===== */
.section-padding {
    padding: 3rem 0; /* Increased for better visual separation */
}

.section-title {
    font-size: clamp(1.25rem, 5vw, 2rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Grid layouts - mobile first */
.comparison-grid,
.solution-grid,
.process-timeline,
.videos-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 300px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

/* ===== SMALL MOBILE (up to 375px) ===== */
@media (max-width: 375px) {
    .container {
        padding: 0 1rem; /* 16px safe padding */
    }
    
    .hero {
        padding: 60px 0 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1rem, 7vw, 1.4rem); /* 16px to 22.4px */
        line-height: 1.3;
        text-align: center;
        word-spacing: normal;
    }
    
    .hero-description {
        font-size: 0.8rem; /* 12.8px */
    }
    
    .hero-stats {
        gap: 0.25rem;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 0.85rem; /* 13.6px */
    }
    
    .stat-label {
        font-size: 0.6rem; /* 9.6px */
    }
    
    .nav-cta-btn {
        font-size: 0.65rem; /* 10.4px */
        padding: 0.25rem 0.5rem;
        min-height: 30px;
    }
    
    .brand-name {
        max-width: 100px;
        font-size: 0.75rem; /* 12px */
    }
}

/* ===== LARGER MOBILE (376px to 480px) ===== */
@media (min-width: 376px) and (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem); /* 19.2px to 28.8px */
        line-height: 1.3;
        text-align: center;
        word-spacing: normal;
    }
    
    .hero-description {
        font-size: 0.9rem; /* 14.4px */
    }
    
    .stat-number {
        font-size: 1.1rem; /* 17.6px */
    }
    
    .stat-label {
        font-size: 0.7rem; /* 11.2px */
    }
    
    .nav-cta-btn {
        font-size: 0.75rem; /* 12px */
        min-height: 36px;
    }
    
    .brand-name {
        max-width: 140px;
        font-size: 0.85rem; /* 13.6px */
    }
}

/* ===== SMALL TABLET (481px to 640px) ===== */
@media (min-width: 481px) and (max-width: 640px) {
    .container {
        padding: 0 1rem; /* 16px safe padding - consistent across all mobile */
    }
    
    .hero {
        padding: 80px 0 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 5vw, 2.2rem); /* 22.4px to 35.2px */
        line-height: 1.3;
        text-align: center;
        word-spacing: normal;
    }
    
    .hero-description {
        font-size: 1rem; /* 16px */
    }
    
    .hero-stats {
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.25rem; /* 20px */
    }
    
    .stat-label {
        font-size: 0.75rem; /* 12px */
    }
    
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: auto;
        min-width: 160px;
    }
    
    .nav-cta-btn {
        font-size: 0.8rem; /* 12.8px */
        padding: 0.5rem 0.75rem;
        min-height: 40px;
    }
    
    .brand-name {
        max-width: 160px;
        font-size: 0.9rem; /* 14.4px */
    }
}

/* ===== TABLET (641px to 768px) ===== */
@media (min-width: 641px) and (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0; /* 12px */
    }
    
    .nav-brand {
        font-size: 1rem; /* 16px */
    }
    
    .brand-name {
        max-width: 180px;
        font-size: 1rem; /* 16px */
    }
    
    .nav-cta-btn {
        font-size: 0.85rem; /* 13.6px */
        padding: 0.5rem 1rem;
        min-height: 44px;
    }
    
    .hero {
        padding: 90px 0 3rem;
    }
    
    .video-overlay {
        position: relative;
        margin-top: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== LARGE TABLET (769px to 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem; /* 32px */
    }
    
    .navbar {
        padding: 1rem 0; /* 16px */
    }
    
    .nav-menu {
        display: flex; /* Show navigation menu */
        list-style: none;
        gap: 1.5rem;
        margin: 0;
    }
    
    .nav-link {
        color: var(--gray-600);
        font-weight: var(--fw-medium);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: var(--transition-fast);
        text-decoration: none;
    }
    
    .nav-link:hover {
        color: var(--primary-green);
        background: rgba(34, 197, 94, 0.1);
    }
    
    .hero {
        padding: 100px 0 4rem;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        text-align: left;
    }
    
    .hero-text {
        order: 0;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .hero-ctas {
        justify-content: flex-start;
    }
    
    .video-overlay {
        position: absolute;
        top: 1rem;
        right: 1rem;
        margin: 0;
        max-width: 320px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .comparison-grid,
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== DESKTOP (1025px and up) ===== */
@media (min-width: 1025px) {
    .container {
        padding: 0 1.5rem; /* 24px */
    }
    
    .navbar {
        padding: 1rem 0; /* 16px */
    }
    
    .hero {
        padding: 120px 0 6rem;
    }
    
    .hero-content {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 4rem); /* 40px to 64px */
    }
    
    .hero-description {
        font-size: 1.125rem; /* 18px */
    }
    
    .stat-number {
        font-size: 2rem; /* 32px */
    }
    
    .comparison-grid,
    .solution-grid,
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== LANDSCAPE MOBILE OPTIMIZATIONS ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 40px 0 1.5rem;
        min-height: auto;
    }
    
    .hero .container {
        padding-top: 0.5rem;
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 4vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-badge {
        margin-bottom: 0.5rem;
    }
    
    .hero-stats {
        margin-bottom: 0.75rem;
        gap: 0.75rem;
    }
    
    .hero-ctas {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .hero-ctas .btn {
        width: auto;
        min-width: 140px;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .video-overlay {
        display: none; /* Hide video overlay in landscape to save space */
    }
}

/* ===== ADDITIONAL MOBILE OPTIMIZATIONS ===== */

/* Enhanced text handling for hero title */
.hero-title {
    display: block;
    text-align: center;
    margin: 0 auto 0.75rem;
    padding: 0 0.5rem;
    max-width: 100%;
}

.hero-title .highlight {
    white-space: nowrap; /* Keep "Sales Team" together */
}

/* Mobile section spacing adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 2.5rem 0; /* Slightly smaller for mobile */
    }
    
    .trust-section,
    .problem-section,
    .solution-section,
    .video-demos-section,
    .pricing-section,
    .comparison-section,
    .roi-calculator-section,
    .audience-section,
    .process-section,
    .faq-section {
        padding: 2.5rem 0; /* Consistent mobile spacing */
        margin-bottom: 1.5rem;
    }
    
    .cta-section {
        padding: 2.5rem 0;
        margin-bottom: 0;
    }
    
    .section-header {
        margin-bottom: 2rem; /* Reduced for mobile */
    }
}

/* Ensure all buttons are touch-friendly */
.btn, .nav-cta-btn, .calculator-btn {
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent text selection on buttons */
.btn, .nav-cta-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Improve form elements on mobile */
input, textarea, select {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

/* Better focus states for accessibility */
.btn:focus, .nav-cta-btn:focus, .nav-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Scrolling optimizations */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Improve performance on mobile */
.video-container,
.hero-visual,
.video-overlay {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Text rendering improvements */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure all elements respect container bounds */
*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

/* ========================================
   ANIMATIONS
======================================== */

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

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

.hero-visual {
    animation: float 6s ease-in-out infinite;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .navbar,
    .cta-section,
    .footer {
        display: none;
    }
}