/* Partners Page - Canvas Particles + Animations */

.partners-page {
    padding-top: 0;
}

/* CANVAS PARTICLES */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* HERO SECTION */
.partners-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #1e293b 100%);
    overflow: hidden;
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(201, 169, 98, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(30, 58, 95, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
    animation: gradientMove 20s ease-in-out infinite;
}

/* Hero Badge */
.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 24px;
    margin-bottom: 40px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(var(--text-main-rgb), 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-badge::before,
.hero-badge::after {
    display: none;
}

.badge-text {
    color: rgba(var(--text-main-rgb), 0.5);
}

.badge-star {
    color: #c9a962;
    font-size: 10px;
    animation: starPulse 2s ease-in-out infinite;
}

.badge-star:last-child {
    animation-delay: 0.5s;
}

@keyframes starPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.badge-dot {
    display: none;
}

/* Main Hero Content */
.partners-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 28px;
    line-height: 1.1;
    text-align: center;
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    background: linear-gradient(135deg, #c9a962 0%, #e8d5a3 50%, #c9a962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(var(--text-main-rgb), 0.8);
    margin-bottom: 50px;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    background: linear-gradient(135deg, #c9a962 0%, #e8d5a3 50%, #c9a962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-accent {
    color: rgba(var(--text-main-rgb), 0.6);
    font-style: italic;
}

/* Premium Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin-bottom: 50px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 50px;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.4), transparent);
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #c9a962;
}

.stat-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a962, transparent);
    margin: 16px 0;
}

.stat-text {
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .partners-hero {
        min-height: 100dvh;
        padding: 130px 0 90px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-stat {
        flex: 1 1 calc(50% - 20px);
        padding: 30px;
    }
    
    .hero-stat:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .partners-hero {
        min-height: 100dvh;
        padding: 90px 0 80px;
    }
    .hero-stat {
        flex: 1 1 100%;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-suffix {
        font-size: 24px;
    }
}

/* Trust Strip */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 40px;
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(var(--text-main-rgb), 0.8);
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg {
    color: #c9a962;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes gradientMove {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.05) translate(-2%, 2%);
    }
}



/* RISKS SECTION */
.partners-risks {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background: linear-gradient(180deg, #1a2332 0%, #0f1520 50%, #0a0f16 100%);
}

.partners-risks .section-title {
    color: var(--text-main);
}

.partners-for .section-title {
    color: var(--text-main);
}

.partners-why .section-title {
    color: var(--text-main);
}

.risks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.risk-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.15) 0%, rgba(15, 25, 40, 0.25) 100%);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 140px;
}

.risk-card:hover {
    transform: translateY(-8px);
    border-color: #c9a962;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.risk-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.risk-card:hover .risk-icon {
    transform: scale(1.1) rotate(5deg);
}

.risk-icon svg {
    color: var(--text-main);
}

.risk-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.risk-fear {
    font-size: 14px;
    color: #e8d5a3;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.risk-solution {
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.65);
    line-height: 1.5;
}

/* FOR SECTION */
.partners-for {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background: linear-gradient(180deg, #121824 0%, #1a2332 50%, #0f1520 100%);
}

.for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.for-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.for-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: #c9a962;
}

.for-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.for-card:hover .for-icon {
    transform: scale(1.1) rotate(-5deg);
}

.for-icon svg {
    color: #c9a962;
}

.for-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.for-card p {
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.for-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.for-benefits li {
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.7);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.for-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a962;
    font-weight: 700;
    font-size: 12px;
}

/* WHY SECTION - Modern Horizontal */
.partners-why {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background: linear-gradient(180deg, #0f1520 0%, #121824 50%, #1a2332 100%);
}

.partners-why .section-title {
    font-size: clamp(28px, 4vw, 38px);
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: #c9a962;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.why-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item-icon svg {
    color: #c9a962;
}

.why-item-content h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.why-item-content p {
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.6);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        padding: 16px 18px;
    }
}

/* UNIFIED SECTION - STARTER + FAQ + CONFIDENCE */
.partners-unified {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #121824 0%, #0f1520 100%);
}

.unified-header {
    text-align: center;
    margin-bottom: 40px;
}

.unified-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.unified-subtitle {
    font-size: 16px;
    color: rgba(var(--text-main-rgb), 0.6);
}

