/* =======================================================
   CSS: MINI BOOTCAMP SEO WRITER
   Variables & Global Setup
======================================================== */
:root {
    --color-primary: #820AE5;
    --color-primary-light: #e6ccff;
    --color-primary-dark: #2b0e4a;
    --color-text-digibos: #1E0633;
    --color-dark: #333333;
    --color-yellow: #FFD700;
}

/* ANTI-OVERFLOW GLOBAL */
html,
body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-digibos {
    color: var(--color-text-digibos);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
}

/* ==============================================
   GLOBAL MEDIA QUERIES (TABLET & MOBILE UTILITIES)
============================================== */

/* --- GLOBAL: TABLET (769px - 1024px) --- */
/* Menambah margin/padding sisi kiri-kanan agar tidak mepet layar */
@media (min-width: 769px) and (max-width: 1024px) {

    .seo-container,
    .seo-hero-container {
        padding: 0 50px !important;
        /* Ruang lega ekstra di sisi tablet */
    }

    .section-title {
        font-size: 1.9rem;
        /* Ukuran judul diskala turun */
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* --- GLOBAL: MOBILE SLIDER UTILITY --- */
.mobile-slider-container {
    position: relative;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    width: 100%;
}

.slider-dots {
    display: none;
}

@media (max-width: 768px) {
    .mobile-slider-container {
        overflow: hidden !important;
        position: relative;
        max-width: 100vw;
        padding-bottom: 40px !important;
        display: block !important;
    }

    .slider-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .slider-slide {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .slider-dots {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 5;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        transition: 0.3s ease;
    }

    .slider-dots .dot.active {
        background: var(--color-primary);
        width: 25px;
        border-radius: 5px;
    }
}


/* ==============================================
   1. HERO SECTION
============================================== */
.seo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--color-primary-dark) 0%, var(--color-primary) 50%, rgba(130, 10, 229, 0.6) 100%), url('https://digibos.id/wp-content/uploads/2023/08/top-view-tools-marketing.webp') center/cover;
    padding-top: 80px;
}

.seo-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.seo-hero-left h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
    border-right: 3px solid #fff;
    white-space: normal;
}

.seo-hero-left h2 {
    color: var(--color-yellow);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
}

/* Stabilo Highlight & Pulse Animation for H2 */
.highlight-stabilo {
    display: inline-block;
    color: rgb(255, 0, 123);
    background-image: linear-gradient(120deg, rgb(255, 0, 123) 0%, rgb(255, 0, 123) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 0 100%;
    padding: 2px 10px;
    border-radius: 6px;
    transition: background-size 1.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s ease 0.7s;
    will-change: background-size, color, transform;
}

.highlight-stabilo.active {
    background-size: 100% 100%;
    color: var(--color-primary-light) !important;
    animation: stabilo-pulse 2.5s infinite ease-in-out;
    animation-delay: 1.2s;
}

@keyframes stabilo-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }
}

