:root {
    --color-primary: #820AE5;
    --color-primary-light: #dab6fb;
    --color-primary-dark: #2b0e4a;
    --color-secondary: #a94793;
    --color-secondary-light: #c88bbc;
    --color-tertiary: #e5007e;
    --color-tertiary-light: #ea5a9a;
    --color-text-digibos: #1E0633;
    --color-dark: #333333;
    --color-yellow: #FFD700;
}

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

.jasa-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-title i,
.section-title .fab,
.section-title .fas {
    margin-right: 8px;
    color: var(--color-primary);
    display: inline-block !important;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
    .jasa-seo-container {
        padding: 0 50px !important;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.2rem;
    }
    .section-title i,
    .section-title .fab,
    .section-title .fas {
        font-size: 1.3rem;
    }
}

/* ==============================================
   1. HERO SECTION
============================================== */
.jasa-seo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f5f0ff;
    padding-top: 80px;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

.jasa-seo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.jasa-seo-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, #a855f7, #820AE5 60%, transparent 80%);
    top: -15%;
    left: -10%;
    animation: blobFloat1 18s ease-in-out infinite;
}

.jasa-seo-blob-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 70% 70%, #FFD700, #f59e0b 60%, transparent 80%);
    bottom: -10%;
    right: -8%;
    animation: blobFloat2 20s ease-in-out infinite;
}

.jasa-seo-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 50% 50%, #ec4899, #e5007e 60%, transparent 80%);
    top: 40%;
    right: 30%;
    animation: blobFloat3 22s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(50px, -40px) scale(1.15) rotate(90deg); }
    50% { transform: translate(-30px, 20px) scale(0.9) rotate(180deg); }
    75% { transform: translate(40px, 30px) scale(1.05) rotate(270deg); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-40px, 30px) scale(1.2) rotate(-120deg); }
    66% { transform: translate(30px, -40px) scale(0.85) rotate(-240deg); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -50px) scale(1.25); }
}

.jasa-seo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(130, 10, 229, 0.55) 0%, rgba(130, 10, 229, 0.2) 50%, rgba(130, 10, 229, 0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

.jasa-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: 3;
}

.jasa-seo-hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jasa-seo-hero-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.jasa-seo-hero-img-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--color-primary);
    border-radius: 22px;
    z-index: 2;
    pointer-events: none;
    animation: outlinePulse 3s ease-in-out infinite;
}

@keyframes outlinePulse {
    0%, 100% { border-color: var(--color-primary); }
    50% { border-color: var(--color-yellow); }
}

.jasa-seo-img-outline-dot {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
    z-index: 3;
    animation: dotTravel 6s linear infinite;
    box-shadow: 0 0 10px var(--color-primary);
}

@keyframes dotTravel {
    0% { top: -6px; left: -6px; }
    25% { top: -6px; left: calc(100% - 6px); }
    50% { top: calc(100% - 6px); left: calc(100% - 6px); }
    75% { top: calc(100% - 6px); left: -6px; }
    100% { top: -6px; left: -6px; }
}

.jasa-seo-hero-img-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.jasa-seo-hero-tools-card {
    background: #fefcf0;
    border-radius: 25px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 600px;
}

.jasa-seo-hero-tools-text {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.jasa-seo-hero-tools-imgs {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.jasa-seo-hero-tools-imgs img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

.jasa-seo-hero-left h1 {
    color: var(--color-text-digibos);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1.1;
    border-right: 3px solid var(--color-primary);
    white-space: normal;
}

.jasa-seo-hero-left h2 {
    color: var(--color-text-digibos);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0;
}

.highlight-stabilo {
    display: inline-block;
    color: var(--color-primary);
    background-image: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary) 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: #fff !important;
}

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

.jasa-seo-hero-list-card {
    background: linear-gradient(to right, var(--color-tertiary), var(--color-tertiary-light));
    opacity: 0.75;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 18px 22px;
    margin: 0 0 30px 0;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(229, 0, 126, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jasa-seo-hero-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(229, 0, 126, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.jasa-seo-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    gap: 12px 20px;
}

.jasa-seo-hero-list-card .jasa-seo-hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    animation: listFadeIn 0.6s ease forwards;
}

.jasa-seo-hero-list li:nth-child(1) { animation-delay: 2.2s; }
.jasa-seo-hero-list li:nth-child(2) { animation-delay: 2.6s; }
.jasa-seo-hero-list li:nth-child(3) { animation-delay: 3.0s; }
.jasa-seo-hero-list li:nth-child(4) { animation-delay: 3.4s; }

.jasa-seo-hero-list li i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.jasa-seo-hero-list-card .jasa-seo-hero-list li:nth-child(1) i,
.jasa-seo-hero-list-card .jasa-seo-hero-list li:nth-child(2) i,
.jasa-seo-hero-list-card .jasa-seo-hero-list li:nth-child(3) i,
.jasa-seo-hero-list-card .jasa-seo-hero-list li:nth-child(4) i {
    color: #fff;
}

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

.jasa-seo-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
}

.jasa-seo-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(130, 10, 229, 0.4);
    background: #6a00c4;
    color: var(--color-yellow);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .jasa-seo-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .jasa-seo-hero-left h1 { font-size: 2rem; }
    .jasa-seo-hero-left h2 { font-size: 1.1rem; }
    .jasa-seo-hero-desc { font-size: 0.9rem; max-width: 100%; }
    .jasa-seo-hero-img-card { max-width: 400px; }
    .jasa-seo-hero-tools-card { max-width: 400px; }
}

