/* ===================================================
   Subsly Landing Pages – Shared Styles
   =================================================== */

/* ---------- Hero ---------- */
.landing-hero {
    background: linear-gradient(135deg, #6C5CE7 0%, #9B8EF5 50%, #a78bfa 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.landing-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.landing-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.landing-hero .lead {
    font-size: 1.2rem;
    opacity: .92;
    max-width: 600px;
}
.landing-hero .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
}
.landing-hero .btn-light {
    color: #6C5CE7;
}
.landing-hero .btn-outline-light:hover {
    color: #6C5CE7;
}

/* ---------- Sections ---------- */
.landing-section {
    padding: 80px 0;
}
.landing-section.bg-light-custom {
    background-color: #F7FAFC;
}
.landing-section .section-tag {
    display: inline-block;
    background: rgba(108, 92, 231, .1);
    color: #6C5CE7;
    font-weight: 600;
    font-size: .85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.landing-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: .75rem;
}
.landing-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D3748;
}
.landing-section p {
    color: #4A5568;
    font-size: 1.05rem;
}

/* ---------- Problem Cards ---------- */
.problem-card {
    background: #fff;
    border-left: 4px solid #E53E3E;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.problem-card i {
    color: #E53E3E;
    font-size: 1.5rem;
    margin-top: 2px;
}
.problem-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .35rem;
    color: #2D3748;
}
.problem-card p {
    font-size: .95rem;
    color: #718096;
    margin-bottom: 0;
}

/* ---------- Solution / Feature Cards ---------- */
.solution-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.07);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid #EDF2F7;
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(108,92,231,.15);
}
.solution-card .icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(108,92,231,.1);
    color: #6C5CE7;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.solution-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: .5rem;
}
.solution-card p {
    font-size: .95rem;
    color: #718096;
    margin-bottom: 0;
}

/* ---------- Savings / Highlight Box ---------- */
.savings-highlight {
    background: linear-gradient(135deg, #00B894 0%, #00D2A0 100%);
    color: #fff;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.savings-highlight::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
}
.savings-highlight h2 {
    color: #fff;
    font-size: 2rem;
}
.savings-highlight .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: .75rem 0;
}
.savings-highlight p {
    color: rgba(255,255,255,.9);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- FAQ ---------- */
.faq-section .accordion-button {
    font-weight: 600;
    color: #2D3748;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(108,92,231,.05);
    color: #6C5CE7;
    box-shadow: none;
}
.faq-section .accordion-button::after {
    filter: none;
}
.faq-section .accordion-body {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.7;
    padding: 1rem 1.5rem 1.5rem;
}
.faq-section .accordion-item {
    border: 1px solid #EDF2F7;
    border-radius: 8px !important;
    margin-bottom: .75rem;
    overflow: hidden;
}

/* ---------- CTA ---------- */
.cta-section {
    background: linear-gradient(135deg, #6C5CE7 0%, #9B8EF5 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255,255,255,.88);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta-section .btn {
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.05rem;
}

/* ---------- Internal Links ---------- */
.internal-links {
    background: #F7FAFC;
    padding: 48px 0;
}
.internal-links a {
    display: inline-block;
    padding: 10px 20px;
    margin: 6px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: #6C5CE7;
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s ease;
}
.internal-links a:hover {
    background: #6C5CE7;
    color: #fff;
    border-color: #6C5CE7;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .landing-hero {
        padding: 70px 0 60px;
    }
    .landing-hero h1 {
        font-size: 2rem;
    }
    .landing-section h2 {
        font-size: 1.75rem;
    }
    .savings-highlight .amount {
        font-size: 2.5rem;
    }
    .savings-highlight {
        padding: 2rem 1.5rem;
    }
}
