/* StretchBill Partnership 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;
}

.partnership-badge {
    background: linear-gradient(135deg, #93B47E, #35A854);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(147, 180, 126, 0.3);
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.partner-logo {
    height: 24px;
    width: auto;
}

.plus {
    font-weight: 700;
    font-size: 1.2rem;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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;
}

.cash-flow-example {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(145deg, #F8FBF6, #FFFFFF);
    border-left: 4px solid #93B47E;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.example-header h3 {
    color: #2E3B2C;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.example-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.before, .after {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
}

.before {
    background: #FFF5F5;
    border: 1px solid #FFE6E6;
}

.after {
    background: #F0F8FF;
    border: 1px solid #E6F3FF;
}

.label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.before .label {
    color: #D9534F;
}

.after .label {
    color: #93B47E;
}

.timeline {
    display: block;
    font-weight: 600;
    color: #2E3B2C;
    margin-bottom: 0.25rem;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: #666666;
}

.arrow {
    font-size: 2rem;
    color: #93B47E;
    font-weight: 700;
}

.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;
}

/* How It Works Section */
.how-it-works-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;
}

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

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93B47E, #35A854);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 25px rgba(147, 180, 126, 0.3);
}

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

.step-content p {
    color: #444444;
    line-height: 1.6;
    margin: 0;
}

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

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

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

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

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

.benefit-card.primary:hover {
    transform: scale(1.02) translateY(-8px);
}
.benefit-icon {
    width: 80px;
    height: 80px;
    background: #93B47E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    padding: 20px;
}
.benefit-icon img{

    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

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

.benefit-stat {
    background: #F5F5F5;
    padding: 1rem;
    border-radius: 8px;
    border-top: 3px solid #93B47E;
}

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

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #93B47E;
}

/* Payment Options Section */
.payment-options-section {
    padding: 100px 0;
    background: #FFFFFF;
}

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

.option-card {
    background: #F5F5F5;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-5px);
    background: #FFFFFF;
    border-color: #93B47E;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

.popular-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;
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.option-card h4 {
    font-size: 1.25rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.option-card p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.option-example {
    background: rgba(147, 180, 126, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2E3B2C;
    font-weight: 600;
    border: 1px solid rgba(147, 180, 126, 0.2);
}

/* 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;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card.primary {
        transform: none;
    }
    
    .benefit-card.primary:hover {
        transform: translateY(-8px);
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .option-card.featured {
        transform: none;
    }
    
    .option-card.featured:hover {
        transform: translateY(-5px);
    }
}

@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%;
    }
    
    .cash-flow-example {
        padding: 1.5rem;
    }
    
    .partnership-badge {
        padding: 0.75rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .partner-logos {
        justify-content: center;
    }
    
    .how-it-works-section,
    .benefits-section,
    .payment-options-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .option-card {
        padding: 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;
    }
    
    .cash-flow-example {
        padding: 1rem;
    }
    
    .example-header h3 {
        font-size: 1.25rem;
    }
    
    .before, .after {
        padding: 0.75rem;
    }
    
    .step-content {
        padding: 0 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .option-card {
        padding: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Animation for cash flow example */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.before {
    animation: slideIn 0.8s ease-out 0.2s both;
}

.after {
    animation: slideIn 0.8s ease-out 0.6s both;
}

.arrow {
    animation: slideIn 0.8s ease-out 0.4s both;
}

/* Hover effects for benefit cards */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #93B47E, #35A854);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card {
    position: relative;
    overflow: hidden;
}

/* Floating animation for step numbers */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.step-number {
    animation: float 3s ease-in-out infinite;
}

.step-item:nth-child(1) .step-number {
    animation-delay: 0s;
}

.step-item:nth-child(2) .step-number {
    animation-delay: 1s;
}

.step-item:nth-child(3) .step-number {
    animation-delay: 2s;
} 