@media (max-width: 768px) {
    .jasa-seo-hero {
        padding-top: 120px;
        padding-bottom: 80px;
        min-height: auto;
        align-items: flex-start;
    }
    .jasa-seo-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .jasa-seo-hero-left { order: 1; }
    .jasa-seo-hero-right { order: 2; justify-content: center; }
    .jasa-seo-hero-left h1 { font-size: 1.8rem; border-right: none; }
    .jasa-seo-hero-left h2 { font-size: 1.1rem; }
    .jasa-seo-hero-desc { max-width: 100%; }
    .jasa-seo-hero-img-card { max-width: 100%; }
    .jasa-seo-hero-tools-card {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }
}

/* ==============================================
   2. PENJELASAN SECTION
============================================== */
.jasa-seo-penjelasan {
    padding: 80px 0;
    background: #ffffff;
}

.jasa-seo-penjelasan-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.jasa-seo-penjelasan-left img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.jasa-seo-penjelasan-right h2 {
    margin-bottom: 20px;
}

.jasa-seo-penjelasan-sub {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.jasa-seo-penjelasan-sub:last-child {
    margin-bottom: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .jasa-seo-penjelasan-layout {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .jasa-seo-penjelasan {
        padding: 60px 0;
    }
    .jasa-seo-penjelasan-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==============================================
   3. PROSES SECTION
============================================== */
.jasa-seo-proses {
    padding: 80px 0;
    background: #fafafa;
}

.jasa-seo-proses-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.jasa-seo-proses-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.jasa-seo-proses-step.animate {
    animation: prosesStepIn 0.8s ease forwards;
}

.jasa-seo-proses-step:nth-child(1).animate { animation-delay: 0.1s; }
.jasa-seo-proses-step:nth-child(2).animate { animation-delay: 0.3s; }
.jasa-seo-proses-step:nth-child(3).animate { animation-delay: 0.5s; }

@keyframes prosesStepIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.jasa-seo-proses-step.animate .jasa-seo-proses-badge {
    animation: badgePop 0.6s ease forwards;
}

.jasa-seo-proses-step:nth-child(1).animate .jasa-seo-proses-badge { animation-delay: 0.2s; }
.jasa-seo-proses-step:nth-child(2).animate .jasa-seo-proses-badge { animation-delay: 0.4s; }
.jasa-seo-proses-step:nth-child(3).animate .jasa-seo-proses-badge { animation-delay: 0.6s; }

@keyframes badgePop {
    0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.2) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.jasa-seo-proses-step.animate .jasa-seo-proses-line {
    animation: lineGrow 0.8s ease forwards;
}

.jasa-seo-proses-step:nth-child(1).animate .jasa-seo-proses-line { animation-delay: 0.3s; }
.jasa-seo-proses-step:nth-child(2).animate .jasa-seo-proses-line { animation-delay: 0.5s; }

@keyframes lineGrow {
    0% { transform: scaleX(0); transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}

.jasa-seo-proses-line {
    position: absolute;
    top: 30px;
    left: calc(50% + 35px);
    right: calc(-50% + 35px);
    height: 3px;
    background: #E2E8F0;
    z-index: 1;
    transform-origin: left;
}

.jasa-seo-proses-step:last-child .jasa-seo-proses-line { display: none; }

.jasa-seo-proses-badge {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-yellow);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(130, 10, 229, 0.3);
}

.jasa-seo-proses-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text-digibos);
    margin: 0 0 10px 0;
}

.jasa-seo-proses-content p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .jasa-seo-proses-steps { gap: 25px; }
    .jasa-seo-proses-badge { width: 50px; height: 50px; font-size: 1.2rem; }
    .jasa-seo-proses-content h3 { font-size: 1rem; }
}

