/* Документы Легко - Landing Page (Platform Style) */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --secondary: #64748b;
    --success: #10b981;
    --success-light: #d1fae5;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 12px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: var(--bg-body);
}

.nav-actions .btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

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

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

/* Hero Section */
.hero {
    padding: 4rem 0 5rem;
    background: var(--bg-body);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    background: transparent;
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

/* Interactive Demo */
.interactive-demo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 300px;
}

.demo-passport {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 200px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.demo-passport:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.passport-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.passport-content {
    display: flex;
    gap: 1rem;
}

.passport-photo {
    width: 50px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    opacity: 0.3;
}

.passport-data {
    flex: 1;
}

.data-line {
    font-size: 0.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.demo-ai-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
}

.demo-document {
    background: transparent;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 280px;
    min-height: 280px;
    transition: all var(--transition-normal);
}

.document-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.document-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 200px;
}

.doc-line {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.doc-line .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1;
}

.doc-line .value {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-family: monospace;
    transition: all 0.5s ease;
    min-height: 1.25rem;
    word-break: break-word;
    line-height: 1.3;
}

.doc-line .value.filled {
    color: var(--success);
    font-weight: 600;
}

.demo-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    min-height: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-body);
    border-color: var(--primary);
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--bg-card);
}

section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 0 3rem;
    line-height: 1.6;
}

/* Zigzag Layout */
.zigzag-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.zigzag-section:last-child {
    margin-bottom: 0;
}

.zigzag-section.reverse {
    direction: rtl;
}

.zigzag-section.reverse > * {
    direction: ltr;
}

