/* ===== HERO SECTION ===== */
.hero-business {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-business-content h1 {
    font-size: 52px;
    font-weight: 300;
    color: #FFD700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-business-content p {
    font-size: 20px;
    color: #fff;
    max-width: 700px;
    line-height: 1.6;
    margin: 0 auto 30px;
}

.btn-primary {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #FFC700;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 60px;
    color: #000;
    letter-spacing: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
    letter-spacing: 1px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.steps-container {
    max-width: 1000px;
    margin: 50px auto 0;
}

.step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ===== REQUIREMENTS SECTION ===== */
.requirements-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.requirement-item {
    background: white;
    padding: 30px;
    border-left: 4px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.requirement-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #000;
}

.requirement-item ul {
    list-style: none;
    padding-left: 0;
}

.requirement-item li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.requirement-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: #FFD700;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 300;
    color: #FFD700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero-business-content h1 {
        font-size: 36px;
    }

    .step {
        flex-direction: column !important;
        text-align: center;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
