/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Grays */
    --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;
    
    /* 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;
    
    /* Typography */
    --font-family-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-mono: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Consolas', monospace;
    --font-family: var(--font-family-body); /* Default fallback */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* 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);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

body {
    font-family: var(--font-family-body);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

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

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

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

.btn-extra-large {
    padding: var(--space-xl) var(--space-3xl);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: var(--font-size-lg);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: linear-gradient(135deg, #ec4899, #be185d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 400;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    justify-content: center;
}

.stat {
    text-align: center;
    min-width: 120px;
    flex: 1;
    max-width: 200px;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.phone-mockup {
    width: clamp(200px, 25vw, 300px);
    height: clamp(400px, 50vw, 620px);
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: var(--radius-2xl);
    padding: clamp(8px, 1.5vw, var(--space-lg));
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: clamp(8px, 1.5vw, var(--radius-xl));
    overflow: hidden;
    position: relative;
}

.telegram-chat {
    background: #17212b;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: clamp(12px, 1.8vw, 16px);
}

/* Normalize text spacing in chat */
.telegram-chat * {
    white-space: normal;
    text-indent: 0;
    margin: 0;
    padding: 0;
}

.telegram-chat .message-text {
    white-space: normal !important;
    text-align: left !important;
    display: block !important;
}

/* Additional text normalization for all screen sizes */
.message-text, 
.message-text * {
    white-space: normal !important;
    text-indent: 0 !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, var(--space-md));
    padding: clamp(6px, 1.2vw, 12px);
    background: #242f3d;
    border-bottom: 1px solid #2b3544;
}

.chat-avatar {
    width: clamp(24px, 4vw, 40px);
    height: clamp(24px, 4vw, 40px);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 2vw, var(--font-size-lg));
}

.chat-name {
    font-weight: 600;
    font-size: clamp(10px, 1.8vw, var(--font-size-base));
}

.chat-status {
    font-size: clamp(8px, 1.4vw, var(--font-size-xs));
    color: #7dd3fc;
}

.chat-messages {
    flex: 1;
    padding: clamp(4px, 1vw, 8px);
    display: flex;
    flex-direction: column;
    gap: clamp(2px, 0.5vw, 4px);
    overflow-y: auto;
}

.message {
    margin-bottom: clamp(1px, 0.1vw, 1px);
}



.bot-message .message-text {
    background: #2b5278;
    padding: clamp(4px, 1vw, 8px) clamp(6px, 1.2vw, 10px);
    border-radius: clamp(4px, 0.8vw, var(--radius-md));
    font-size: clamp(8px, 1.8vw, var(--font-size-sm));
    line-height: 1.3;
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    margin: 0;
    margin-left: 0;
    text-align: left;
    display: block;
}

/* Chat Buttons */
.chat-buttons {
    display: flex;
    gap: clamp(4px, 0.8vw, 8px);
    margin-top: clamp(2px, 0.5vw, 4px);
    max-width: 90%;
}

.chat-btn {
    flex: 1;
    padding: clamp(3px, 0.8vw, 6px) clamp(6px, 1.2vw, 10px);
    border: none;
    border-radius: clamp(3px, 0.6vw, 6px);
    font-size: clamp(8px, 1.4vw, 12px);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    min-height: clamp(18px, 2.5vw, 28px);
}

.chat-btn-accept {
    background: #4CAF50;
}

.chat-btn-accept:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.chat-btn-decline {
    background: #f44336;
}

.chat-btn-decline:hover {
    background: #da190b;
    transform: translateY(-1px);
}

/* File Attachment Styling */
.file-attachment {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 12px);
    padding: clamp(2px, 0.6vw, 4px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: clamp(4px, 0.8vw, 8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: clamp(1px, 0.3vw, 2px);
}

.file-icon {
    font-size: clamp(16px, 2.5vw, 24px);
    flex-shrink: 0;
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-weight: 500;
    font-size: clamp(9px, 1.6vw, 13px);
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: clamp(8px, 1.4vw, 11px);
    color: rgba(255, 255, 255, 0.7);
    margin-top: clamp(1px, 0.3vw, 2px);
}

.file-download {
    font-size: clamp(12px, 2vw, 18px);
    cursor: pointer;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.file-download:hover {
    transform: scale(1.1);
}

/* Telegram Comparison Section */
.telegram-comparison {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.comparison-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.comparison-item {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.comparison-image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: transform 0.3s ease;
}

.comparison-item.left .comparison-image {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.comparison-item.right .comparison-image {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.comparison-image:hover {
    transform: scale(1.05);
}

.comparison-emoji {
    font-size: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.comparison-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

.vs-divider {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

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

.telegram-explanation > p {
    font-size: var(--font-size-lg);
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.telegram-explanation h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.explanation-block {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.explanation-block p {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.explanation-block strong {
    color: var(--primary-color);
    font-weight: 600;
}

.conclusion {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.conclusion p {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.conclusion strong {
    color: white;
    font-weight: 700;
}
.focus-block {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    text-align: center;
}

.focus-block h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

/* Pain Points Section */
.pain-points {
    padding: var(--space-3xl) 0;
    background: white;
}

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

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.section-header p {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.pain-card {
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pain-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
}

.pain-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.pain-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-50), white);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.solution-text h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.solution-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
    line-height: 1.5;
}

.solution-steps {
    margin-bottom: var(--space-2xl);
}

.step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

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

/* Calendar Mockup */
.calendar-mockup {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.calendar-header h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

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

.event {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    align-items: center;
}

.event-time {
    font-weight: 600;
    color: var(--primary-color);
    font-size: var(--font-size-sm);
}

.event-title {
    font-weight: 500;
    color: var(--gray-900);
}

.event-rating {
    font-size: var(--font-size-sm);
    color: var(--accent-color);
}

/* Features Section */
.features {
    padding: var(--space-3xl) 0;
    background: white;
}

/* ScreenBot Process Section */
.screenbot-process {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-50), white);
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Timeline line */
.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%, 
        var(--primary-light) 50%, 
        var(--primary-color) 100%);
    opacity: 0.6;
    z-index: 1;
}

.process-step {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    position: relative;
    z-index: 2;
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateX(10px);
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
}

.process-number::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

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

.process-content {
    flex: 1;
}

.process-content p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
}

.process-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.process-outcomes {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.outcome {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.outcome:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.outcome.decline,
.outcome:has(.outcome-icon.decline) {
    border-left-color: var(--error-color);
}

.outcome.accept,
.outcome:has(.outcome-icon.accept) {
    border-left-color: var(--success-color);
}

.outcome-icon {
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.outcome-icon.decline {
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
}

.outcome-icon.accept {
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.outcome-text {
    font-size: var(--font-size-base);
    color: var(--gray-700);
    line-height: 1.5;
}

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

.feature-card {
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--gray-50), white);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

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

.feature-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-50), white);
}

/* Pricing Options Section */
.pricing-options {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-50), white);
}

.pricing-options-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Elegant journey line */
.pricing-options-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--primary-color) 25%, 
        var(--primary-color) 75%, 
        transparent 100%);
    background-image: repeating-linear-gradient(
        to bottom,
        var(--primary-color) 0px,
        var(--primary-color) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.6;
}

.option-block {
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Journey markers - smaller connection dots */
.option-block::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary-color);
    z-index: 3;
}

.option-block:nth-child(1) {
    align-self: flex-start;
    margin-left: 0;
}

.option-block:nth-child(1)::before {
    top: 30%;
    right: -20px;
}

.option-block:nth-child(1)::after {
    content: "1";
    position: absolute;
    top: calc(30% - 30px);
    right: -120px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    z-index: 4;
}

.option-block:nth-child(2) {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

.option-block:nth-child(2)::before {
    top: 30%;
    left: -20px;
}

.option-block:nth-child(2)::after {
    content: "2";
    position: absolute;
    top: calc(30% - 30px);
    left: -120px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    z-index: 4;
}

.option-block:nth-child(3) {
    align-self: flex-end;
    margin-right: 0;
}

.option-block:nth-child(3)::before {
    top: 30%;
    right: -20px;
}

.option-block:nth-child(3)::after {
    content: "3";
    position: absolute;
    top: calc(30% - 30px);
    right: -120px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    z-index: 4;
}

.option-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.option-block h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.option-block p {
    font-size: var(--font-size-lg);
    color: var(--gray-700);
    line-height: 1.6;
    text-align: left;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    align-items: stretch;
    justify-content: center;
}

.pricing-wrapper {
    width: 90vw;
    max-width: none;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    position: relative;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 800px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-popular {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, white, #fafbff);
    transform: scale(1.05);
}

.pricing-popular:hover {
    transform: translateY(-8px) scale(1.05);
}

.pricing-premium {
    border-color: #d97706;
    background: linear-gradient(135deg, white, #fffbeb);
}

.pricing-premium:hover {
    transform: translateY(-8px);
}

.pricing-premium .pricing-ribbon {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.pricing-premium .pricing-badge {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
}

.pricing-premium .price-amount {
    background: linear-gradient(135deg, #d97706, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-elite {
    border: 3px solid #9333ea;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.4);
}

.pricing-elite::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #9333ea, #ec4899, #f59e0b, #10b981, #3b82f6, #9333ea);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    border-radius: inherit;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pricing-elite:hover {
    transform: translateY(-18px) scale(1.02);
}

.pricing-elite .pricing-ribbon {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.pricing-availability {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 4px var(--space-sm);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    animation: urgencyPulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes urgencyPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.pricing-elite .pricing-badge {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
    font-weight: 600;
}

.pricing-elite .pricing-icon {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(147, 51, 234, 0.3));
}

.pricing-elite .price-amount {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.pricing-elite .price-highlight {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    border: 2px solid rgba(147, 51, 234, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.pricing-ribbon {
    position: absolute;
    top: -2px;
    right: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    margin-bottom: var(--space-xl);
}

.pricing-description {
    margin-bottom: var(--space-lg);
    text-align: left;
    flex-shrink: 0;
}

.pricing-description p {
    color: var(--gray-600);
    font-size: var(--font-size-base);
    line-height: 1.5;
    font-style: italic;
    background: var(--gray-50);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
}

.custom-examples {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.pricing-premium .custom-examples {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05), rgba(217, 119, 6, 0.02));
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.pricing-premium .custom-examples strong {
    color: #d97706;
}

.custom-examples p {
    background: none;
    border: none;
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-md);
    font-style: normal;
    color: var(--gray-700);
    font-size: var(--font-size-sm);
}

.custom-examples p:last-child {
    margin-bottom: 0;
}

.pricing-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
}

.pricing-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.pricing-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.pricing-popular .pricing-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.pricing-price {
    margin-bottom: var(--space-2xl);
    flex-shrink: 0;
}

.price-amount {
    display: block;
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-popular .price-amount {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    font-weight: 500;
    margin-top: var(--space-sm);
}

.price-highlight {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--success-color);
    text-align: center;
    animation: pulse 2s infinite;
}

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

.pricing-features {
    margin-bottom: var(--space-lg);
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-features .feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.feature-icon {
    color: var(--success-color);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features .feature span:last-child {
    color: var(--gray-700);
    line-height: 1.5;
}

.pricing-features .feature small {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    font-style: italic;
    display: block;
    margin-top: 4px;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.note-icon {
    font-size: var(--font-size-xl);
    color: var(--success-color);
}

.pricing-note span:last-child {
    color: var(--gray-700);
    font-weight: 500;
    text-align: center;
}

.pricing-card .btn {
    margin-top: auto;
    width: 70%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* Final CTA Section */
.final-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
}

.cta-buttons-final {
    margin-bottom: var(--space-xl);
}

.cta-options {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.guarantee {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-icon {
    color: var(--success-color);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-info h3,
.footer-contact h4,
.footer-legal h4 {
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.footer-info p,
.footer-contact p {
    color: var(--gray-300);
    margin-bottom: var(--space-sm);
}

.footer-legal a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-lg);
    text-align: center;
    color: var(--gray-400);
}

.footer-bottom p {
    margin-bottom: var(--space-sm);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, var(--font-size-4xl));
    }
    
    .phone-mockup {
        transform: none;
        width: clamp(240px, 35vw, 320px);
        height: clamp(500px, 70vw, 680px);
    }
}

/* Medium screens - maintain 3 columns */
/* Enhanced Mobile Responsiveness */
@media (max-width: 640px) {
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .phone-mockup {
        width: clamp(200px, 50vw, 240px);
        height: clamp(400px, 95vw, 480px);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
        margin-bottom: var(--space-lg);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: var(--space-xl);
    }
    
    .hero-badge {
        font-size: clamp(0.75rem, 2vw, 0.875rem);
        padding: clamp(6px, 1vw, 8px) clamp(12px, 2vw, 16px);
    }
    
    .hero-stats {
        gap: var(--space-md);
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: clamp(80px, 25vw, 120px);
        flex: 1;
        max-width: 150px;
    }
    
    .stat-number {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.7rem, 1.8vw, 0.875rem);
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
        max-width: 100%;
        padding: 0 var(--space-md);
    }
    
    .pricing-card {
        min-height: 480px;
        padding: var(--space-lg);
    }
    
    .pricing-popular,
    .pricing-premium {
        transform: none;
    }
    
    .pricing-popular:hover,
    .pricing-premium:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .telegram-comparison {
        padding: var(--space-2xl) 0;
    }
    
    .comparison-visual {
        flex-direction: column;
        gap: var(--space-lg);
        margin-bottom: var(--space-2xl);
    }
    
    .comparison-item {
        max-width: 100%;
        width: 100%;
    }
    
    .comparison-image {
        width: 80px;
        height: 80px;
        margin: 0 auto var(--space-md);
    }
    
    .comparison-emoji {
        font-size: 40px;
    }
    
    .comparison-item h3 {
        font-size: var(--font-size-base);
        line-height: 1.4;
        padding: 0 var(--space-sm);
    }
    
    .vs-divider {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
        font-weight: 700;
        order: 2;
    }
    
    .comparison-item.left {
        order: 1;
    }
    
    .comparison-item.right {
        order: 3;
    }
    
    .telegram-explanation {
        padding: 0 var(--space-md);
    }
    
    .telegram-explanation > p {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-lg);
        text-align: left;
    }
    
    .telegram-explanation h3 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-md);
        text-align: center;
    }
    
    .explanation-block {
        padding: var(--space-lg);
        text-align: center;
    }
    
    .conclusion {
        padding: var(--space-lg);
    }
    
    .conclusion p {
        font-size: var(--font-size-base);
    }
    
    .pricing-options-content {
        max-width: 100%;
        padding: 0 var(--space-md);
    }
    
    .pricing-options-content::before {
        display: none !important;
    }
    
    .option-block::before,
    .option-block::after {
        display: none !important;
    }
    
    .option-block {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        align-self: stretch !important;
    }
    
    .hero {
        padding: var(--space-2xl) 0;
        min-height: auto;
    }
    
    .phone-mockup {
        width: clamp(220px, 45vw, 280px);
        height: clamp(460px, 90vw, 600px);
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5.5vw, var(--font-size-3xl));
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 2.8vw, var(--font-size-lg));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--space-lg);
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
        flex: 0 1 auto;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .pricing-wrapper {
        width: 95vw;
        padding: 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: 100%;
        padding: 0;
    }
    
    .pricing-card {
        padding: var(--space-lg);
        min-height: auto;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-popular {
        transform: none;
        margin: 0;
    }
    
    .pricing-premium {
        transform: none;
        margin: 0;
    }
    
    .pricing-popular:hover {
        transform: translateY(-8px);
    }
    
    .pricing-premium:hover {
        transform: translateY(-8px);
    }
    
    .pricing-elite {
        transform: none;
        margin: 0;
    }
    
    .pricing-elite:hover {
        transform: translateY(-8px);
    }
    
    .pricing-ribbon {
        right: var(--space-md);
        font-size: var(--font-size-xs);
        padding: 4px var(--space-md);
    }
    
    .pricing-availability {
        left: var(--space-sm);
        top: var(--space-sm);
        font-size: 10px;
        padding: 2px var(--space-xs);
    }
    
    .price-amount {
        font-size: var(--font-size-4xl);
    }
    
    .section-header h2 {
        font-size: var(--font-size-3xl);
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: var(--font-size-base);
    }
    
    .cta-options {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .step-number {
        align-self: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        padding: var(--space-md);
    }
    
    /* Responsive bot message text for medium phone mockups */
    .bot-message .message-text {
        font-size: clamp(10px, 2.3vw, 13px);
        padding: 10px 12px;
    }
    
    /* ScreenBot Process responsive adjustments */
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .process-number::after {
        display: none;
    }
    
    .process-outcomes {
        gap: var(--space-sm);
    }
    
    .outcome {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .chat-messages {
        padding: var(--space-md);
        gap: var(--space-sm);
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
        padding: var(--space-md);
    }
}

/* Very small screens - 320px to 480px */
@media (max-width: 480px) and (min-width: 320px) {
    .phone-mockup {
        width: clamp(160px, 50vw, 200px);
        height: clamp(340px, 80vh, 450px);
        padding: clamp(8px, 2vw, 12px);
    }
    
    /* Dynamic responsive bot message text */
    .bot-message .message-text {
        font-size: clamp(8px, 2.2vw, 12px);
        padding: clamp(4px, 1.5vw, 10px) clamp(6px, 2vw, 12px);
        line-height: 1.3;
    }
    
    /* Dynamic chat buttons */
    .chat-btn {
        padding: clamp(3px, 1vw, 6px) clamp(4px, 1.5vw, 8px);
        font-size: clamp(7px, 2vw, 10px);
        min-height: clamp(18px, 5vw, 24px);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .phone-mockup {
        width: clamp(180px, 55vw, 220px);
        height: clamp(360px, 105vw, 440px);
        padding: clamp(6px, 1.2vw, 10px);
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 4.5vw, 1.875rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }
    
    .hero-stats {
        gap: var(--space-sm);
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat {
        min-width: clamp(70px, 20vw, 90px);
        flex: 1;
    }
    
    .stat-number {
        font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    }
    
    .stat-label {
        font-size: clamp(0.65rem, 1.6vw, 0.75rem);
        line-height: 1.3;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
    }
    
    .btn-extra-large {
        padding: var(--space-lg) var(--space-xl);
        font-size: var(--font-size-lg);
    }
    
    /* Telegram comparison mobile styles */
    .telegram-comparison {
        padding: var(--space-xl) 0;
    }
    
    .comparison-visual {
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .comparison-item {
        padding: 0 var(--space-xs);
    }
    
    .comparison-image {
        width: 60px;
        height: 60px;
        margin: 0 auto var(--space-sm);
    }
    
    .comparison-emoji {
        font-size: 30px;
    }
    
    .comparison-item h3 {
        font-size: var(--font-size-sm);
        line-height: 1.3;
    }
    
    .vs-divider {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
        font-weight: 600;
    }
    
    .telegram-explanation {
        padding: 0 var(--space-sm);
    }
    
    .telegram-explanation > p {
        font-size: var(--font-size-sm);
        text-align: center;
    }
    
    .telegram-explanation h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-sm);
    }
    
    .explanation-block {
        padding: var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .explanation-block p {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }
    
    .conclusion {
        padding: var(--space-md);
        margin-top: var(--space-lg);
    }
    
    .conclusion p {
        font-size: var(--font-size-sm);
        line-height: 1.5;
    }
    
    /* ScreenBot Process mobile adjustments */
    .screenbot-process {
        padding: var(--space-xl) 0;
    }
    
    .process-steps {
        gap: var(--space-lg);
        padding: 0 var(--space-md);
    }
    
    .process-step {
        padding: var(--space-lg);
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
        align-self: center;
    }
    
    .process-content p {
        font-size: var(--font-size-base);
    }
    
    .outcome {
        padding: var(--space-sm);
        flex-direction: column;
        text-align: center;
        gap: var(--space-xs);
    }
    
    .outcome-text {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .phone-mockup {
        width: clamp(160px, 60vw, 190px);
        height: clamp(320px, 115vw, 380px);
        padding: clamp(4px, 1vw, 8px);
    }
    
    .hero-title {
        font-size: clamp(1.125rem, 4vw, 1.5rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    .hero-stats {
        gap: 8px;
        justify-content: space-around;
    }
    
    .stat {
        min-width: clamp(60px, 18vw, 80px);
        flex: 1;
    }
    
    .stat-number {
        font-size: clamp(0.8rem, 2.2vw, 1.125rem);
        white-space: nowrap;
    }
    
    .stat-label {
        font-size: clamp(0.6rem, 1.4vw, 0.75rem);
        line-height: 1.2;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.875rem;
        min-height: 44px;
    }
    
    .section-header h2 {
        font-size: clamp(1.25rem, 3.5vw, 1.875rem);
    }
    
    .hero-badge {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        padding: 4px 12px;
    }

/* Extra small screens - below 400px */
@media (max-width: 400px) {
    .phone-mockup {
        width: 160px;
        height: 340px;
        padding: 8px;
    }
    
    /* Ultra-responsive bot message text */
    .bot-message .message-text {
        font-size: clamp(7px, 1.8vw, 10px);
        padding: 4px 6px;
        line-height: 1.2;
    }
    
    /* Ultra-responsive chat elements */
    .chat-btn {
        padding: 3px 5px;
        font-size: 8px;
        min-height: 20px;
    }
    
    .chat-buttons {
        gap: 4px;
        margin-top: 4px;
    }
    
    .chat-header {
        padding: 6px;
        gap: 8px;
    }
    
    .chat-avatar {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .chat-name {
        font-size: 10px;
    }
    
    .chat-status {
        font-size: 8px;
    }
    
    .chat-messages {
        padding: 4px;
        gap: 3px;
    }
    
    /* File attachment ultra-responsive */
    .file-attachment {
        padding: 3px;
        gap: 4px;
        margin-top: 2px;
    }
    
    .file-icon {
        font-size: 14px;
    }
    
    .file-name {
        font-size: 8px;
        line-height: 1.1;
    }
    
    .file-size {
        font-size: 7px;
        margin-top: 1px;
    }
    
    .file-download {
        font-size: 10px;
    }
    
    /* ScreenBot Process ultra-small screens */
    .process-step {
        padding: 12px;
        gap: var(--space-sm);
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-sm);
    }
    
    .process-content p {
        font-size: var(--font-size-xs);
        line-height: 1.3;
    }
    
    .outcome {
        padding: 6px;
        gap: 4px;
    }
    
    .outcome-text {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .outcome-icon {
        font-size: var(--font-size-base);
    }
}

/* Enhanced Typography System */

/* Headings - Montserrat */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-header h2,
.pricing-card h3,
.feature-card h3,
.pain-card h3,
.comparison-item h3,
.telegram-explanation h3,
.option-block h3 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.hero-title {
    font-weight: 800;
    letter-spacing: -0.05em;
}

.section-header h2 {
    font-weight: 700;
}

/* Numbers and Stats - JetBrains Mono */
.stat-number,
.process-number,
.step-number,
.event-time,
.file-size,
.phone-mockup,
.chat-messages,
.option-block::after {
    font-family: var(--font-family-mono);
    font-weight: 600;
}

/* Pricing amounts - Montserrat for better readability */
.price-amount {
    font-family: var(--font-family-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Technical UI Elements - JetBrains Mono */
.chat-name,
.file-name,
.btn-icon,
.feature-icon,
.pain-icon,
.pricing-icon,
.note-icon,
.outcome-icon {
    font-family: var(--font-family-mono);
    font-weight: 500;
}

/* Body Text - Source Sans Pro (already default) */
.hero-subtitle,
.solution-subtitle,
.pricing-description p,
.explanation-block p,
.feature-card p,
.pain-card p,
.process-content p,
.outcome-text {
    font-family: var(--font-family-body);
    font-weight: 400;
    line-height: 1.6;
}

/* Emphasized text */
.hero-badge span,
.pricing-badge,
.conclusion p,
.guarantee span {
    font-family: var(--font-family-body);
    font-weight: 600;
}

/* Buttons */
.btn {
    font-family: var(--font-family-body);
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Chat Interface Styling */
.telegram-chat {
    font-family: var(--font-family-body);
}

.bot-message .message-text {
    font-family: var(--font-family-body);
    font-weight: 400;
}

.chat-btn {
    font-family: var(--font-family-body);
    font-weight: 500;
}

/* Form elements */
.form-group label,
.form-group input,
.form-group textarea {
    font-family: var(--font-family-body);
}
