/* ===== ПРОДАЮЩАЯ ГЛАВНАЯ СТРАНИЦА ===== */

:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --primary-light: #e6ebff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1a1a2e;
    --gray-900: #0f172a;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #ffffff;
}

/* ===== HERO SELLING ===== */
.hero-selling {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-selling::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.hero-content-selling {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title-selling {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title-selling .highlight {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-selling {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.benefit-item i {
    color: #10b981;
    font-size: 20px;
}

.hero-cta {
    margin-bottom: 60px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: #ffd700;
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
    background: #ffed4e;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-stats-selling {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item-selling {
    text-align: center;
}

.stat-item-selling .stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    color:#fff; 
}

.stat-item-selling .stat-label {
    font-size: 14px;
    opacity: 0.9;
    color:#fff;
}

/* ===== УТП SECTION ===== */
.utp-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-large {
    font-size: 42px;
    font-weight: 800;
   
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle-large {
    font-size: 18px;
    
    line-height: 1.6;
}

.utp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.utp-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
}

.utp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.utp-card-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
}

.utp-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.utp-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 24px;
}

.utp-card-featured .utp-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.utp-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.utp-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--gray-600);
}

.utp-card-featured .utp-description {
    color: rgba(255, 255, 255, 0.95);
}

.utp-list {
    list-style: none;
    padding: 0;
}

.utp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
}

.utp-list i {
    color: var(--success);
    font-size: 16px;
}

.utp-card-featured .utp-list i {
    color: #ffd700;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.step-time {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.process-cta {
    text-align: center;
}

/* ===== OBJECTIONS SECTION ===== */
.objections-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.objection-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border-left: 4px solid var(--primary);
}

.objection-icon {
    width: 48px;
    height: 48px;
    background: var(--danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 16px;
}

.objection-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.objection-answer {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.cta-benefit i {
    color: #10b981;
    font-size: 20px;
}

.final-cta-buttons {
    margin-bottom: 40px;
}

.btn-cta-xl {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 56px;
    background: #ffd700;
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
}

.btn-cta-xl:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.6);
    background: #ffed4e;
}

.cta-note-small {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.trust-item i {
    font-size: 20px;
    color: #10b981;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .utp-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .objections-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title-selling {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-selling {
        padding: 60px 0 40px;
    }
    
    .hero-title-selling {
        font-size: 32px;
    }
    
    .hero-subtitle-selling {
        font-size: 16px;
    }
    
    .btn-cta-large,
    .btn-cta-xl {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .section-title-large {
        font-size: 32px;
    }
    
    .final-cta-title {
        font-size: 32px;
    }
    
    .hero-benefits,
    .final-cta-benefits,
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
}


/* ===== LIVE STATS SECTION ===== */
.live-stats-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.live-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.live-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.live-stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #667eea;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.pulse-active {
    border-color: #10b981;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.live-stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.live-stat-label {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.live-stat-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: #10b981;
}

.live-stat-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.stats-note {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.7;
    font-size: 14px;
}

/* ===== AUDIT AGENCY SECTION ===== */
.audit-agency-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.audit-agency-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge-danger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.text-danger {
    color: var(--danger);
}

.audit-agency-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.audit-agency-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.audit-benefit-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--danger);
}

.audit-benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--danger);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.audit-benefit-item strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.audit-benefit-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.btn-danger-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--danger);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.btn-danger-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.6);
    background: #dc2626;
}

.cta-note-danger {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-600);
}

.comparison-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.comparison-label {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.comparison-label.bad {
    background: #fee2e2;
    color: var(--danger);
}

.comparison-label.good {
    background: #d1fae5;
    color: var(--success);
}

.comparison-vs {
    font-size: 18px;
    font-weight: 900;
    color: var(--gray-400);
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comparison-bad,
.comparison-good {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}

.comparison-bad {
    background: #fee2e2;
    color: var(--danger);
}

.comparison-good {
    background: #d1fae5;
    color: var(--success);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.team-photo {
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.team-info {
    padding: 24px;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-position {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.team-experience {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.team-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.team-achievements {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-form-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-textarea {
    resize: vertical;
}

.btn-submit-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.form-privacy {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

.form-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-expert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expert-photo-large {
    position: relative;
    margin-bottom: 24px;
}

.expert-photo-large img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--primary);
}

.expert-status {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.status-dot-large {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.expert-name-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.expert-position-large {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.expert-description-large {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.expert-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    width: 100%;
}

.expert-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray-100);
    border-radius: 12px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s;
}

.expert-contact-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.expert-stats-small {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.expert-stat-item {
    text-align: center;
}

.expert-stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.expert-stat-item span {
    font-size: 12px;
    color: var(--gray-600);
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .live-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audit-agency-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .live-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-item {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}


/* ===== PARTNER SECTION ===== */
.partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.partner-content {
    position: relative;
    z-index: 1;
}

.partner-header {
    text-align: center;
    margin-bottom: 60px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffd700;
}

.partner-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.partner-highlight {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.partner-offer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
}

.partner-offer-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffd700;
}

.partner-offer-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

.partner-offer-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 24px;
}

.offer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.offer-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
}

.offer-list i {
    color: #10b981;
    font-size: 16px;
}

.offer-price {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.price-from {
    font-size: 14px;
    opacity: 0.7;
}

.price-value {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    margin: 8px 0;
}

.price-period {
    font-size: 14px;
    opacity: 0.7;
}

.partner-benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.partner-benefit {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-benefit i {
    width: 48px;
    height: 48px;
    background: #ffd700;
    color: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.partner-benefit strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.partner-benefit p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.partner-cta-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-partner-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffd700;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.btn-partner-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
    background: #ffed4e;
}

.btn-partner-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-partner-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-4px);
}

.partner-trust {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 16px;
}

.partner-trust i {
    color: #ffd700;
    margin-right: 8px;
}

/* ===== RESPONSIVE FOR PARTNER SECTION ===== */
@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-offer-card.featured {
        transform: scale(1);
    }
    
    .partner-benefits-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-cta-row {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-partner-primary,
    .btn-partner-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 60px 0;
    }
    
    .partner-title {
        font-size: 32px;
    }
    
    .partner-subtitle {
        font-size: 16px;
    }
    
    .partner-benefits-row {
        grid-template-columns: 1fr;
    }
    
    .partner-benefit {
        flex-direction: column;
        text-align: center;
    }
}
