/* ═══ LANDING PAGE (index.php) ══════════════════════════════════ */
main.container.pb-5.rh-section {
    max-width: unset;
    padding: 0;
}

main.container.pb-5.rh-section .home-hero {
    margin: 0 !important;
    border: 0;
}

.platform-icon {
    background: var(--primary-50);
    color: #fff;
}

:root {
    --tiktok-bg: #000000;
    --fb-bg: #1877f2;
    --shopee-bg: #F97316;
}

.platform-icon.tiktok {
    background: var(--tiktok-bg);
}

.platform-icon.facebook {
    background: var(--fb-bg);
}

.platform-icon.shopee {
    background: var(--shopee-bg);
}

.platform-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 12px;
}

.platform-heading {
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--primary);
    margin-bottom: .75rem;
}

.platform-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.18;
    margin-bottom: .9rem;
}

.platform-gradient {
    background: linear-gradient(92deg, #ff4d4f 0%, #ff8a00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-subtitle {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.platform-modern-card {
    border: 1px solid;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.platform-modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.platform-modern-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.platform-modern-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.platform-modern-kicker {
    font-size: .86rem;
    font-weight: 600;
    margin-bottom: .75rem;
}

.platform-modern-desc {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.platform-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}

.platform-tag {
    font-size: .74rem;
    padding: .22rem .58rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    line-height: 1.3;
    white-space: nowrap;
}

.platform-modern-stat {
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .38rem;
}

.platform-modern-stat i {
    font-size: 1rem;
}

.platform-modern-card.tiktok {
    background: rgba(255, 31, 75, 0.08);
    border-color: rgba(255, 31, 75, 0.25);
    color: rgb(255, 31, 75);
}

.platform-modern-card.facebook {
    background: rgba(24, 118, 242, 0.08);
    border-color: rgba(24, 118, 242, 0.25);
    color: rgb(24, 118, 242);
}

.platform-modern-card.shopee {
    background: rgba(255, 110, 26, 0.08);
    border-color: rgba(255, 110, 26, 0.25);
    color: rgb(255, 110, 26);
}

.platform-modern-card h3 {
    color: var(--text-dark);
}

.benefit-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 12px;
}

.benefit-heading {
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--accent-green);
    margin-bottom: .75rem;
}

.benefit-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.18;
    margin-bottom: .9rem;
}

.benefit-subtitle {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.benefit-card {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 1rem;
    background: #fff;
    padding: 1.5rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 23, 42, 0.22);
    box-shadow: 0 14px 26px rgba(15, 23, 42, .08);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform .2s ease;
    font-size: 1.15rem;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.07);
}

.benefit-icon.primary {
    background: rgba(253, 74, 93, 0.1);
    color: var(--primary);
}

.benefit-icon.secondary {
    background: rgba(15, 185, 129, 0.1);
    color: var(--accent-green);
}

.benefit-icon.accent {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.benefit-card h3 {
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .5rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.process-section {
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(15, 23, 42, 0.04) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.process-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.process-heading {
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    color: #f97316;
    margin-bottom: .75rem;
}

.process-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.18;
    margin-bottom: .9rem;
}

.process-subtitle {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.process-steps {
    position: relative;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, rgba(253, 74, 93, 0.35), rgba(15, 185, 129, 0.3), rgba(249, 115, 22, 0.35));
    display: none;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-icon-wrap {
    position: relative;
    width: fit-content;
    margin: 0 auto 1.35rem;
}

.process-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 1.65rem;
}

.process-step-icon.primary {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(253, 74, 93, 0.22);
}

.process-step-icon.secondary {
    color: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(15, 185, 129, 0.22);
}

.process-step-icon.accent {
    color: #f97316;
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.22);
}

.process-step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
}

.process-step-badge.primary {
    background: var(--primary);
}

.process-step-badge.secondary {
    background: var(--accent-green);
}

.process-step-badge.accent {
    background: #f97316;
}

.process-step h3 {
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.criteria-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 12px;
}

.criteria-heading {
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--primary);
    margin-bottom: .75rem;
}

.criteria-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.18;
    margin-bottom: .9rem;
}

.criteria-subtitle {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.criteria-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 1rem;
    padding: 1.8rem;
    height: 100%;
}

.criteria-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .45rem;
}

.criteria-card-title .ok {
    color: var(--accent-green);
}

.criteria-card-title .no {
    color: var(--primary);
}

.criteria-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .95rem;
}

.criteria-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.58;
}

.criteria-list .ok {
    color: var(--accent-green);
    font-size: .95rem;
    margin-top: .16rem;
}

.criteria-list .no {
    color: rgba(253, 74, 93, .75);
    font-size: .95rem;
    margin-top: .16rem;
}

.criteria-note {
    border-radius: 1rem;
    padding: 1.35rem;
    background: linear-gradient(135deg, rgba(253, 74, 93, .1), rgba(15, 185, 129, .1));
    border: 1px solid rgba(253, 74, 93, .2);
}

.criteria-note h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .45rem;
}

.criteria-note p {
    margin: 0;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.62;
}

@media (min-width: 992px) {
    .process-line {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .platform-modern-card {
        padding: 1.25rem;
    }

    .benefit-card {
        padding: 1.2rem;
    }
}
