/* Extracted from benefit-system.php. Edit here, not in PHP. */

/* ============================================================
   BENEFIT-SYSTEM.PHP, Page-specific styles (prefix: bs-)
   ============================================================ */

/* Hero */
.bs-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 50%, #ecfdf5 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.bs-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.bs-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.bs-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.bs-hero-content h1 span {
    color: #10b981;
}
.bs-hero-subtitle {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}
.bs-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}
.bs-chip {
    background: #fff;
    border: 1.5px solid #d1fae5;
    color: #059669;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
}
.bs-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.bs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3);
    border: none;
    cursor: pointer;
}
.bs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,185,129,0.4);
    color: #fff;
}
.bs-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border: 2px solid #10b981;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
}
.bs-btn-phone:hover {
    background: #10b981;
    color: #fff;
}

/* SVG Visual */
.bs-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stats Bar */
.bs-stats {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 2.5rem 0;
}
.bs-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.bs-stat-item {
    color: #fff;
}
.bs-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}
.bs-stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Benefits Grid */
.bs-benefits-section {
    background: #f0fdf4;
    padding: 5rem 0;
}
.bs-benefits-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.bs-benefits-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
}
.bs-benefits-section .section-subtitle {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
}
.bs-benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.5rem;
}
.bs-benefits-grid .bs-benefit-card:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.bs-benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem;
    border: 1.5px solid #d1fae5;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.bs-benefit-card:hover {
    box-shadow: 0 8px 30px rgba(16,185,129,0.12);
    transform: translateY(-3px);
}
.bs-benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: block;
}
.bs-benefit-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.35rem;
}
.bs-benefit-law {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
    background: #d1fae5;
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.bs-benefit-max {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.4rem;
}
.bs-benefit-max strong {
    color: #1f2937;
}
.bs-benefit-advantage {
    font-size: 0.88rem;
    color: #059669;
    font-weight: 600;
}

/* Comparison Table */
.bs-compare-section {
    background: #1e3a5f;
    padding: 5rem 0;
}
.bs-compare-section .section-title {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.bs-compare-section .section-subtitle {
    color: #93c5fd;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 3rem;
}
.bs-compare-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.bs-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
}
.bs-compare-table thead tr {
    background: rgba(255,255,255,0.08);
}
.bs-compare-table thead th {
    padding: 1.1rem 1.4rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
    color: #93c5fd;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bs-compare-table thead th:first-child {
    min-width: 180px;
}
.bs-compare-table thead th.lk-col {
    background: rgba(16,185,129,0.15);
    color: #6ee7b7;
}
.bs-compare-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.15s;
}
.bs-compare-table tbody tr:hover {
    background: rgba(255,255,255,0.04);
}
.bs-compare-table tbody td {
    padding: 1rem 1.4rem;
    font-size: 0.92rem;
    color: #e0f2fe;
    vertical-align: top;
}
.bs-compare-table tbody td.criterion {
    font-weight: 600;
    color: #fff;
}
.bs-compare-table tbody td.lk-col {
    background: rgba(16,185,129,0.08);
    color: #6ee7b7;
    font-weight: 600;
}
.bs-check {
    color: #10b981;
    font-weight: 700;
}
.bs-cross {
    color: #f87171;
    font-weight: 700;
}

/* Process */
.bs-process-section {
    background: #f8fafc;
    padding: 5rem 0;
}
.bs-process-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.75rem;
}
.bs-process-section .section-subtitle {
    color: #4b5563;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 3rem;
}
.bs-process-steps {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.bs-process-step {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid #e5e7eb;
    position: relative;
}
.bs-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 1rem;
}
.bs-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
}
.bs-step-desc {
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Cross-Link NLO */
.bs-crosslink {
    background: #fff;
    padding: 4rem 0;
}
.bs-crosslink-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    background: linear-gradient(135deg, #f0fdf4, #d1fae5);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1.5px solid #a7f3d0;
}
.bs-crosslink-icon {
    font-size: 3rem;
    flex-shrink: 0;
}
.bs-crosslink-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}
.bs-crosslink-content p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.bs-crosslink-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #059669;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid #10b981;
    padding-bottom: 1px;
    transition: color 0.2s;
}
.bs-crosslink-link:hover {
    color: #10b981;
}

/* FAQ */
.bs-faq-section {
    background: #f8fafc;
    padding: 5rem 0;
}
.bs-faq-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.75rem;
}
.bs-faq-section .section-subtitle {
    color: #4b5563;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 3rem;
}
.bs-faq-grid {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bs-faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    overflow: hidden;
}
.bs-faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: #1f2937;
    font-size: 0.98rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
    user-select: none;
}
.bs-faq-question:hover {
    background: #f0fdf4;
}
.bs-faq-question.active {
    color: #059669;
    background: #f0fdf4;
}
.bs-faq-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: #10b981;
}
.bs-faq-question.active .bs-faq-arrow {
    transform: rotate(180deg);
}
.bs-faq-answer {
    display: none;
    padding: 0 1.5rem 1.3rem;
    color: #4b5563;
    font-size: 0.93rem;
    line-height: 1.8;
    border-top: 1px solid #d1fae5;
}

/* CTA Final */
.bs-cta-section {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 5rem 0;
    text-align: center;
}
.bs-cta-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.bs-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.bs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.bs-cta-btn-white {
    background: #fff;
    color: #059669;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.bs-cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: #059669;
}
.bs-cta-btn-outline {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.bs-cta-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Internal Links */
.bs-internal-links {
    background: #fff;
    padding: 4rem 0;
    border-top: 1px solid #e5e7eb;
}
.bs-internal-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.bs-internal-links h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}
.bs-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.bs-link-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.3rem 1.2rem;
    text-decoration: none;
    border: 1.5px solid #e5e7eb;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
}
.bs-link-card:hover {
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16,185,129,0.1);
}
.bs-link-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}
.bs-link-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.bs-link-card-desc {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .bs-hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .bs-hero-visual {
        order: -1;
    }
    .bs-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .bs-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .bs-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .bs-benefits-grid {
        grid-template-columns: 1fr;
    }
    .bs-compare-table thead th,
    .bs-compare-table tbody td {
        padding: 0.75rem 0.9rem;
        font-size: 0.82rem;
    }
    .bs-crosslink-box {
        flex-direction: column;
        text-align: center;
    }
    .bs-process-steps {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .bs-stats-container {
        grid-template-columns: 1fr 1fr;
    }
    .bs-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .bs-link-grid {
        grid-template-columns: 1fr;
    }
    .bs-trust-chips {
        gap: 0.4rem;
    }
}
