/* Partners page */

/* Hero Section */
.partners-hero {
    text-align: center;
    padding: 60px 0 0px;
}

.partners-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    color: var(--main-color);
}

.partners-title .highlight {
    color: var(--bright-color);
}

.partners-subtitle {
    font-size: 20px;
    color: rgba(248, 244, 255, 0.8);
    margin: 0 0 32px;
    line-height: 1.5;
}

.subtitle-animated {
    background: linear-gradient(90deg, var(--bright-color), #ff69b4, var(--button-text-color), var(--bright-color));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.partners-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--button-text-color);
    color: var(--main-color);
    text-decoration: none;
    padding: 16px 32px;
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partners-cta:hover {
    background-color: var(--button-hover-color-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 175, 255, 0.3);
}

.partners-cta img {
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    padding: 40px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Benefit Cards */
.benefit-card {
    position: relative;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--button-color);
    display: flex;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

/* Card color themes */
.benefit-card-money::before {
    background: linear-gradient(90deg, #4dff88, #00d4aa);
}

.benefit-card-money:hover {
    border-color: rgba(77, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(77, 255, 136, 0.15);
}

.benefit-card-gift::before {
    background: linear-gradient(90deg, #ff69b4, #ff1493);
}

.benefit-card-gift:hover {
    border-color: rgba(255, 105, 180, 0.3);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.15);
}

.benefit-card-package::before {
    background: linear-gradient(90deg, var(--button-text-color), #00bfff);
}

.benefit-card-package:hover {
    border-color: rgba(50, 175, 255, 0.3);
    box-shadow: 0 20px 40px rgba(50, 175, 255, 0.15);
}

.benefit-card-handshake::before {
    background: linear-gradient(90deg, var(--bright-color), #ffa500);
}

.benefit-card-handshake:hover {
    border-color: rgba(254, 212, 94, 0.3);
    box-shadow: 0 20px 40px rgba(254, 212, 94, 0.15);
}

.benefit-icon {
    font-size: 40px;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.benefit-card:hover .benefit-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--main-color);
}

.benefit-content p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(248, 244, 255, 0.7);
}

.benefit-highlight {
    display: flex;
    gap: 8px;
}

.benefit-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    animation: tagGlow 2s ease-in-out infinite;
}

.benefit-card-money .benefit-tag {
    background: rgba(77, 255, 136, 0.15);
    color: #4dff88;
    border: 1px solid rgba(77, 255, 136, 0.3);
}

.benefit-card-gift .benefit-tag {
    background: rgba(255, 105, 180, 0.15);
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.benefit-card-package .benefit-tag {
    background: rgba(50, 175, 255, 0.15);
    color: var(--button-text-color);
    border: 1px solid rgba(50, 175, 255, 0.3);
}

.benefit-card-handshake .benefit-tag {
    background: rgba(254, 212, 94, 0.15);
    color: var(--bright-color);
    border: 1px solid rgba(254, 212, 94, 0.3);
}

@keyframes tagGlow {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
    }
}

.benefits-note {
    text-align: center;
    font-size: 14px;
    color: rgba(248, 244, 255, 0.5);
    margin: 32px 0 0;
    padding-top: 24px;
}

/* Mobile */
@media (max-width: 768px) {
    .partners-hero {
        padding: 30px 0 20px;
    }

    .partners-title {
        font-size: 28px;
    }

    .partners-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .partners-cta {
        padding: 14px 24px;
        font-size: 14px;
    }

    .benefits-section {
        padding: 20px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        padding: 16px;
        gap: 14px;
    }

    .benefit-card:hover {
        transform: none;
    }

    .benefit-icon {
        font-size: 28px;
    }

    .benefit-content h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .benefit-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .benefit-tag {
        font-size: 10px;
        padding: 3px 10px;
    }

    .benefits-note {
        font-size: 12px;
        margin-top: 24px;
        padding-top: 16px;
        border-top: none;
    }
}