/* Modern Steps */
.steps-modern {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: nowrap;
    overflow: visible;
}

.step-modern {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.2) 0%, rgba(15, 25, 40, 0.3) 100%);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.15);
    flex: 1;
    min-width: 260px;
    max-width: 300px;
}

@media (max-width: 1024px) {
    .steps-modern {
        flex-wrap: wrap;
    }
    .step-modern {
        flex: none;
        width: calc(50% - 12px);
    }
}

.step-modern-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a962 0%, #b8944d 100%);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(201,169,98,0.35);
}

.step-modern-content h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.step-modern-content p {
    font-size: 12px;
    color: rgba(var(--text-main-rgb), 0.6);
    line-height: 1.45;
}

.step-connector {
    display: flex;
    align-items: center;
    color: #c9a962;
}

/* FAQ Modern */
.faq-modern-header {
    margin-bottom: 24px;
}

.faq-modern-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
}

.faq-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.faq-modern-item {
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.15) 0%, rgba(15, 25, 40, 0.25) 100%);
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all 0.3s ease;
}

.faq-modern-item:hover {
    border-color: #c9a962;
    box-shadow: 0 4px 16px rgba(201,169,98,0.15);
}

.faq-modern-q {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #e8d5a3;
    margin-bottom: 8px;
}

.faq-modern-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #c9a962 0%, #b8944d 100%);
    color: var(--text-main);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-modern-a {
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.7);
    line-height: 1.5;
    padding-left: 34px;
}

/* Confidence Strip */
.confidence-strip {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(201,169,98,0.08);
    border-radius: 16px;
    border: 1px dashed rgba(201,169,98,0.3);
}

.confidence-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.85);
}

.confidence-item svg {
    color: #c9a962;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .steps-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .faq-modern {
        grid-template-columns: 1fr;
    }
    
    .confidence-strip {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .faq-modern-a {
        padding-left: 0;
        margin-top: 8px;
    }
}

/* MODERN CTA SECTION */
.partner-cta {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #0f1923 0%, #1a2744 50%, #1e3a5f 100%);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 48px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cta-left h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 15px;
    color: rgba(var(--text-main-rgb),0.7);
    margin-bottom: 28px;
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(var(--text-main-rgb),0.85);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-contact:hover {
    color: #c9a962;
    transform: translateX(6px);
}

.cta-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-contact-icon svg {
    color: #c9a962;
}

.cta-trust {
    margin-top: 8px;
}

.cta-trust-quote {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    border-left: 3px solid #c9a962;
    margin-bottom: 20px;
}

.cta-trust-quote svg {
    color: #c9a962;
    flex-shrink: 0;
    opacity: 0.7;
}

.cta-trust-quote p {
    font-size: 13px;
    color: rgba(var(--text-main-rgb),0.85);
    line-height: 1.6;
    font-style: italic;
}

.cta-trust-stats {
    display: flex;
    gap: 20px;
}

.cta-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    flex: 1;
    text-align: center;
}

.cta-trust-stat .stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #c9a962;
}

.cta-trust-stat .stat-label {
    font-size: 11px;
    color: rgba(var(--text-main-rgb),0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Form */
.cta-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cta-form-group {
    display: flex;
    flex-direction: column;
}

.cta-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(var(--text-main-rgb), 0.85);
    margin-bottom: 8px;
}

.cta-form-group .optional {
    font-weight: 400;
    color: rgba(var(--text-main-rgb), 0.4);
}

.cta-form-group input,
.cta-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    transition: all 0.3s ease;
}

.cta-form-group input:focus,
.cta-form-group select:focus {
    outline: none;
    border-color: #c9a962;
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.cta-form-group input::placeholder,
.cta-form-group select::placeholder {
    color: rgba(var(--text-main-rgb), 0.35);
}

.cta-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 42px;
    cursor: pointer;
}

.cta-form-group select option {
    background: #1a2744;
    color: var(--text-main);
}

.cta-consent {
    margin-bottom: 20px;
    margin-top: 8px;
}

.cta-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 12px;
    color: rgba(var(--text-main-rgb), 0.6);
    line-height: 1.5;
}

.cta-checkbox input {
    display: none;
}

