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

:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --secondary-color: #2a2a2a;
    --accent-color: #ff6b35;
    --accent-orange: #ff6b35;
    --text-dark: #000000;
    --text-gray: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success: #ff6b35;
    --danger: #ff6b35;
    --warning: #ff6b35;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    padding-top: 72px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 24px;
}

.version-badge {
    font-size: 10px;
    font-weight: 600;
    background: var(--accent-orange);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
}

.lang-switcher label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.lang-switcher select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 28px 6px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-switcher select:hover {
    border-color: var(--accent-orange);
}

.lang-switcher select:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

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

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

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

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

.btn-large {
    padding: 14px 32px;
    font-size: 15px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.btn-arrow {
    margin-left: 8px;
}

.btn-header {
    padding: 10px 20px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero::before {
    content: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.85;
    color: var(--text-gray);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 48px;
}

.cta-note {
    font-size: 13px;
    opacity: 0.7;
    color: var(--text-gray);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.4;
}

.check-icon {
    background: var(--accent-orange);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 12px;
    margin-top: 2px;
}

/* Chart Container */
.hero-right {
    position: relative;
}

.chart-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.chart-period {
    font-size: 13px;
    color: var(--text-gray);
    opacity: 0.8;
}

.animated-chart {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

.chart-area {
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.data-points .point {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.data-points .point:nth-child(1) { animation-delay: 1.5s; }
.data-points .point:nth-child(2) { animation-delay: 1.7s; }
.data-points .point:nth-child(3) { animation-delay: 1.9s; }
.data-points .point:nth-child(4) { animation-delay: 2.1s; }
.data-points .point:nth-child(5) { animation-delay: 2.3s; }
.data-points .point:nth-child(6) { animation-delay: 2.5s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

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

.chart-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    flex: 1;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 12px;
    color: var(--text-gray);
    opacity: 0.8;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.85);
    transform-origin: top left;
}

.mockup-header {
    background: #f3f4f6;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.mockup-dots {
    display: flex;
    gap: 4px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca3af;
}

.mockup-title {
    font-size: 10px;
    color: #6b7280;
    font-weight: 600;
}

.mockup-content {
    padding: 16px;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.metric-card {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 10px;
    border-radius: 8px;
}

.metric-label {
    font-size: 10px;
    color: #6b7280;
    margin-bottom: 6px;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.metric-change {
    font-size: 10px;
    font-weight: 600;
}

.metric-change.positive {
    color: var(--accent-orange);
}

.metric-change.neutral {
    color: var(--text-gray);
}

.metric-change.negative {
    color: var(--danger);
}

.chart-area {
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), transparent);
    border-radius: 8px;
    padding: 12px;
}

.chart {
    width: 100%;
    height: auto;
}

/* Pain Section */
.pain-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title + .section-subtitle {
    margin-top: 0;
    margin-bottom: 48px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pain-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.25), 0 4px 15px rgba(255, 107, 53, 0.15);
}

.pain-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-advantage {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    font-size: 15px;
    line-height: 1.6;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
}

.visual-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.visual-metric {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.visual-metric.highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    padding: 16px;
    margin-top: 12px;
    border-radius: 8px;
    border: none;
}

.value {
    font-weight: 700;
}

.value.green {
    color: var(--success);
}

.value.red {
    color: var(--danger);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mini-metric {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.mini-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.mini-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Cost Breakdown */
.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.cost-item.total {
    border-top: 2px solid var(--border-color);
    padding-top: 12px;
    margin-top: 8px;
}

.margin-indicator {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    font-weight: 600;
}

.margin-indicator.positive {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    color: var(--success);
}

/* P&L List */
.pnl-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pnl-item {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
}

.pnl-item.positive {
    background: rgba(16, 185, 129, 0.1);
}

.pnl-item.negative {
    background: rgba(239, 68, 68, 0.1);
}

/* Cashflow */
.cashflow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cashflow-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
}

.cashflow-item.income {
    background: rgba(16, 185, 129, 0.1);
}

.cashflow-item.expense {
    background: rgba(239, 68, 68, 0.1);
}

.cashflow-balance {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 8px;
    margin-top: 8px;
    font-weight: 700;
}

/* Notifications */
.notifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

.notification.warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
}

.notification.danger {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
}

.notification.info {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary-color);
}

.notif-icon {
    font-size: 20px;
}

/* API Visual */
.api-visual {
    padding: 40px 24px;
}

.api-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.api-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 8px;
}

.api-shield {
    font-size: 40px;
    margin-bottom: 8px;
}

.api-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
}

.api-arrow {
    font-size: 24px;
    color: var(--primary-color);
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.advantage-card {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    background: var(--bg-light);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-gray);
}

/* Case Studies */
.case-studies {
    margin-top: 60px;
}