.zigzag-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.zigzag-content .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.zigzag-content .step-number {
    background: var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.zigzag-visual {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Interactive Steps */
.steps-interactive {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.step-interactive {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.step-interactive:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.step-title p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.step-demo {
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: 2rem;
    min-height: 200px;
}

.step-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.step-status.success {
    color: var(--success);
}

/* Step 1: Template Selection */
.template-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.template-item {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    min-width: 140px;
}

.template-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.template-item.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.template-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.template-name {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.template-check {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Step 2: Camera */
.camera-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.camera-frame {
    width: 200px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-card) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { top: 0; }
    50% { top: calc(100% - 2px); }
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary);
}

.corner.tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner.tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner.bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner.br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.camera-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.camera-button:hover {
    transform: scale(1.1);
}

.shutter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
}

.recognition-result {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-line {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.result-line span {
    color: var(--text-muted);
    font-family: monospace;
    transition: all 0.5s ease;
}

.result-line.filled span {
    color: var(--success);
    font-weight: 600;
}

/* Step 3: Document Preview */
.document-preview {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.doc-header {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.doc-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.doc-line {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    transition: all 0.5s ease;
}

.doc-line.filled {
    background: var(--success);
    opacity: 0.6;
}

.doc-line.short {
    width: 60%;
}

.doc-signature {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

.download-btn.docx:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.download-btn.pdf:hover {
    border-color: var(--danger);
    background: var(--danger-light);
}

.btn-icon {
    font-size: 1.25rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
    position: relative;
}

.timeline-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--border) 100%);
    margin-top: 1rem;
    min-height: 80px;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-color: var(--primary);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--primary);
    opacity: 0.2;
    transition: all var(--transition-normal);
}

.timeline-content:hover .timeline-icon {
    opacity: 0.4;
    transform: scale(1.1);
}

.timeline-icon svg {
    stroke: currentColor;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.step {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.step-number {
    background: var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Slider */
.slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.slider-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-primary);
}

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

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .interactive-demo {
        flex-direction: column;
        gap: 1.5rem;
    }

    .demo-passport,
    .demo-document {
        width: 100%;
    }

    .demo-arrow svg {
        transform: rotate(90deg);
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }

    .timeline-icon {
        display: none;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .step-number-badge {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .step-title h3 {
        font-size: 1.25rem;
    }

    .step-demo {
        padding: 1.5rem;
    }

    .template-list {
        flex-direction: column;
        align-items: stretch;
    }

    .template-item {
        min-width: auto;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.example-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.example-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.profession-icon {
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
}

.example-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.example-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Professions */
.professions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.profession-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.profession-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.profession-card .profession-icon {
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.profession-card:hover .profession-icon {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.profession-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.profession-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    border: 1px solid var(--border);
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.comparison-table th {
    background: var(--bg-body);
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .highlight {
    background: var(--primary-light);
    font-weight: 600;
    color: var(--primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-mark::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.cross-mark::before {
    content: "✕";
    color: var(--danger);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.warning-mark::before {
    content: "⚠";
    color: var(--warning);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.check-mark {
    color: var(--text-primary);
}

.cross-mark {
    color: var(--text-secondary);
}

.warning-mark {
    color: var(--text-primary);
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
    content: 'Популярный';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

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

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0;
    line-height: 1;
}

.pricing-card .period {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.btn-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-block:hover::after {
    width: 300px;
    height: 300px;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contacts */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    margin: 0 auto 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.contact-icon svg {
    stroke: currentColor;
    width: 24px;
    height: 24px;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.contact-card a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
}

/* Live Activity Counter (Between Sections) */
.live-activity-counter-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.live-activity-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Fire Background Emojis */
.fire-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.fire-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float-fire 3s ease-in-out infinite;
}

.fire-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 1.5rem; }
.fire-2 { top: 20%; left: 15%; animation-delay: 0.5s; font-size: 2.5rem; }
.fire-3 { top: 60%; left: 8%; animation-delay: 1s; font-size: 1.8rem; }
.fire-4 { top: 80%; left: 12%; animation-delay: 1.5s; font-size: 2rem; }
.fire-5 { top: 15%; right: 10%; animation-delay: 0.3s; font-size: 2.2rem; }
.fire-6 { top: 45%; right: 5%; animation-delay: 0.8s; font-size: 1.6rem; }
.fire-7 { top: 70%; right: 15%; animation-delay: 1.2s; font-size: 2.3rem; }
.fire-8 { top: 35%; left: 25%; animation-delay: 0.6s; font-size: 1.7rem; }
.fire-9 { top: 55%; right: 25%; animation-delay: 1.4s; font-size: 2.1rem; }
.fire-10 { top: 25%; left: 50%; animation-delay: 0.9s; font-size: 1.9rem; }
.fire-11 { top: 75%; left: 45%; animation-delay: 1.1s; font-size: 2.4rem; }
.fire-12 { top: 50%; right: 35%; animation-delay: 1.3s; font-size: 1.5rem; }

@keyframes float-fire {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.25;
    }
}

.live-activity-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-primary);
    padding: 1.5rem 3rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow:
        0 4px 20px rgba(59, 130, 246, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08);
    width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.live-activity-counter:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(59, 130, 246, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

.live-activity-counter #users-online,
.live-activity-counter #docs-today {
    font-weight: 800;
    color: var(--primary);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.15);
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
    min-width: 3.5ch;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.live-activity-counter #total-users {
    font-weight: 800;
    color: var(--success);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.15);
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
    min-width: 5ch;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.live-activity-counter #users-label,
.live-activity-counter #docs-label,
.live-activity-counter #total-users-label {
    font-weight: 700;
    color: #9ca3af;
    font-size: 1.125rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Стили для текста около цифр */
.live-activity-counter .counter-label-bold {
    font-weight: 700;
    color: #9ca3af;
    font-size: 1.125rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.live-activity-counter .counter-text-thin {
    font-weight: 400;
    color: #1f2937;
    font-size: 1.125rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.live-activity-counter::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.1));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.live-activity-counter:hover::after {
    opacity: 1;
}

/* Live Notification Widget (Bottom Right) */
.live-notification-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
    border: 1px solid var(--border);
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.live-notification-widget.show {
    opacity: 1;
    transform: translateX(0);
}

.widget-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.widget-content {
    flex: 1;
}

.widget-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.widget-action {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.widget-time {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Modal Notification (Top Center) */
.modal-notification {
    position: fixed;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    border: 2px solid var(--primary);
    z-index: 1001;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.modal-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-text {
    flex: 1;
}

.modal-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer */
footer {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
}

.mobile-menu-toggle:hover {
    background: var(--bg-body);
    border-color: var(--primary);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    gap: 0.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border: 1px solid var(--border);
    border-top: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .hero-content,
    .zigzag-section {
        gap: 3rem;
    }

    .interactive-demo {
        gap: 1.5rem;
    }

    .demo-passport,
    .demo-document {
        padding: 1.25rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-stats {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 140px;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
        padding: 1rem 2rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.75rem;
    }

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

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .zigzag-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zigzag-section.reverse {
        direction: ltr;
    }

    .zigzag-content h2,
    .zigzag-content .section-subtitle {
        text-align: center;
    }

    .slider-container {
        padding: 0 1rem;
    }

    .slider-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .slider-controls {
        gap: 0.75rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .slider-dots {
        gap: 0.5rem;
    }

    /* Interactive Demo Mobile */
    .interactive-demo {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .demo-passport,
    .demo-document {
        width: 100%;
        max-width: 100%;
        padding: 1.25rem;
    }

    .demo-arrow {
        transform: rotate(90deg);
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .demo-arrow svg {
        width: 32px;
        height: 32px;
    }

    .demo-ai-badge {
        width: 28px;
        height: 28px;
        font-size: 0.625rem;
    }

    .passport-header,
    .document-title {
        font-size: 0.75rem;
    }

    .passport-photo {
        width: 60px;
        height: 80px;
    }

    .data-line {
        font-size: 0.75rem;
    }

    .doc-line .label {
        font-size: 0.7rem;
    }

    .doc-line .value {
        font-size: 0.8rem;
    }

    /* Step Interactive Mobile */
    .step-interactive {
        padding: 1.5rem;
    }

    .step-demo {
        padding: 1.5rem;
    }

    .template-item {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .template-icon {
        width: 32px;
        height: 32px;
    }

    .camera-frame {
        width: 200px;
        height: 150px;
    }

    .scan-line {
        height: 2px;
    }

    .document-preview {
        padding: 1rem;
    }

    .preview-header {
        font-size: 0.875rem;
        padding: 0.75rem;
    }

    .preview-content {
        padding: 1rem;
        font-size: 0.8rem;
    }

    .preview-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .preview-actions .btn {
        width: 100%;
    }

    /* Comparison Table Mobile */
    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--bg-card);
        z-index: 1;
        min-width: 120px;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* FAQ Mobile */
    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
        padding-right: 2rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    /* Contact Cards Mobile */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Mobile-specific improvements */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .feature-card h3,
    .example-card h3,
    .profession-card h3 {
        font-size: 1rem;
    }

    .feature-card p,
    .example-card p,
    .profession-card p {
        font-size: 0.875rem;
    }

    /* Improve touch targets */
    .btn,
    .slider-btn,
    .slider-dot,
    .faq-toggle,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    /* Better spacing for mobile */
    .hero-stats {
        padding: 1.5rem 0;
    }

    .pricing-features {
        gap: 0.75rem;
    }

    /* Live notifications mobile */
    .live-activity-counter-section {
        padding: 2rem 0;
    }

    .fire-emoji {
        font-size: 1.5rem;
    }

    .fire-1 { font-size: 1.2rem; }
    .fire-2 { font-size: 1.8rem; }
    .fire-3 { font-size: 1.4rem; }
    .fire-4 { font-size: 1.5rem; }
    .fire-5 { font-size: 1.6rem; }
    .fire-6 { font-size: 1.3rem; }
    .fire-7 { font-size: 1.7rem; }
    .fire-8 { font-size: 1.4rem; }
    .fire-9 { font-size: 1.6rem; }
    .fire-10 { font-size: 1.5rem; }
    .fire-11 { font-size: 1.8rem; }
    .fire-12 { font-size: 1.2rem; }

    .live-activity-counter {
        font-size: 0.95rem;
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
        min-width: auto;
        max-width: calc(100% - 2rem);
    }

    .live-activity-counter #users-online,
    .live-activity-counter #docs-today {
        font-size: 1.5rem;
        min-width: 2.5ch;
    }

    .live-activity-counter #total-users {
        font-size: 1.5rem;
        min-width: 4ch;
    }

    .live-activity-counter #users-label,
    .live-activity-counter #docs-label,
    .live-activity-counter #total-users-label {
        font-size: 0.95rem;
    }

    .live-notification-widget {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }

    .modal-notification {
        top: 5rem;
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
        transform: translateX(0) translateY(-150px);
        padding: 1rem 1.25rem;
    }

    .modal-notification.show {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        padding: 2rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

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

    section {
        padding: 2.5rem 0;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .step,
    .example-card,
    .profession-card,
    .pricing-card,
    .faq-item {
        padding: 1.25rem 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .btn-lg {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }

    .interactive-demo {
        padding: 1rem;
        gap: 1rem;
    }

    .demo-passport,
    .demo-document {
        padding: 1rem;
    }

    .demo-arrow {
        width: 50px;
        height: 50px;
    }

    .demo-arrow svg {
        width: 28px;
        height: 28px;
    }

    .step-interactive {
        padding: 1rem;
    }

    .step-demo {
        padding: 1rem;
    }

    .template-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .camera-frame {
        width: 160px;
        height: 120px;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.35rem;
    }

    .check-mark::before,
    .cross-mark::before,
    .warning-mark::before {
        font-size: 0.875rem;
        margin-right: 0.25rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .example-icon,
    .profession-icon {
        width: 40px;
        height: 40px;
    }

    .example-icon svg,
    .profession-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Very small screen optimizations */
    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.875rem;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .pricing-features li {
        font-size: 0.875rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.875rem;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.875rem;
    }

    /* Improve readability on small screens */
    body {
        font-size: 0.9375rem;
    }

    /* Reduce animation intensity on small screens */
    .hero-content,
    .hero h1,
    .hero-subtitle,
    .hero-stats,
    .hero-cta {
        animation-duration: 0.6s;
    }

    /* Better button spacing */
    .hero-cta {
        gap: 0.75rem;
    }

    .btn {
        font-size: 0.875rem;
    }

    /* Optimize slider controls for small screens */
    .slider-controls {
        margin-top: 1rem;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
    }

    .slider-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Footer optimization */
    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section a,
    .footer-section li {
        font-size: 0.875rem;
    }

    .footer-bottom {
        font-size: 0.8125rem;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

.hero h1 {
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat {
    transition: transform var(--transition-normal);
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-value {
    animation: scaleIn 0.6s ease-out;
}

section h2 {
    animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.step {
    animation: fadeInUp 0.6s ease-out backwards;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.3s;
}

.step:nth-child(4) {
    animation-delay: 0.4s;
}

.step-number {
    transition: all var(--transition-normal);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.example-card {
    animation: scaleIn 0.6s ease-out backwards;
}

.example-card:nth-child(1) {
    animation-delay: 0.1s;
}

.example-card:nth-child(2) {
    animation-delay: 0.2s;
}

.example-card:nth-child(3) {
    animation-delay: 0.3s;
}

.example-card:nth-child(4) {
    animation-delay: 0.4s;
}

.example-card:nth-child(5) {
    animation-delay: 0.5s;
}

.example-card:nth-child(6) {
    animation-delay: 0.6s;
}

.profession-icon {
    transition: all var(--transition-normal);
}

.example-card:hover .profession-icon {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.profession-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.profession-card:nth-child(1) {
    animation-delay: 0.1s;
}

.profession-card:nth-child(2) {
    animation-delay: 0.2s;
}

.profession-card:nth-child(3) {
    animation-delay: 0.3s;
}

.profession-card:nth-child(4) {
    animation-delay: 0.4s;
}

.profession-card:nth-child(5) {
    animation-delay: 0.5s;
}

.profession-card:nth-child(6) {
    animation-delay: 0.6s;
}

.profession-card:nth-child(7) {
    animation-delay: 0.7s;
}

.profession-card:nth-child(8) {
    animation-delay: 0.8s;
}

.comparison-table {
    animation: fadeIn 0.8s ease-out;
}

.comparison-table tr {
    animation: slideInLeft 0.5s ease-out backwards;
}

.comparison-table tr:nth-child(1) {
    animation-delay: 0.1s;
}

.comparison-table tr:nth-child(2) {
    animation-delay: 0.2s;
}

.comparison-table tr:nth-child(3) {
    animation-delay: 0.3s;
}

.comparison-table tr:nth-child(4) {
    animation-delay: 0.4s;
}

.comparison-table tr:nth-child(5) {
    animation-delay: 0.5s;
}

.comparison-table tr:nth-child(6) {
    animation-delay: 0.6s;
}

.pricing-card {
    animation: scaleIn 0.6s ease-out backwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card.featured {
    animation: pulse 2s ease-in-out infinite;
}

.pricing-card .btn {
    position: relative;
    overflow: hidden;
}

.pricing-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.faq-item {
    animation: fadeInUp 0.5s ease-out backwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.25s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.35s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.4s;
}

.contact-card {
    animation: scaleIn 0.6s ease-out backwards;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.logo {
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    transition: transform var(--transition-normal);
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
}

/* SVG icon styles */
.profession-icon svg {
    stroke: currentColor;
    width: 24px;
    height: 24px;
}

.logo-icon svg {
    stroke: currentColor;
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle svg {
    width: 20px;
    height: 20px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== NEW CTA STYLES ==================== */

/* Hero CTA Note */
.hero-cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* Section CTA (after How It Works, Examples, For Whom) */
.section-cta {
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 20px;
}

.section-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.section-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.section-cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Note */
.pricing-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    padding: 80px 20px;
    color: white;
}

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

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.final-cta-buttons .btn {
    min-width: 240px;
}

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

.final-cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.final-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.final-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.final-cta-social-proof {
    margin-top: 24px;
}

.rating-stars {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.rating-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Sticky CTA Button - Dynamic Floating */
.sticky-cta {
    position: fixed;
    z-index: 10000; /* Above popup */
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease, left 0.6s ease, top 0.6s ease, bottom 0.6s ease, right 0.6s ease;
    pointer-events: none;
    animation: floatingPulse 2s ease-in-out infinite;
}

.sticky-cta.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border-radius: 50px; /* Очень закругленные углы */
    animation: strongPulse 2s ease-in-out infinite;
}

.sticky-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sticky-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

.sticky-cta .btn:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.7);
    transform: translateY(-3px) scale(1.08);
    animation: none; /* Остановить пульсацию при наведении */
}

/* Strong pulse animation */
@keyframes strongPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 36px rgba(99, 102, 241, 0.7);
    }
}

/* Floating pulse animation (legacy - keeping for compatibility) */
@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 12px 32px rgba(99, 102, 241, 0.6);
    }
}

/* Appear animation */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    70% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Shake animation for escaping button */
@keyframes shake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateX(10px) rotate(5deg);
    }
}

.sticky-cta.appearing {
    animation: popIn 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-cta {
        padding: 40px 20px;
        margin-top: 30px;
    }

    .section-cta-title {
        font-size: 1.5rem;
    }

    .section-cta-subtitle {
        font-size: 1rem;
    }

    .final-cta-title {
        font-size: 1.8rem;
    }

    .final-cta-subtitle {
        font-size: 1.1rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }

    .sticky-cta .btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ==================== EXIT-INTENT POPUP STYLES ==================== */

/* Overlay */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Base Popup */
.exit-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), transform var(--transition-slow), visibility var(--transition-slow);
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Close Button */
.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    z-index: 10;
}

.exit-popup-close:hover {
    background: var(--danger-light);
    color: var(--danger);
    border-color: var(--danger);
    transform: rotate(90deg);
}

/* Popup Content */
.exit-popup-content {
    padding: 48px 40px 40px;
}

.exit-popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
}

.exit-popup-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.5;
}

/* Scenario A: Choice Cards */
.exit-popup-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.exit-popup-choice-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.exit-popup-choice-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.choice-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.choice-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.choice-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.choice-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.choice-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.choice-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.choice-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Popup Form */
.exit-popup-form {
    margin-bottom: 24px;
}

.exit-popup-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
    transition: all var(--transition-normal);
    background: var(--bg-card);
    color: var(--text-primary);
}

.exit-popup-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.exit-popup-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 8px;
}

/* Success Message */
.exit-popup-success {
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
    animation: successPulse 0.6s ease;
}

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

.exit-popup-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.exit-popup-success p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Social Proof */
.exit-popup-social-proof {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.exit-popup-social-proof p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

/* Scenario B: Discount Offer */
.exit-popup-discount {
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    text-align: center;
}

.discount-price {
    margin-bottom: 24px;
}

.price-old {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-right: 12px;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.discount-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.discount-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.discount-promo {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 2px dashed var(--primary);
}

.promo-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.promo-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.promo-timer {
    font-size: 0.875rem;
    color: var(--danger);
    font-weight: 600;
}

.promo-timer span {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

/* Popup Buttons */
.exit-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.exit-popup-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
}

/* Scenario C: Reactivation */
.exit-popup-reactivation {
    margin-bottom: 32px;
}

.reactivation-offer {
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.offer-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.offer-text strong {
    color: var(--primary);
    font-weight: 600;
}

.reactivation-timer {
    background: var(--bg-card);
    border: 1px solid var(--danger-light);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.timer-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.timer-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--danger);
    font-family: 'Courier New', monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .exit-popup {
        width: 95%;
        max-height: 95vh;
    }

    .exit-popup-content {
        padding: 40px 24px 24px;
    }

    .exit-popup-title {
        font-size: 1.5rem;
    }

    .exit-popup-subtitle {
        font-size: 0.95rem;
    }

    .exit-popup-choices {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .discount-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .price-old {
        font-size: 1.2rem;
    }

    .price-new {
        font-size: 2rem;
    }

    .promo-code {
        font-size: 1.5rem;
    }

    .timer-value {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.exit-popup.active {
    animation: slideInUp 0.4s ease;
}
