/* ================================================================
   FITUR PLATFORM — PAGE CSS
   Prefix: fp-
   Shared hero: lk-hero (from layanan-kami.css)
   Uses core.css variables: --teal-*, --gold, --gray-*, etc.
   ================================================================ */

/* --------------------------------
   SHARED: Section Header
   -------------------------------- */
.fp-hdr,
.fp-detail-hdr { text-align: center; margin-bottom: 48px; }

.fp-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700;
    color: var(--teal-600);
    background: var(--teal-50);
    border: 1px solid var(--teal-600);
    padding: 6px 16px; border-radius: 50px;
    margin-bottom: 14px; letter-spacing: 0.3px;
}
.fp-badge i { font-size: 12px; }

.fp-title {
    font-size: 32px; font-weight: 800;
    color: var(--teal-800);
    margin-bottom: 12px;
}
.fp-sub {
    font-size: 15px; line-height: 1.7;
    color: var(--gray-500);
    max-width: 580px; margin: 0 auto;
}

/* --------------------------------
   SECTION 2: OVERVIEW — 5 Cards
   -------------------------------- */
.fp-overview {
    background: var(--white);
}
.fp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.fp-card {
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.05);
    border-radius: var(--r-lg);
    padding: 28px 20px 24px;
    text-align: center;
    text-decoration: none;
    position: relative; overflow: hidden;
    transition: var(--ease);
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.03);
}
.fp-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.fp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(44,197,189,0.12);
    border-color: rgba(44,197,189,0.15);
}
.fp-card:hover::after { transform: scaleX(1); }

.fp-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(44,197,189,0.2);
    transition: var(--ease);
}
.fp-card:hover .fp-card-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(44,197,189,0.3);
}
.fp-card-icon i { font-size: 20px; color: white; }

.fp-card h4 {
    font-size: 14px; font-weight: 700;
    color: var(--gray-900); margin-bottom: 6px;
}
.fp-card p {
    font-size: 12px; color: var(--gray-500);
    line-height: 1.5; margin-bottom: 12px; flex: 1;
}
.fp-card-arrow {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--teal-50);
    border: 1px solid rgba(44,197,189,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--teal-500);
    transition: var(--ease);
}
.fp-card:hover .fp-card-arrow {
    background: var(--teal-500); color: white;
    transform: translateY(2px);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .fp-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Small tablet */
@media (max-width: 767.98px) {
    .fp-cards { grid-template-columns: repeat(2, 1fr); }
    .fp-title { font-size: 26px; }
    .fp-sub { font-size: 14px; }
}

/* Mobile */
@media (max-width: 575.98px) {
    .fp-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .fp-card { padding: 20px 14px 18px; }
    .fp-card-icon { width: 44px; height: 44px; border-radius: 12px; }
    .fp-card-icon i { font-size: 17px; }
    .fp-card h4 { font-size: 13px; }
    .fp-card p { font-size: 11px; }
    .fp-title { font-size: 24px; }
}