/* ============================================
   PREMIUM BENEFITS PAGES STYLES
   Shared styles for Why Awards Matter, Increase Sales,
   Build Trust, and Marketing Advantage pages
============================================ */

/* ============================================
   BENEFITS PAGE HERO
============================================ */
.benefits-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.benefits-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated background shapes */
.benefits-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: benefitsHeroFloat 25s infinite alternate ease-in-out;
}

.benefits-hero-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(212, 165, 116, 0.25);
    top: -150px;
    right: -100px;
}

.benefits-hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(30, 58, 138, 0.3);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes benefitsHeroFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.benefits-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.benefits-hero-badge i {
    color: #d4a574;
    font-size: 16px;
}

.benefits-hero-badge span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.benefits-hero h1 span {
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 35px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.benefits-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    color: #0f172a;
    padding: 16px 35px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.3);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.benefits-hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.4);
    color: #0f172a;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MAIN CONTENT SECTION
============================================ */
.benefits-content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.benefits-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.benefits-intro h2 span {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-intro p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

/* ============================================
   BENEFITS CARDS
============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574 0%, #f4d03f 50%, #d4a574 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.benefit-card:hover .benefit-card-icon {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card-icon i {
    font-size: 24px;
    color: #d4a574;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card-icon i {
    color: white;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.benefit-card p,
.benefit-card ul,
.benefit-card div {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-top: 20px;
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.3);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================
   FEATURE SECTIONS
============================================ */
.feature-section {
    padding: 80px 0;
    background: white;
}

.feature-section.alt-bg {
    background: #f8fafc;
}

.feature-header {
    text-align: center;
    margin-bottom: 50px;
}

.feature-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.feature-pretitle::before,
.feature-pretitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: #d4a574;
}

.feature-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.feature-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #d4a574;
}

.feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.feature-card p,
.feature-card ul {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-top: 15px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
}

.feature-card li::before {
    content: '✓';
    color: #d4a574;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   TIMELINE SECTION
============================================ */
.timeline-section {
    padding: 80px 0;
    background: #f8fafc;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(180deg, #d4a574 0%, #e2e8f0 100%);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.timeline-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.timeline-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   IMPACT LIST
============================================ */
.impact-section {
    padding: 80px 0;
    background: white;
}

.impact-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.02) 100%);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    padding: 22px 28px;
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateX(10px);
    border-color: #d4a574;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.15);
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-icon i {
    font-size: 20px;
    color: white;
}

.impact-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #1e293b;
    line-height: 1.6;
}

.impact-text strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #d4a574;
}

/* ============================================
   CTA SECTION
============================================ */
.benefits-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.benefits-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-content h2 span {
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    color: #0f172a;
    padding: 18px 40px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.4);
    color: #0f172a;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    color: white;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 991px) {
    .benefits-hero {
        padding: 120px 0 80px;
    }

    .benefits-hero h1 {
        font-size: 42px;
    }

    .benefits-intro h2 {
        font-size: 32px;
    }

    .feature-header h2 {
        font-size: 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .benefits-hero {
        padding: 100px 0 60px;
    }

    .benefits-hero h1 {
        font-size: 32px;
    }

    .benefits-hero-subtitle {
        font-size: 16px;
    }

    .benefits-content-section {
        padding: 60px 0;
    }

    .benefits-intro h2 {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-card-header {
        gap: 12px;
    }

    .benefit-card-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .benefit-card-icon i {
        font-size: 18px;
    }

    .benefit-card h3 {
        font-size: 15px;
    }

    .benefit-card p,
    .benefit-card ul,
    .benefit-card div {
        font-size: 13px;
        margin-top: 12px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .feature-section {
        padding: 50px 0;
    }

    .feature-header h2 {
        font-size: 26px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h4 {
        font-size: 14px;
    }

    .feature-card p,
    .feature-card ul {
        font-size: 12px;
        margin-top: 10px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-item::before {
        display: none;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .benefits-hero h1 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 32px;
    }

    .benefits-intro h2,
    .feature-header h2 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}