/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #0b1a2e 0%, #1a3552 100%);
    color: white;
    padding: 60px 0 56px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 42, 42, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.page-hero h1 span {
    color: #facc15;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 600px;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 8px;
}

.section-title span {
    color: #c52a2a;
}

.title-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #c52a2a, #facc15);
    border-radius: 4px;
    margin: 8px 0 24px 0;
}

.section-sub {
    color: #4a5f78;
    margin-bottom: 28px;
    font-size: 1rem;
}

/* ===== CARDS & GRIDS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    border: 1px solid #edf2f7;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    border-color: #c52a2a30;
}

.card i {
    font-size: 2.2rem;
    color: #c52a2a;
    margin-bottom: 14px;
    background: #fef0ee;
    padding: 10px;
    border-radius: 14px;
}

.card h4 {
    font-weight: 700;
    margin-bottom: 6px;
}

.card p {
    color: #4a5f78;
    font-size: 0.95rem;
}

.benefit-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #edf2f7;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.8rem;
    color: #c52a2a;
    min-width: 40px;
    margin-top: 4px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 18px 22px;
    border: 1px solid #edf2f7;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.faq-item:hover {
    border-color: #c52a2a30;
}

.faq-item .q {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.faq-item .q i {
    transition: 0.2s;
    color: #c52a2a;
}

.faq-item .a {
    margin-top: 10px;
    color: #4a5f78;
    display: none;
}

.faq-item.active .a {
    display: block;
}

.faq-item.active .q i {
    transform: rotate(180deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}