.commissions-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero секция */
.commission-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3.5em;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.rate-display {
    text-align: center;
}

.rate-circle {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--green), #2E8B57);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 20px 40px rgba(16, 195, 108, 0.3);
    transition: transform 0.3s ease;
}

.rate-circle:hover {
    transform: scale(1.05);
}

.rate-number {
    font-size: 3em;
    font-weight: 800;
    line-height: 1;
}

.rate-label {
    font-size: 1.1em;
    font-weight: 600;
    opacity: 0.9;
}

.rate-description {
    font-size: 1.2em;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero визуална част */
.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.visual-card.highlight {
    border-color: var(--green);
    background: linear-gradient(135deg, #f8fff9, #f0f9f4);
}

.card-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.visual-card h3 {
    font-size: 1.1em;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

/* Информационна секция */
.commission-info {
    margin-bottom: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), #2E8B57);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2em;
}

.info-card h3 {
    font-size: 1.5em;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1em;
    margin: 0;
}

/* Детайли на процеса */
.commission-details {
    margin-bottom: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
}

.details-header {
    text-align: center;
    margin-bottom: 50px;
}

.details-header h2 {
    font-size: 2.8em;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.details-header p {
    font-size: 1.3em;
    color: var(--text-secondary);
}

.process-flow {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-step.highlight {
    border: 2px solid var(--green);
    background: linear-gradient(135deg, #ffffff, #f8fff9);
}

.step-indicator {
    width: 50px;
    height: 50px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: 700;
    margin-right: 25px;
    flex-shrink: 0;
}

.process-step.highlight .step-indicator {
    background: linear-gradient(135deg, var(--green), #2E8B57);
    box-shadow: 0 5px 15px rgba(16, 195, 108, 0.4);
}

.step-content h4 {
    font-size: 1.4em;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1em;
    margin: 0;
}

/* Предимства */
.advantages-section {
    margin-bottom: 80px;
}

.advantages-header {
    text-align: center;
    margin-bottom: 60px;
}

.advantages-header h2 {
    font-size: 2.8em;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.advantages-header p {
    font-size: 1.3em;
    color: var(--text-secondary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2em;
    color: white;
}

.advantage-icon.no-fee {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.advantage-icon.no-subscription {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.advantage-icon.pay-only {
    background: linear-gradient(135deg, #45b7d1, #34a0c7);
}

.advantage-icon.support {
    background: linear-gradient(135deg, #96ceb4, #88c9a1);
}

.advantage-item h4 {
    font-size: 1.4em;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1em;
    margin: 0;
}

/* CTA секция */
.cta-section {
    background: linear-gradient(160deg, var(--green), var(--yellow));
    padding: 80px 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: var(--green);
}

.cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--green);
    transform: translateY(-3px);
}

/* Адаптивность */
@media screen and (max-width: 968px) {
    .commission-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }}

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-visual {
        grid-template-columns: repeat(2, 1fr);
    }

@media screen and (max-width: 768px) {
    .commissions-page {
        padding: 15px;
    }

    .commission-hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .rate-circle {
        width: 150px;
        height: 150px;
    }

    .rate-number {
        font-size: 2.5em;
    }

    .info-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-indicator {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 2.2em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .visual-card {
        padding: 20px 15px;
    }

    .commission-details {
        padding: 40px 20px;
    }

    .details-header h2 {
        font-size: 2em;
    }
}