.hero-desc {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

.seo-hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-yellow,
.btn-outline-hero {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-yellow {
    background: var(--color-yellow);
    color: #000;
}

.btn-yellow:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    background: #ffea00;
}

.btn-outline-hero {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-hero:hover {
    transform: translateY(-4px) scale(1.02);
    background: #ffffff;
    color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.seo-hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-img-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    width: 90%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Morphing Clone */
.flying-clone {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    transform-origin: top left;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    width: 0px;
    height: 0px;
}

.wu-portrait-img {
    opacity: 1;
    width: 100%;
    max-width: 380px;
    /* Perkecil size img tapi proporsional */
    height: auto;
    object-fit: contain;
    /* Full contain tanpa terpotong */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* --- HERO: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .seo-hero-container {
        gap: 30px;
    }

    /* Jarak diperkecil akibat padding global 50px */
    .seo-hero-left h1 {
        font-size: 2.3rem;
    }

    /* Font disesuaikan */
    .seo-hero-left h2 {
        font-size: 1.3rem;
    }

    .hero-desc {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .btn-yellow,
    .btn-outline-hero {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Tombol diperkecil sedikit */
}

/* --- HERO: MOBILE --- */
@media (max-width: 768px) {
    .seo-hero {
        padding-top: 120px;
        padding-bottom: 80px;
        min-height: auto;
        align-items: flex-start;
    }

    .seo-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .seo-hero-left h1 {
        font-size: 2.2rem;
        border-right: none;
    }

    .seo-hero-left h2 {
        font-size: 1.3rem;
    }

    .hero-desc {
        max-width: 100%;
    }

    .seo-hero-buttons {
        flex-direction: column;
    }

    .hero-img-card {
        width: 100%;
    }
}


/* ==============================================
   2. WHY US SECTION
============================================== */
.seo-whyus {
    background: #fff;
    border-radius: 50px 50px 0 0;
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.whyus-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.whyus-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.whyus-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(130, 10, 229, 0.08);
}

.wu-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.whyus-card h3 {
    font-size: 1.1rem;
    color: var(--color-text-digibos);
    margin-bottom: 10px;
    line-height: 1.4;
}

.whyus-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.whyus-right {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* --- WHY US: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .whyus-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whyus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Jarak antar kartu dikurangi */
    .whyus-card {
        padding: 20px;
    }

    /* Padding internal kartu diperkecil */
    .whyus-card h3 {
        font-size: 1rem;
    }

    .whyus-right {
        display: flex;
        margin-top: 30px;
    }

    /* Tampilkan di tablet */
}

/* --- WHY US: MOBILE --- */
@media (max-width: 768px) {
    .seo-whyus {
        margin-top: -40px;
        padding: 60px 0;
    }

    .whyus-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .whyus-grid {
        grid-template-columns: 1fr;
    }

    .whyus-right {
        display: flex;
        margin-top: 25px;
    }

    /* Tampilkan di mobile */
}


/* ==============================================
   3. BENEFIT SECTION (Bento Grid)
============================================== */
.seo-benefit {
    padding: 80px 0;
    background: #fafafa;
}

.benefit-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.benefit-card:nth-child(1),
.benefit-card:nth-child(2) {
    grid-column: span 3;
}

.benefit-card:nth-child(3),
.benefit-card:nth-child(4),
.benefit-card:nth-child(5) {
    grid-column: span 2;
}

.bc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(130, 10, 229, 0.95) 0%, rgba(130, 10, 229, 0.4) 100%);
    z-index: 2;
}

.bc-content {
    position: relative;
    z-index: 3;
}

.bc-title {
    color: var(--color-yellow);
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 5px 0;
}

.bc-desc {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* --- BENEFIT: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .benefit-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefit-card {
        min-height: 180px;
        padding: 20px;
    }

    /* Card dipendekkan proporsional */
    .benefit-card:nth-child(n) {
        grid-column: span 1;
    }

    .benefit-card:nth-child(5) {
        grid-column: span 2;
    }

    .bc-title {
        font-size: 1.4rem;
    }

    .bc-desc {
        font-size: 0.9rem;
    }
}

/* --- BENEFIT: MOBILE --- */
@media (max-width: 768px) {
    .seo-benefit {
        padding: 60px 0;
    }

    .benefit-bento-grid {
        display: flex !important;
    }

    .benefit-card {
        grid-column: span 1 !important;
        height: 250px;
    }

    .bc-title {
        font-size: 1.5rem;
    }
}


/* ==============================================
   4. TESTIMONI SECTION
============================================== */
.testimoni-section-new {
    background: radial-gradient(circle at 75% 30%, var(--color-primary) 0%, #2b0e4a 50%, #150524 100%);
    color: #fff;
    border-radius: 0 0 50px 50px;
    padding: 80px 40px;
    text-align: center;
}

.testimoni-section-new h2.section-title {
    color: #ffffff !important;
}

.testimoni-section-new p.section-subtitle {
    color: #ffffff !important;
    opacity: 0.9;
}

.testimoni-slider-container {
    max-width: 1200px;
    margin: 50px auto 0;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.testimoni-grid-new {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    align-items: stretch;
}

.testi-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 15px;
    border: 2px solid var(--color-primary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.t-stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.t-quote {
    font-style: italic;
    flex-grow: 1;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* --- TESTIMONI: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimoni-section-new {
        padding: 60px 40px;
    }

    /* Padding global wadah diatur */
    .testimoni-grid-new {
        gap: 20px;
    }

    .testi-card {
        flex: 0 0 calc(50% - 10px);
        padding: 20px;
    }

    /* Diubah jadi 2 Card tampil */
    .t-stars {
        font-size: 1.1rem;
    }

    .t-quote {
        font-size: 0.9rem;
    }
}

/* --- TESTIMONI: MOBILE --- */
@media (max-width: 768px) {
    .testimoni-section-new {
        padding: 60px 20px;
        border-radius: 0 0 30px 30px;
    }

    .testimoni-grid-new {
        gap: 15px;
    }

    .testi-card {
        flex: 0 0 100%;
        padding: 25px;
    }
}


/* ==============================================
   5. KURIKULUM SECTION
============================================== */
.seo-kurikulum {
    padding: 80px 0;
    background: #fafafa;
}

.kurikulum-filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.k-filter-btn {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.k-filter-btn.active,
.k-filter-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.k-content-card {
    display: none;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
}

.k-content-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.k-split-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.k-mobile-toggles {
    display: none;
}

.k-pane h4 {
    color: var(--color-text-digibos);
    font-size: 1.2rem;
    margin: 0 0 10px 0;
}

.k-sep {
    border: 0;
    height: 2px;
    background: var(--color-yellow);
    width: 50px;
    margin: 0 0 20px 0;
}

.k-pane ol {
    padding-left: 20px;
    color: #555;
}

.k-pane li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* --- KURIKULUM: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .k-content-card {
        padding: 30px;
    }

    .k-split-mobile {
        gap: 20px;
    }

    /* Jarak dua kolom disesuaikan */
    .k-pane h4 {
        font-size: 1.1rem;
    }

    .k-pane li {
        font-size: 0.9rem;
    }
}

/* --- KURIKULUM: MOBILE --- */
@media (max-width: 768px) {
    .seo-kurikulum {
        padding: 60px 0;
    }

    .k-filter-btn {
        width: 100%;
        text-align: center;
    }

    .k-split-mobile {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .desktop-only {
        display: none;
    }

    .k-mobile-toggles {
        display: flex;
        background: #eee;
        border-radius: 8px;
        padding: 5px;
        margin-bottom: 20px;
    }

    .k-mob-btn {
        flex: 1;
        padding: 10px;
        border: none;
        background: transparent;
        border-radius: 6px;
        font-weight: bold;
        color: #555;
        transition: 0.3s;
    }

    .k-mob-btn.active {
        background: #fff;
        color: var(--color-primary);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .k-pane {
        display: none;
    }

    .k-pane.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .k-content-card {
        padding: 25px 20px;
    }
}


/* ==========================================
   6. TIMELINE SECTION
========================================== */
.seo-timeline {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.timeline-visual-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto 60px auto;
    height: 60px;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: #eee;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 10px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #e5007e;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.tl-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.tl-icon-frame {
    width: 60px;
    height: 60px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.4s ease;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #eee;
}

.tl-node.active .tl-icon-frame,
.tl-node.passed .tl-icon-frame {
    background: var(--color-primary);
    color: var(--color-yellow);
    box-shadow: 0 0 0 4px rgba(130, 10, 229, 0.3);
    transform: scale(1.1);
}

.timeline-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.tl-card {
    background: #f8f9fc;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid var(--color-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.tl-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tl-card h3 {
    color: var(--color-text-digibos);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.tl-sep {
    border: 0;
    height: 3px;
    background: #e5007e;
    width: 40px;
    margin: 0 auto 15px;
    border-radius: 3px;
}

.tl-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* --- TIMELINE: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .timeline-visual-wrapper {
        padding: 0 20px;
    }

    /* Garis track tidak terlalu panjang */
    .timeline-cards-container {
        gap: 15px;
        padding: 0 20px;
    }

    .tl-card {
        padding: 20px 15px;
    }

    .tl-card h3 {
        font-size: 0.95rem;
    }

    .tl-card p {
        font-size: 0.85rem;
    }
}

/* --- TIMELINE: MOBILE --- */
@media (max-width: 768px) {
    .seo-timeline {
        padding: 60px 0;
    }

    .timeline-cards-container {
        display: block;
        min-height: 250px;
        position: relative;
    }

    .tl-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 25px 15px;
        box-sizing: border-box;
    }

    .tl-icon-frame {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}


/* ==============================================
   7. TOOLS SECTION
============================================== */
.seo-tools {
    padding: 60px 0;
    background: #fff;
}

.tools-layout-wrapper {
    margin-top: 40px;
    overflow: hidden;
}

.tools-desktop-marquee {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-row {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.marquee-track-tools {
    display: flex;
    width: max-content;
    gap: 20px;
}

.marquee-row.right-to-left .marquee-track-tools {
    animation: scrollLeftTools 20s linear infinite;
}

.marquee-row.left-to-right .marquee-track-tools {
    animation: scrollRightTools 20s linear infinite;
}

@keyframes scrollLeftTools {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRightTools {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.tool-item {
    background: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--color-dark);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary-light);
}

.tool-item img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.tools-mobile-slider {
    display: none !important;
}

/* --- TOOLS: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .tools-desktop-marquee {
        gap: 15px;
    }

    .tool-item {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .tool-item img {
        width: 22px;
        height: 22px;
    }
}

/* --- TOOLS: MOBILE --- */
@media (max-width: 768px) {
    .tools-desktop-marquee {
        display: none;
    }

    .tools-mobile-slider {
        display: block !important;
    }

    .tool-slide-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 20px 0;
    }
}


/* ==============================================
   8. PROGRAM SECTION
============================================== */
.seo-program {
    padding: 80px 0;
    background: #fff;
}

.program-main-card-new {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    max-width: 550px;
    margin: 0 auto;
    padding: 50px 40px;
    position: relative;
    border: 2px solid var(--color-primary);
    box-sizing: border-box;
}

.badge-live-zoom {
    position: absolute;
    top: -20px;
    right: -25px;
    background: #3140de;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.4);
    border: 2px solid #fff;
}

.badge-live-zoom svg {
    width: 18px;
    height: 18px;
    fill: #ffd700;
    animation: iconPulse 1.5s infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.p-title-new {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-text-digibos);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.p-desc-new {
    font-size: 1.05rem;
    color: #555;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.p-pills-container {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.p-pill {
    background: #ffecb3;
    color: var(--color-text-digibos);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.p-testi-slider-viewport {
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.p-testi-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.p-testi-card {
    flex: 0 0 100%;
    background: #a94793;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
    gap: 20px;
}

.p-testi-avatar-wrap {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 10px 10px 10px 30px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #ffb300;
}

.p-testi-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-testi-info {
    color: #fff;
    flex-grow: 1;
}

.p-testi-name {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 5px;
    font-weight: 800;
}

.p-testi-role {
    font-size: 0.8rem;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.4;
}

.p-testi-dots {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 15px;
    padding-right: 10px;
}

.p-dot {
    width: 6px;
    height: 6px;
    background: #ddd;
    border-radius: 50%;
    transition: 0.3s;
}

.p-dot.active {
    background: var(--color-primary);
    width: 20px;
    border-radius: 5px;
}

.p-benefit-accordion {
    margin: 0 0 35px 0;
    background: #f8f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.p-benefit-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-text-digibos);
    transition: background 0.3s;
}

.p-benefit-header:hover {
    background: #f0f4fb;
}

.p-benefit-arrow {
    width: 26px;
    height: 26px;
    fill: var(--color-text-digibos);
    transition: transform 0.4s ease;
}

.p-benefit-accordion.active .p-benefit-arrow {
    transform: rotate(180deg);
}

.p-benefit-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
}

.p-benefit-accordion.active .p-benefit-body {
    max-height: 400px;
}

.p-benefit-list {
    list-style: none;
    padding: 15px 20px 20px 20px;
    margin: 0;
    border-top: 1px solid #e2e8f0;
}

.p-benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.p-benefit-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    background: #e6ffed;
    color: #28a745;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.p-schedule-block {
    margin: 0 0 25px 0;
    background: #f8f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.p-schedule-title {
    padding: 15px 20px;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-text-digibos);
    background: #f0f4fb;
    border-bottom: 1px solid #e2e8f0;
}

.p-schedule-list {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
    max-height: 220px;
    overflow-y: auto;
}

.p-schedule-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.4;
}

.p-schedule-list li:last-child {
    margin-bottom: 0;
}

.p-schedule-list::-webkit-scrollbar {
    width: 6px;
}

.p-schedule-list::-webkit-scrollbar-track {
    background: transparent;
}

.p-schedule-list::-webkit-scrollbar-thumb {
    background: #c5cae9;
    border-radius: 10px;
}

.p-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.p-price-coret-new {
    color: #f31212;
    text-decoration: line-through;
    font-weight: 800;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
}

.p-price-now-new {
    color: var(--color-text-digibos);
    font-size: 2.6rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.p-date-area {
    text-align: right;
}

.p-date-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
}

.p-date-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-digibos);
}

.btn-cta-new {
    display: block;
    width: 100%;
    text-align: center;
    background: #ea5a9a;
    color: var(--color-text-digibos);
    padding: 18px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    animation: pulseGlowYellow 2s infinite;
}

.btn-cta-new:hover {
    animation: none;
    transform: translateY(-4px) scale(1.02);
    background: #ffea00;
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
}

@keyframes pulseGlowYellow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.8);
        transform: scale(1);
    }

    50% {
        transform: scale(1.015);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        transform: scale(1);
    }
}

/* --- PROGRAM: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .program-main-card-new {
        width: 100%;
        max-width: none;
        padding: 40px 30px;
    }

    /* Lebar dipaskan mengikuti container padding tablet */
    .p-title-new {
        font-size: 1.8rem;
    }

    .p-desc-new {
        font-size: 0.95rem;
    }

    .p-price-now-new {
        font-size: 2.2rem;
    }
}

/* --- PROGRAM: MOBILE --- */
@media (max-width: 768px) {
    .seo-program {
        padding: 60px 0;
    }

    .program-main-card-new {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .badge-live-zoom {
        position: absolute;
        top: -20px;
        right: 10px;
        display: inline-flex;
        margin-bottom: 0;
    }

    .p-title-new {
        font-size: 1.6rem;
        padding-right: 0;
        margin-top: 15px;
    }

    .p-testi-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .p-footer-new {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .p-date-area {
        text-align: center;
    }

    .p-price-now-new {
        font-size: 2.2rem;
    }
}


/* ==============================================
   9. FAQ SECTION
============================================== */
.seo-faq {
    padding: 80px 0;
    background: #fafafa;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.faq-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-q {
    padding: 18px 20px;
    font-weight: 700;
    color: var(--color-primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-q:hover {
    background: #f0f4fb;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: 0.3s;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
    color: #e5007e;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #555;
}

.faq-card.active .faq-a {
    max-height: 200px;
    padding-bottom: 18px;
}

/* --- FAQ: TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* FAQ jauh lebih nyaman dibaca dalam 1 kolom panjang di tablet */
    .faq-q {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-a {
        font-size: 0.9rem;
    }
}

/* --- FAQ: MOBILE --- */
@media (max-width: 768px) {
    .seo-faq {
        padding: 60px 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 20px;
    }
}