/* ============================================================
   WebLite • Business Email Service Page Styles
   ============================================================ */

:root {
    --be-primary: #2563eb;
    --be-primary-light: #3b82f6;
    --be-accent: #7c3aed;
    --be-dark: #0f172a;
    --be-gray: #475569;
    --be-light-bg: #f8fafc;
    --be-border: #e2e8f0;
    --be-success: #10b981;
    --be-radius: 16px;
}

/* ===== HERO ===== */
.be-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #1e3a5f 100%);
    color: #fff;
    padding: 7rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.be-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.be-hero h1 {
    font-family: 'Varela Round', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1.2rem;
    color: #fff;
    position: relative;
}
.be-hero h1 .highlight {
    color: #60a5fa;
}
.be-hero .hero-sub {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.be-hero .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--be-primary);
    color: #fff;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
    transition: transform .3s, box-shadow .3s;
}
.be-hero .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
}

/* ===== SECTION COMMON ===== */
.be-section {
    padding: 5rem 1.5rem;
}
.be-section.alt-bg {
    background-color: var(--be-light-bg);
}
.be-container {
    max-width: 1100px;
    margin: 0 auto;
}
.be-section-title {
    text-align: center;
    font-family: 'Varela Round', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--be-dark);
    margin-bottom: 1rem;
}
.be-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--be-gray);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* ===== INTRO (text + image placeholder) ===== */
.be-intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}
.be-intro-text {
    flex: 1 1 480px;
}
.be-intro-text h2 {
    font-family: 'Varela Round', sans-serif;
    font-size: 2rem;
    color: var(--be-dark);
    margin-bottom: 1rem;
}
.be-intro-text p {
    color: var(--be-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.be-intro-visual {
    flex: 1 1 380px;
    display: flex;
    justify-content: center;
}
.be-intro-visual .email-mockup {
    background: linear-gradient(135deg, var(--be-primary), var(--be-accent));
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 2rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}
.email-mockup i {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: block;
}
.email-mockup .mock-address {
    font-family: 'Poppins', 'Heebo', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    direction: ltr;
    margin-bottom: .5rem;
}
.email-mockup .mock-label {
    font-size: .95rem;
    opacity: .85;
}

/* ===== FEATURES GRID ===== */
.be-features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.be-feature-card {
    background: #fff;
    border: 1px solid var(--be-border);
    border-radius: var(--be-radius);
    padding: 2rem 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform .3s, box-shadow .3s;
}
.be-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.be-feature-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.be-feature-card .card-icon.blue    { background: #eff6ff; color: var(--be-primary); }
.be-feature-card .card-icon.purple  { background: #f5f3ff; color: var(--be-accent); }
.be-feature-card .card-icon.green   { background: #ecfdf5; color: var(--be-success); }
.be-feature-card .card-icon.orange  { background: #fff7ed; color: #ea580c; }
.be-feature-card .card-icon.cyan    { background: #ecfeff; color: #0891b2; }
.be-feature-card .card-icon.rose    { background: #fff1f2; color: #e11d48; }
.be-feature-card h3 {
    font-size: 1.2rem;
    color: var(--be-dark);
    margin: 0 0 .6rem;
}
.be-feature-card p {
    color: var(--be-gray);
    font-size: .97rem;
    line-height: 1.65;
    margin: 0;
}

/* ===== HOW IT WORKS ===== */
.be-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    counter-reset: step;
}
.be-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.be-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--be-primary), var(--be-accent));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.be-step h3 {
    font-size: 1.15rem;
    color: var(--be-dark);
    margin: 0 0 .5rem;
}
.be-step p {
    color: var(--be-gray);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== WHY BUSINESS EMAIL (benefits list) ===== */
.be-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}
.be-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--be-border);
}
.be-benefits-list li:last-child {
    border-bottom: none;
}
.be-benefits-list .benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--be-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.be-benefits-list strong {
    display: block;
    font-size: 1.05rem;
    color: var(--be-dark);
    margin-bottom: .2rem;
}
.be-benefits-list span {
    color: var(--be-gray);
    font-size: .95rem;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.be-faq-wrap {
    max-width: 850px;
    margin: 0 auto;
}
.be-faq-item {
    background: #fff;
    border: 1px solid var(--be-border);
    border-radius: 12px;
    margin-bottom: .75rem;
    transition: border-color .3s;
}
.be-faq-item[open] {
    border-color: var(--be-primary);
}
.be-faq-item summary {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--be-dark);
    list-style: none;
}
.be-faq-item summary::-webkit-details-marker {
    display: none;
}
.be-faq-item summary i {
    color: var(--be-primary);
    transition: transform .3s;
    flex-shrink: 0;
    margin-right: .5rem;
}
.be-faq-item[open] summary i {
    transform: rotate(180deg);
}
.be-faq-item .faq-body {
    padding: 0 1.5rem 1.3rem;
    color: var(--be-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.be-cta {
    background: var(--be-dark);
    color: #fff;
    text-align: center;
    padding: 5rem 1.5rem;
}
.be-cta h2 {
    font-family: 'Varela Round', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 auto 1rem;
}
.be-cta p {
    color: #cbd5e1;
    max-width: 620px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
.be-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.be-cta .btn-main {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--be-primary);
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
    transition: transform .3s, box-shadow .3s;
}
.be-cta .btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
}
.be-cta .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform .3s, background .3s;
}
.be-cta .btn-wa:hover {
    transform: translateY(-3px);
    background: #1DAE56;
}

/* ===== PRICING HIGHLIGHT ===== */
.be-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: .3rem;
    background: linear-gradient(135deg, var(--be-primary), var(--be-accent));
    color: #fff;
    padding: .8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.be-price-badge .price-num {
    font-size: 2rem;
    font-weight: 900;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .be-hero {
        padding: 5rem 1.2rem 3.5rem;
    }
    .be-section {
        padding: 3.5rem 1.2rem;
    }
    .be-intro-grid {
        flex-direction: column-reverse;
    }
    .be-features-grid {
        grid-template-columns: 1fr;
    }
    .be-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}
