/* Integrated Payments Landing Page CSS */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #93B47E, #35A854);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #444444;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 400;
}

.payment-benefits {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #F8FBF6;
    border-left: 4px solid #93B47E;
    border-radius: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #2E3B2C;
    font-weight: 600;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 1rem 0;
}

.hero-guarantee {
    font-size: 14px;
    color: #444444;
    font-style: italic;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    max-width: 500px;
}

/* Payment Providers Section */
.providers-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.provider-card {
    background: #FFFFFF;
    border: 2px solid #F5F5F5;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.provider-card:hover {
    transform: translateY(-8px);
    border-color: #93B47E;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.provider-card.featured {
    border-color: #93B47E;
    background: linear-gradient(145deg, #F8FBF6, #FFFFFF);
    transform: scale(1.05);
}

.provider-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.provider-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #93B47E, #35A854);
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-logo {
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-logo .logo {
    height: 40px;
    width: auto;
}

.provider-card h3 {
    font-size: 1.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.provider-card p {
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.provider-benefits {
    margin-bottom: 2rem;
    text-align: left;
}

.provider-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.provider-benefit:last-child {
    margin-bottom: 0;
}

.check {
    color: #93B47E;
    font-weight: 700;
    margin-right: 8px;
    font-size: 1.1rem;
}

.provider-pricing {
    background: #F5F5F5;
    padding: 1rem;
    border-radius: 8px;
    border-top: 3px solid #93B47E;
    margin-bottom: 1rem;
}

.provider-pricing.custom {
    background: #FFF9E6;
    border-top-color: #FFB84D;
}

.pricing-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #444444;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-rate {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2E3B2C;
}

.pricing-breakdown {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.pricing-breakdown .pricing-rate {
    font-size: 1.25rem;
    flex: 1;
    text-align: center;
}

.pricing-note {
    display: block;
    font-size: 11px;
    color: #666666;
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
}

.provider-link {
    display: inline-block;
    color: #93B47E;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.provider-link:hover {
    color: #35A854;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #F5F5F5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-content h4 {
    font-size: 1.25rem;
    color: #2E3B2C;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-content p {
    color: #444444;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E3B2C 0%, #35A854 100%);
    color: #FFFFFF;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background-color: #93B47E;
    color: #2E3B2C;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
    background-color: #FFFFFF;
    color: #2E3B2C;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.guarantee-icon {
    color: #93B47E;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .provider-card.featured {
        transform: none;
    }
    
    .provider-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .providers-section,
    .features-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .provider-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.875rem;
    }
    
    .payment-benefits {
        padding: 1rem;
    }
    
    .provider-card {
        padding: 1.25rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}