.subsection-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.case-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.case-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.case-metric {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.case-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

/* Stats Section */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 48px 64px;
    gap: 40px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, #222, #000);
    color: white;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex: 1 1 auto;
    min-width: 180px;
    max-width: 280px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Desktop - 3 сверху, 2 снизу */
@media (min-width: 900px) {
    .stats-section {
        gap: 48px 40px;
    }

    .stat-item {
        flex-basis: calc(33.333% - 30px);
    }
}

/* Tablet - 2 в ряд */
@media (max-width: 899px) and (min-width: 600px) {
    .stats-section {
        gap: 32px;
    }

    .stat-item {
        flex-basis: calc(50% - 20px);
    }
}

/* Mobile - по одному в ряд */
@media (max-width: 599px) {
    .stats-section {
        padding: 32px 24px;
        gap: 24px;
    }

    .stat-item {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    margin-bottom: 24px;
}

/* Compact Pricing Card */
.pricing-card-compact {
    max-width: 900px;
    margin: 0 auto;
    background: #fafafa;
    border: 1.5px solid #d1d5db;
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-benefits-top {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.benefit-badge {
    background: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 12px;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.pricing-slider-container {
    margin-bottom: 28px;
}

.pricing-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin-bottom: 20px;
}

.feature-item {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 24px;
    opacity: 0.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s;
}

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

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.pricing-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 18px;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 16px;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit-badge {
    background: var(--bg-light);
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Pricing Calculator */
.pricing-calculator {
    max-width: 900px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.pricing-main {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.pricing-main h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.pricing-slider-container {
    margin-bottom: 32px;
}

.pricing-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--accent-orange) 0%, var(--accent-orange) 0%, #e5e7eb 0%, #e5e7eb 100%);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-slider:hover {
    opacity: 0.9;
}

.pricing-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-orange);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    transition: all 0.2s ease;
}

.pricing-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.5);
}

.pricing-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-orange);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    transition: all 0.2s ease;
}

.pricing-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.5);
}

.pricing-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-gray);
}

.pricing-result {
    text-align: left;
    flex: 0 0 auto;
}

.pricing-period-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-gray);
}

.pricing-discount {
    font-size: 13px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 8px;
    min-height: 18px;
}