.cta-checkbox-custom {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.cta-checkbox input:checked + .cta-checkbox-custom {
    background: #c9a962;
    border-color: #c9a962;
}

.cta-checkbox input:checked + .cta-checkbox-custom::after {
    content: '✓';
    color: var(--text-main);
    font-size: 11px;
    font-weight: bold;
}

.cta-checkbox a {
    color: rgba(var(--text-main-rgb), 0.8);
    text-decoration: underline;
}

.cta-checkbox a:hover {
    color: #c9a962;
}

.cta-submit {
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #c9a962 0%, #b8944d 100%);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(201,169,98,0.35);
}

.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201,169,98,0.5);
    background: linear-gradient(135deg, #d4b978 0%, #c9a962 100%);
}

.cta-submit svg {
    transition: transform 0.3s ease;
}

.cta-submit:hover svg {
    transform: translateX(4px);
}

/* Form validation messages */
.form__error {
    display: block;
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

.form__success {
    display: block;
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    margin-top: 16px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .cta-card {
        padding: 28px;
    }
    
    .cta-form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-left h2 {
        font-size: 26px;
    }
    
    .cta-form {
        padding: 24px;
    }
}

/* FOOTER */
.footer {
    background: #0a0f16;
    padding: 40px 0 24px;
    position: relative;
    z-index: 1;
}

.footer-note {
    font-style: italic;
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.6);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-icon {
    font-size: 28px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.5);
    line-height: 1.6;
}

.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 16px;
}

.footer-contact a {
    display: block;
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c9a962;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.4);
}

.footer-legal a {
    color: rgba(var(--text-main-rgb), 0.4);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #c9a962;
}

/* NAV */
.nav-partners {
    color: #c9a962 !important;
    font-weight: 600 !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .for-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .partners-page {
        padding-top: 70px;
    }
    
    .partners-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .hero-stats .stat::after {
        display: none;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-suffix {
        font-size: 24px;
    }
    
    .risks-grid {
        grid-template-columns: 1fr;
    }
    
    .risk-card {
        padding: 16px;
    }
    
    .for-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .for-card {
        padding: 20px;
    }
    
    .why-card {
        padding: 20px;
    }
    
    .how-step .step-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .partners-risks,
    .partners-for,
    .partners-why,
    .partners-how,
    .partners-form {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .how-steps {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .step-connector {
        display: none;
    }
    
    .how-step {
        max-width: 100%;
    }
    
    .partner-form {
        padding: 28px;
    }
    
    .partner-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-info h2 {
        font-size: 28px;
    }
    
    .footer .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal a {
        margin-left: 0;
        margin-right: 16px;
    }
}

/* COMMISSION TABLE */
.partners-compact {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
    position: relative;
}

.partners-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.partners-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.compact-subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-main);
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-main);
}
.compact-col .commission-table-wrapper {
    margin: 0;
}
.compact-col .whatsapp-card {
    margin: 0;
}
.commission-table-wrapper {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.commission-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Manrope', sans-serif;
}
.commission-table th,
.commission-table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}
.commission-table th:first-child,
.commission-table td:first-child {
    text-align: left;
}
.commission-table th:nth-child(2),
.commission-table td:nth-child(2) {
    color: #c9a962;
}
.commission-table th:last-child,
.commission-table td:last-child {
    color: #c9a962;
    font-weight: 600;
}
.commission-table th {
    font-weight: 600;
    color: rgba(var(--text-main-rgb), 0.5);
    background: rgba(201, 169, 98, 0.08);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.commission-table td {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
}
.commission-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.5);
    text-align: center;
    font-style: italic;
}
.commission-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .partners-compact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .compact-subtitle {
        font-size: 18px;
    }
    
    .compact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .commission-table th,
    .commission-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
}

/* TRIGGER PHRASES */
.trigger-phrase {
    font-size: 14px;
    font-weight: 600;
    color: #c9a962;
    margin: 8px 0;
    line-height: 1.4;
}

/* CONTACT CARD */
.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 16px;
    color: rgba(var(--text-main-rgb), 0.6);
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-buttons {
    position: relative;
    z-index: 1;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-bottom-text {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.9);
    margin-top: 24px;
    font-weight: 500;
    font-style: italic;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.contact-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(var(--text-main-rgb), 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-btn.telegram {
    background: rgba(34, 158, 217, 0.1);
    border-color: rgba(34, 158, 217, 0.2);
}

.contact-btn.telegram:hover {
    background: rgba(34, 158, 217, 0.25);
    border-color: rgba(34, 158, 217, 0.4);
}

.contact-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.4);
}