@media (max-width: 768px) {
    .jasa-seo-proses { padding: 60px 0; }
    .jasa-seo-proses-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .jasa-seo-proses-step {
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }
    .jasa-seo-proses-badge {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .jasa-seo-proses-line { display: none; }
    .jasa-seo-proses-content { flex: 1; }
    .jasa-seo-proses-content h3 { font-size: 1rem; }
    .jasa-seo-proses-content p { font-size: 0.85rem; }
}

/* ==============================================
   4. REASON SECTION (BENEFIT style)
============================================== */
.jasa-seo-reason {
    padding: 80px 0;
    background: #ffffff;
}

.jasa-seo-reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.jasa-seo-reason-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.jasa-seo-reason-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(130, 10, 229, 0.12);
}

.jasa-seo-reason-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.jasa-seo-reason-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.jasa-seo-reason-card:hover .jasa-seo-reason-img-wrap img {
    transform: scale(1.08);
}

.jasa-seo-reason-body {
    padding: 25px;
}

.jasa-seo-reason-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-digibos);
    margin: 0 0 10px 0;
}

.jasa-seo-reason-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .jasa-seo-reason-grid {
        gap: 20px;
    }
    .jasa-seo-reason-body {
        padding: 20px;
    }
    .jasa-seo-reason-body h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .jasa-seo-reason {
        padding: 60px 0;
    }
    .jasa-seo-reason-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .jasa-seo-reason-body {
        padding: 20px;
    }
    .jasa-seo-reason-img-wrap {
        height: 180px;
    }
}

/* ==============================================
   5. TESTIMONI SECTION (Logo Marquee)
============================================== */
.jasa-seo-testimoni {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.jasa-seo-testimoni .jasa-seo-container {
    box-shadow: 0 -20px 40px -10px rgba(0, 0, 0, 0.08), 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 12px;
}

.jasa-seo-logo-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.jasa-seo-logo-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

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

.jasa-seo-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.jasa-seo-logo-item:hover {
    border-color: var(--color-primary);
    border-radius: 12px;
}

.jasa-seo-logo-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .jasa-seo-logo-track { gap: 40px; }
    .jasa-seo-logo-item img { height: 40px; }
}

@media (max-width: 768px) {
    .jasa-seo-testimoni { padding: 40px 0; }
    .jasa-seo-logo-track { gap: 30px; }
    .jasa-seo-logo-item img { height: 32px; }
    .jasa-seo-logo-item { padding: 8px 12px; }
}

/* ==============================================
   6. PRODUCT SECTION (Pricing Cards)
============================================== */
.jasa-seo-loading {
    padding: 40px;
    font-size: 1rem;
    color: #888;
    grid-column: 1 / -1;
}

.jasa-seo-product {
    padding: 80px 0;
    background: #ffffff;
}

.jasa-seo-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    align-items: start;
}

.jasa-seo-pricing-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.jasa-seo-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.jasa-seo-pricing-card.jasa-seo-recommended {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(130, 10, 229, 0.12);
    animation: recommendedPulse 2.5s infinite ease-in-out;
}

@keyframes recommendedPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(130, 10, 229, 0.12); }
    50% { box-shadow: 0 10px 40px rgba(130, 10, 229, 0.25); }
}

.jasa-seo-pricing-card.jasa-seo-recommended:hover {
    transform: translateY(-5px);
}

.jasa-seo-rec-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: 0 0 8px 8px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    z-index: 5;
    text-transform: uppercase;
}

.jasa-seo-pricing-header {
    padding: 30px 25px 15px;
    text-align: center;
}

.jasa-seo-pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 0 0 10px;
    display: inline-block;
    position: relative;
}

.jasa-seo-pricing-header h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.jasa-seo-pricing-card.animated-header .jasa-seo-pricing-header h3::after {
    transform: scaleX(1);
}

.jasa-seo-pricing-header p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

.jasa-seo-pricing-summary {
    margin: 0 20px;
    padding: 18px;
    background: #f8f9fc;
    border-radius: 10px;
    text-align: center;
}

.jasa-seo-recommended .jasa-seo-pricing-summary {
    background: var(--color-primary-light);
}

.jasa-seo-summary-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-text-digibos);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jasa-seo-summary-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.jasa-seo-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.jasa-seo-summary-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.82rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 6px;
}

.jasa-seo-summary-list li:last-child { margin-bottom: 0; }

.jasa-seo-summary-list .jasa-seo-check {
    color: #28a745;
    font-weight: 900;
    flex-shrink: 0;
}

.jasa-seo-pricing-price {
    padding: 20px 25px;
    text-align: center;
}

.jasa-seo-price-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.jasa-seo-price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text-digibos);
    transition: color 0.3s ease;
}

.jasa-seo-recommended .jasa-seo-price-value {
    color: var(--color-primary);
}

.jasa-seo-recommended .jasa-seo-price-value:hover {
    color: #6a00c4;
}