.pricing-amount {
    margin-bottom: 4px;
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-currency {
    font-size: 20px;
    color: var(--text-gray);
    margin-left: 4px;
}

.pricing-per-month {
    font-size: 13px;
    color: var(--text-gray);
}

.extra-info {
    background: white;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.extra-info p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.pricing-includes {
    margin-bottom: 32px;
}

.pricing-includes h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-includes ul {
    list-style: none;
}

.pricing-includes li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.pricing-extra {
    display: flex;
    align-items: center;
}

.extra-shops {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    text-align: center;
    width: 100%;
}

.extra-shops h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.extra-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.extra-description {
    font-size: 14px;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cta-benefits span {
    font-size: 16px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contacts p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .chart-container {
        padding: 24px;
    }

    .dashboard-mockup {
        transform: scale(1);
    }

    .section-title {
        font-size: 28px;
    }

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-block.reverse > * {
        direction: ltr;
    }

    .steps {
        flex-direction: column;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .metric-cards {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .pricing-calculator {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-main {
        padding: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-compact {
        padding: 24px 20px;
    }

    .pricing-cta-row {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
        padding: 24px 0;
    }

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

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
        min-height: 56px;
    }

    .pricing-slider::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
    }

    .pricing-slider::-moz-range-thumb {
        width: 32px;
        height: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .final-cta-content h2 {
        font-size: 32px;
    }
}

/* Dashboard Preview (Hero) */
.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.preview-header {
    background: #f8f9fa;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

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

.preview-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.preview-dots .dot.red { background: #ff5f56; }
.preview-dots .dot.yellow { background: #ffbd2e; }
.preview-dots .dot.green { background: #27ca40; }

.preview-title {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.preview-content {
    padding: 20px;
}

.preview-row {
    display: grid;
    grid-template-columns: 1fr 120px 60px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    gap: 12px;
}

.preview-row.header-row {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.preview-row.header-row span:nth-child(2) { text-align: right; }
.preview-row.header-row span:nth-child(3) { text-align: right; }

.preview-row.highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    margin: 12px -20px -20px;
    padding: 14px 20px;
    border: none;
    border-radius: 0 0 16px 16px;
}

.preview-row .value { text-align: right; }
.preview-row .red { color: #ef4444; text-align: right; }
.preview-row .green { color: #10b981; text-align: right; }
.preview-row .neutral { color: var(--text-gray); text-align: right; }

.preview-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-top: 1px solid var(--border-color);
}

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

.preview-stat .stat-label {
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.preview-stat .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.preview-stat .stat-value.green { color: #10b981; }

/* Pain Grid Compact */
.pain-grid-compact {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .pain-grid-compact {
        grid-template-columns: 1fr;
    }
}

/* Steps Compact */
.steps-compact .step-content h3 {
    font-size: 18px;
}

.steps-compact .step-content p {
    font-size: 14px;
}

/* Features Grid New */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid-new {
        grid-template-columns: 1fr;
    }
}

.feature-card-new {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon-new {
    font-size: 28px;
}

.feature-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.feature-card-new > p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-card-preview {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
}

/* Mini Table */
.mini-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mini-row:last-child {
    border-bottom: none;
}

.mini-row.total {
    font-weight: 700;
    border-top: 2px solid #d1d5db;
    padding-top: 10px;
    margin-top: 4px;
}

.mini-row .red { color: #ef4444; }
.mini-row .green { color: #10b981; }

/* Alerts Preview */
.alerts-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
}

.alert-item.warning {
    background: rgba(245, 158, 11, 0.15);
}

.alert-item.danger {
    background: rgba(239, 68, 68, 0.15);
}

.alert-item.success {
    background: rgba(16, 185, 129, 0.15);
}

.alert-icon {
    font-size: 16px;
}

/* Funnel Preview */
.funnel-preview {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.funnel-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: linear-gradient(90deg, rgba(0,0,0,0.05) 0%, transparent 100%);
    border-radius: 6px;
    font-size: 12px;
}

.funnel-step small {
    color: var(--text-gray);
    font-size: 10px;
}

/* ABC Badges */
.abc-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 6px;
}

.abc-badge.abc-a {
    background: rgba(16, 185, 129, 0.2);
    color: #059669;
}

.abc-badge.abc-b {
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.abc-badge.abc-c {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* News Preview */
.news-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    flex-wrap: wrap;
}

.news-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.news-item > span:last-child {
    flex: 1;
    min-width: 0;
}

.news-badge.urgent {
    background: #fef2f2;
    color: #dc2626;
}

.news-badge.feature {
    background: #ecfdf5;
    color: #059669;
}

.news-badge.video {
    background: #eff6ff;
    color: #2563eb;
}

/* Metrics Preview */
.metrics-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

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

.metric-item .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.metric-item .metric-value.green { color: #10b981; }

.metric-item .metric-label {
    font-size: 11px;
    color: var(--text-gray);
}

/* Extra Features */
.extra-features {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.extra-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .extra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.extra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 8px;
    background: #f8f9fa;
    border-radius: 10px;
}

.extra-icon {
    font-size: 24px;
}

.extra-item span:last-child {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Advantages Grid Compact */
.advantages-grid-compact {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .advantages-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .advantages-grid-compact {
        grid-template-columns: 1fr;
    }
}

/* Stats Section Standalone */
.stats-section-standalone {
    padding: 60px 0;
    background: var(--primary-color);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stats-section-standalone .stat-item {
    text-align: center;
    color: white;
}

.stats-section-standalone .stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stats-section-standalone .stat-label {
    font-size: 14px;
    opacity: 0.85;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

/* ===== NEW CONVERSION-FOCUSED STYLES ===== */

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 40px;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: -8px;
    border: 2px solid white;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--accent-orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 20px;
    margin-left: 4px;
}

.social-text {
    font-size: 13px;
    color: var(--text-gray);
}

/* Hero Results */
.hero-results {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-orange);
}

.result-label {
    font-size: 12px;
    color: var(--text-gray);
}

.result-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* CTA Guarantees */
.cta-guarantees {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-gray);
}

/* Preview Badge */
.preview-badge {
    background: var(--accent-orange);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 16px;
}

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

.dashboard-preview {
    text-align: left;
    display: inline-block;
}

/* Trust Section */
.trust-section {
    padding: 32px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.trust-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

.badge-icon {
    font-size: 16px;
}

/* Pain Cards Enhanced */
.pain-card-highlighted {
    position: relative;
}

.pain-stat {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pain-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-orange);
}

.pain-stat-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* Pain CTA */
.pain-cta {
    text-align: center;
    margin-top: 48px;
}

.pain-cta-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-header {
    text-align: center;
    margin-bottom: 48px;
}

.solution-label {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* solution-card-main теперь такой же как обычный */

.solution-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.solution-icon {
    font-size: 28px;
}

.solution-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.solution-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.solution-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 16px;
}

.solution-preview {
    background: white;
    border-radius: 8px;
    padding: 12px;
}

.solution-cta {
    text-align: center;
    margin-top: 48px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-scroll-wrapper {
    margin: 0 -24px;
    padding: 0 24px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-orange) transparent;
    margin-bottom: 48px;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 3px;
}

.testimonials-scroll {
    display: flex;
    gap: 20px;
    padding-bottom: 16px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
}

.author-desc {
    font-size: 11px;
    color: var(--text-gray);
}

.testimonial-result {
    background: rgba(16, 185, 129, 0.1);
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-result .result-label {
    font-size: 11px;
    color: var(--text-gray);
}

.testimonial-result .result-value {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
}

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

/* Pricing Enhancements */
.pricing-promo-banner {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.promo-icon {
    font-size: 18px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-gray);
}

.guarantee-icon {
    font-size: 18px;
}

/* FAQ Enhancements */
.faq-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.faq-cta p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

/* Final CTA Enhancements */
.final-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.final-social-proof .avatars {
    justify-content: center;
}

.final-social-proof .avatar {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

/* Steps Enhancement */
.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-gray);
}

.step-arrow {
    font-size: 24px;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 900px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-card-main {
        grid-column: span 2;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .hero-results {
        flex-wrap: wrap;
    }

    .steps {
        flex-direction: column;
    }

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

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-main {
        grid-column: span 1;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
    }
}