.contact-btn.viber {
    background: rgba(115, 96, 242, 0.1);
    border-color: rgba(115, 96, 242, 0.2);
}

.contact-btn.viber:hover {
    background: rgba(115, 96, 242, 0.25);
    border-color: rgba(115, 96, 242, 0.4);
}

.contact-btn.phone {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.2);
}

.contact-btn.phone:hover {
    background: rgba(201, 169, 98, 0.2);
    border-color: #c9a962;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.2);
}

.contact-btn.phone:hover svg {
    stroke: #c9a962;
}

.contact-btn.email {
    background: rgba(255, 255, 255, 0.03);
}

.contact-btn.email:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--text-main-rgb), 0.15);
}

.contact-btn.email:hover svg {
    stroke: #c9a962;
}

.contact-btn.email {
    background: #f3f4f6;
    color: #374151;
}

.contact-btn.email:hover {
    background: #e5e7eb;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.contact-btn.form {
    background: linear-gradient(135deg, #c9a962 0%, #b8944d 100%);
    color: var(--text-main);
}

.contact-btn.form:hover {
    box-shadow: 0 6px 16px rgba(201, 169, 98, 0.35);
}

.contact-btn.max-app {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--text-main-rgb), 0.1);
}

.contact-btn.max-app:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(var(--text-main-rgb), 0.2);
}

.max-logo-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(50%) brightness(1.2);
}

.contact-btn-icon {
    width: 20px;
    height: 20px;
    background: white;
    color: #FF6B35;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 18px;
    }
    
    .contact-buttons {
        gap: 10px;
    }
    
    .contact-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .contact-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .contact-btn {
        padding: 12px 10px;
        font-size: 12px;
        gap: 6px;
    }
    
    .max-logo-img {
        width: 16px;
        height: 16px;
    }
    
    .contact-bottom-text {
        font-size: 13px;
        margin-top: 20px;
    }
}


.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.faq-item {
    display: flex;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.faq-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, #c9a962 0%, #b8944d 100%);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
}
.faq-content {
    flex: 1;
}
.faq-question {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.3;
}
.faq-answer {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.45;
}
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .faq-item {
        padding: 14px;
    }
    .faq-question {
        font-size: 13px;
    }
    .faq-answer {
        font-size: 12px;
    }
}

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
}
.sticky-btn {
    display: inline-block;
    background: linear-gradient(135deg, #c9a962 0%, #b8944d 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4);
    transition: all 0.3s ease;
    animation: subtlePulse 2s infinite;
}
.sticky-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #d4b978 0%, #c9a962 100%);
}
@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(201, 169, 98, 0.7); }
}
@media (max-width: 768px) {
    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* GO TO TOP BUTTON */
.go-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a962 0%, #b8944d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.go-top.show {
    opacity: 1;
    visibility: visible;
}
.go-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #d4b978 0%, #c9a962 100%);
}
@media (max-width: 768px) {
    .go-top {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
}

/* GEO HERO BADGE */
.geo-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    padding: 12px 24px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    width: fit-content;
}

.geo-badge-text {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ENHANCED FOR-ICON ANIMATION */
.for-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.for-card:hover .for-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Конфиденциальность - горизонтальные бейджи */
.partners-confidentiality {
    padding: 20px 0 50px;
    background: #ffffff;
}
.conf-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 20px;
}
.conf-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.conf-badge {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    transition: all 0.3s ease;
}
.conf-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.conf-badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c9a962 0%, #b8944d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.conf-badge-icon svg {
    color: var(--text-main);
}
.conf-badge-text {
    font-size: 12px;
    color: #374151;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .conf-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .conf-badge {
        padding: 12px;
    }
    .conf-badge-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .conf-badges {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .conf-badge {
        padding: 12px;
    }
    .conf-badge-text {
        font-size: 11px;
    }
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero-info-strip {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .hero-info-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-info-item {
        text-align: center;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .hero-stats .stat::after {
        display: none;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-suffix {
        font-size: 24px;
    }
}