.jasa-seo-price-period {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

.jasa-seo-price-sub {
    display: block;
    font-size: 0.8rem;
    font-style: italic;
    color: #999;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 4px;
}

.jasa-seo-pricing-cta {
    padding: 0 25px 20px;
    text-align: center;
}

.jasa-seo-cta-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.jasa-seo-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(130, 10, 229, 0.3);
    background: #6a00c4;
    color: var(--color-yellow);
}

.jasa-seo-cta-secondary {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.jasa-seo-cta-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.jasa-seo-pricing-accordion {
    margin: 0 25px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.jasa-seo-accordion-toggle {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-digibos);
    background: #f8f9fc;
    transition: background 0.3s;
    user-select: none;
}

.jasa-seo-accordion-toggle:hover {
    background: #f0f4fb;
}

.jasa-seo-accordion-arrow {
    width: 20px;
    height: 20px;
    fill: var(--color-text-digibos);
    transition: transform 0.3s ease;
}

.jasa-seo-pricing-accordion.active .jasa-seo-accordion-arrow {
    transform: rotate(180deg);
}

.jasa-seo-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
}

.jasa-seo-pricing-accordion.active .jasa-seo-accordion-body {
    max-height: 500px;
}

.jasa-seo-accordion-list {
    list-style: none;
    padding: 15px 16px;
    margin: 0;
    border-top: 1px solid #e2e8f0;
}

.jasa-seo-accordion-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
}

.jasa-seo-accordion-list li:last-child { margin-bottom: 0; }

.jasa-seo-accordion-list li .jasa-seo-check {
    color: #28a745;
    font-weight: 900;
    flex-shrink: 0;
}

.jasa-seo-accordion-list li .jasa-seo-cross {
    color: #dc3545;
    font-weight: 900;
    flex-shrink: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .jasa-seo-product-grid { gap: 20px; }
    .jasa-seo-pricing-header { padding: 25px 20px 12px; }
    .jasa-seo-pricing-header h3 { font-size: 1.2rem; }
    .jasa-seo-price-value { font-size: 1.7rem; }
    .jasa-seo-pricing-summary { margin: 0 15px; padding: 14px; }
    .jasa-seo-pricing-accordion { margin: 0 20px 20px; }
}

@media (max-width: 768px) {
    .jasa-seo-product { padding: 60px 0; }
    .jasa-seo-product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .jasa-seo-pricing-card.jasa-seo-recommended { order: -1; }
    .jasa-seo-pricing-header { padding-top: 35px; }
}

/* ==============================================
   7. ADD OM SECTION
============================================== */
.jasa-seo-addom {
    padding: 80px 0;
    background: #f8f9fa;
}

.jasa-seo-addom-card {
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    animation: addomPulse 2s ease-in-out infinite;
}

@keyframes addomPulse {
    0%, 100% {
        border-color: var(--color-primary);
        box-shadow: 0 0 10px rgba(130, 10, 229, 0.15), 0 8px 25px rgba(0, 0, 0, 0.04);
    }
    50% {
        border-color: var(--color-yellow);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.35), 0 8px 25px rgba(0, 0, 0, 0.06);
    }
}

.jasa-seo-addom-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.jasa-seo-addom-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text-digibos);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jasa-seo-addom-header h3 i {
    color: var(--color-primary);
}

.jasa-seo-addom-badge {
    background: var(--color-primary);
    color: var(--color-yellow);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.jasa-seo-addom-card > p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.jasa-seo-addom-card > strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text-digibos);
    margin-bottom: 20px;
}

.jasa-seo-addom-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jasa-seo-addom-service {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.jasa-seo-addom-service:hover {
    background: var(--color-primary-light);
    transform: translateX(5px);
}

.jasa-seo-addom-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 12px;
    font-size: 1.4rem;
    color: #fff;
}

.jasa-seo-addom-service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jasa-seo-addom-service-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.jasa-seo-addom-service-text a:hover {
    color: #6a00c4;
}

.jasa-seo-addom-service-text span {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .jasa-seo-addom-card { padding: 30px; }
    .jasa-seo-addom-header h3 { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .jasa-seo-addom { padding: 60px 0; }
    .jasa-seo-addom-card { padding: 25px 20px; }
    .jasa-seo-addom-header h3 { font-size: 1.1rem; }
    .jasa-seo-addom-service { flex-direction: column; align-items: flex-start; gap: 12px; }
    .jasa-seo-addom-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ==============================================
   8. FAQ SECTION
============================================== */
.jasa-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: 300px;
    padding-bottom: 18px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .faq-q { padding: 15px; font-size: 0.95rem; }
    .faq-a { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .jasa-seo-faq { padding: 60px 0; }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 20px;
    }
}
