/* Cara Mendapatkan Hepigo Section Styles */
.cara-mendapatkan-hepigo {
    padding: clamp(30px, 5vw, 60px) 0;
    background-color: #fff;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.cara-mendapatkan-hepigo h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: clamp(8px, 2vw, 10px);
    color: #333;
    text-align: left;
}

.cara-mendapatkan-hepigo .subtitle {
    color: #666;
    font-size: clamp(14px, 2.5vw, 18px);
    margin-bottom: clamp(20px, 4vw, 40px);
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
}

/* Modern Carousel */
.content-carousel {
    position: relative;
    overflow: hidden;
    margin-top: clamp(15px, 3vw, 20px);
    width: 100%;
    max-width: 100%;
    padding: clamp(5px, 2vw, 10px) clamp(10px, 3vw, 20px);
    box-sizing: border-box;
}

.content-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.content-slide {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    padding: 0;
    width: 100%;
}

.content-slide.active {
    opacity: 1;
}

/* Methods Container */
.methods-container {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    position: relative;
    margin-bottom: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
}

.methods-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
    transform: translateX(-50%);
}

.method-column {
    flex: 1;
    padding: clamp(5px, 2vw, 10px);
}

.method-title {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    margin-bottom: clamp(15px, 3vw, 25px);
    color: #333;
    position: relative;
    padding-left: 15px;
    text-align: left;
}

.method-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #dc3545;
    border-radius: 2px;
}

/* App Cards */
.app-cards-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-cards-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.top-row {
    justify-content: space-between;
    width: 100%;
}

.bottom-row {
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.app-card {
    flex: 1;
    min-width: calc(33.33% - 7px);
    max-width: calc(33.33% - 7px);
    padding: clamp(10px, 2vw, 15px);
    border-radius: clamp(8px, 1.5vw, 10px);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bottom-row .app-card {
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
}

@media (max-width: 767.98px) {
    .app-card {
        min-width: calc(50% - 7px);
        max-width: calc(50% - 7px);
    }

    .bottom-row .app-card {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .app-card {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.app-card:hover::before {
    transform: translateY(0);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Colors */
.blue-card {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}
.red-card {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.orange-card {
    background: linear-gradient(135deg, #f39c12, #d35400);
}
.dark-red-card {
    background: linear-gradient(135deg, #8b0000, #660000);
}
.pink-card {
    background: linear-gradient(135deg, #e88587, #d16769);
}

.app-icon {
    width: clamp(28px, 4vw, 32px);
    height: clamp(28px, 4vw, 32px);
    margin: 0 auto clamp(8px, 1.5vw, 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: clamp(6px, 1vw, 8px);
    padding: clamp(5px, 1vw, 6px);
    transition: transform 0.3s ease;
}

.app-card:hover .app-icon {
    transform: scale(1.1);
}

.app-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.app-card h4 {
    color: white;
    font-size: clamp(11px, 2vw, 12px);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Dealer Items */
.dealer-items {
    display: flex;
    justify-content: space-between;
    gap: clamp(10px, 2vw, 15px);
    margin-top: clamp(10px, 2vw, 15px);
}

.dealer-item {
    text-align: center;
    padding: clamp(10px, 2vw, 15px);
    background: white;
    border-radius: clamp(8px, 1.5vw, 12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
}

.dealer-item:hover {
    transform: translateY(-3px);
}

.dealer-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px;
    transition: transform 0.3s ease;
}

.dealer-item:hover .dealer-icon {
    transform: scale(1.1);
}

.dealer-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.dealer-item ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    text-align: left;
}

.dealer-item li {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    padding-left: 15px;
    position: relative;
}

.dealer-item li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #dc3545;
}

/* Phone Steps Section */
.phone-steps-section {
    padding: 0;
    text-align: left;
    background: transparent;
}

.phone-steps-section .method-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.phone-steps-section .method-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #dc3545;
    border-radius: 2px;
}

.steps-row {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 0;
    margin-top: 20px;
    width: 100%;
}

.profile-card {
    background: #0066cc;
    color: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 120px;
    height: 120px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    flex-shrink: 0;
}

.profile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
}

.profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.profile-card p {
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
}

/* Referral Card Styles */
.profile-card.referral-card {
    width: 140px;
    height: auto;
    min-height: 140px;
    padding: 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.profile-card.referral-card .profile-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
    margin-bottom: 8px;
}

.profile-card.referral-card p {
    font-size: 12px;
    line-height: 1.4;
}

/* Challenge Card Styles */
.profile-card.challenge-card {
    width: 140px;
    height: auto;
    min-height: 140px;
    padding: 12px;
    background: linear-gradient(135deg, #f39c12, #d35400);
}

/* Service Card Styles */
.profile-card.service-card {
    width: 140px;
    height: auto;
    min-height: 140px;
    padding: 12px;
    background: linear-gradient(135deg, #8b0000, #660000);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

/* Shopping Card Styles */
.profile-card.shopping-card {
    width: 140px;
    height: auto;
    min-height: 140px;
    padding: 12px;
    background: linear-gradient(135deg, #e88587, #d16769);
    box-shadow: 0 4px 15px rgba(232, 133, 135, 0.3);
}

.profile-card.challenge-card .profile-icon,
.profile-card.service-card .profile-icon,
.profile-card.shopping-card .profile-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
    margin-bottom: 8px;
}

.profile-card.challenge-card p,
.profile-card.service-card p,
.profile-card.shopping-card p {
    font-size: 12px;
    line-height: 1.4;
}

/* Challenge Steps Styles */
.phone-steps-container.challenge-steps,
.phone-steps-container.service-steps,
.phone-steps-container.shopping-steps {
    display: flex;
    gap: clamp(8px, 2vw, 15px);
    align-items: flex-start;
    flex: 1;
    justify-content: flex-start;
    width: calc(100% - 150px);
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 5px;
    flex-wrap: nowrap;
}

.phone-step.challenge-step,
.phone-step.service-step,
.phone-step.shopping-step {
    width: clamp(80px, 20vw, 120px);
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.phone-frame.challenge-frame,
.phone-frame.service-frame,
.phone-frame.shopping-frame {
    aspect-ratio: 9/16;
    border-radius: clamp(10px, 2vw, 15px);
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.phone-frame.challenge-frame img,
.phone-frame.service-frame img,
.phone-frame.shopping-frame img {
    border-radius: clamp(10px, 2vw, 15px);
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.phone-steps-container {
    display: flex;
    gap: clamp(8px, 2vw, 15px);
    align-items: flex-start;
    flex: 1;
    justify-content: flex-start;
    width: calc(100% - 150px);
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 5px;
    flex-wrap: nowrap;
}

.phone-steps-container.profile-steps,
.phone-steps-container.referral-steps {
    display: flex;
    gap: clamp(8px, 2vw, 15px);
    align-items: flex-start;
    flex: 1;
    justify-content: flex-start;
    width: calc(100% - 150px);
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 5px;
    flex-wrap: nowrap;
}

@media (max-width: 767.98px) {
    /* Challenge, Service & Shopping Card Responsive */
    .profile-card.challenge-card,
    .profile-card.service-card,
    .profile-card.shopping-card {
        width: 120px;
        min-height: 120px;
        padding: 10px;
    }

    .profile-card.challenge-card .profile-icon,
    .profile-card.service-card .profile-icon,
    .profile-card.shopping-card .profile-icon {
        width: 35px;
        height: 35px;
        padding: 8px;
    }

    .profile-card.challenge-card p,
    .profile-card.service-card p,
    .profile-card.shopping-card p {
        font-size: 11px;
    }

    .phone-steps-container.challenge-steps,
    .phone-steps-container.service-steps,
    .phone-steps-container.shopping-steps {
        width: calc(100% - 115px);
        gap: 12px;
        overflow-x: auto;
        padding: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        display: flex;
        flex-wrap: nowrap;
    }

    .phone-step.challenge-step,
    .phone-step.service-step,
    .phone-step.shopping-step {
        width: clamp(110px, 20vw, 140px);
        flex: 0 0 auto;
        padding: 5px;
    }

    .phone-frame.challenge-frame,
    .phone-frame.service-frame,
    .phone-frame.shopping-frame {
        aspect-ratio: 9/16;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .profile-card {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .profile-card.referral-card {
        width: 120px;
        min-height: 120px;
        padding: 10px;
    }

    .profile-card.referral-card .profile-icon {
        width: 35px;
        height: 35px;
        padding: 8px;
    }

    .profile-card.referral-card p {
        font-size: 11px;
    }

    .phone-steps-container {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 10px 0;
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        grid-gap: 15px;
    }

    .phone-step {
        min-width: 120px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    /* Profile, Referral, Challenge, Service and Shopping Steps Mobile */
    .phone-steps-container.profile-steps,
    .phone-steps-container.referral-steps,
    .phone-steps-container.challenge-steps,
    .phone-steps-container.service-steps,
    .phone-steps-container.shopping-steps {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding: 10px;
        overflow: visible;
    }

    .phone-step {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        padding: 5px;
    }

    .phone-frame {
        aspect-ratio: 9/16;
        width: 100%;
        max-width: none;
    }

    /* Card Mobile Styles */
    .profile-card.challenge-card,
    .profile-card.service-card,
    .profile-card.shopping-card {
        width: 100px;
        min-height: 100px;
        padding: 8px;
    }

    .profile-card.challenge-card .profile-icon,
    .profile-card.service-card .profile-icon,
    .profile-card.shopping-card .profile-icon {
        width: 30px;
        height: 30px;
        padding: 6px;
        margin-bottom: 6px;
    }

    .profile-card.challenge-card p,
    .profile-card.service-card p,
    .profile-card.shopping-card p {
        font-size: 10px;
        line-height: 1.3;
    }

    .phone-step.challenge-step,
    .phone-step.service-step,
    .phone-step.shopping-step {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        padding: 5px;
    }

    .phone-frame.challenge-frame,
    .phone-frame.service-frame,
    .phone-frame.shopping-frame {
        aspect-ratio: 9/16;
        width: 100%;
        max-width: none;
    }

    .steps-row {
        gap: 20px;
        flex-direction: column;
        align-items: center;
        overflow: visible;
    }

    .profile-card {
        width: 90px;
        height: 90px;
        padding: 8px;
    }

    .phone-steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 5px;
    }

    .phone-step {
        min-width: unset;
        width: 100%;
    }

    .phone-frame {
        aspect-ratio: 9/16;
        width: 100%;
        max-width: none;
    }
}

.phone-steps-container::-webkit-scrollbar {
    display: none;
}

.phone-step {
    position: relative;
    width: clamp(80px, 20vw, 120px);
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.phone-step:hover {
    transform: translateY(-5px);
}

.cara-mendapatkan-hepigo .step-number {
    width: clamp(14px, 3vw, 18px);
    height: clamp(14px, 3vw, 18px);
    background: #dc3545;
    color: white;
    border-radius: 50%;
    position: absolute;
    top: clamp(-6px, -1.5vw, -8px);
    left: clamp(-6px, -1.5vw, -8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: clamp(9px, 2vw, 11px);
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.25);
    z-index: 2;
}

.phone-frame {
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: clamp(10px, 2vw, 15px);
    overflow: hidden;
    background: #fff;
    aspect-ratio: 9/16;
    transition: box-shadow 0.3s ease;
}

.phone-frame:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.phone-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: clamp(10px, 2vw, 15px);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.phone-step:hover .phone-image {
    transform: scale(1.05);
}

/* Navigation Controls */
.content-nav {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 12px);
    margin-top: clamp(20px, 4vw, 30px);
    padding: clamp(5px, 1vw, 10px);
}

.content-dot {
    width: clamp(8px, 1.5vw, 12px);
    height: clamp(8px, 1.5vw, 12px);
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
}

.content-dot::after {
    content: '';
    position: absolute;
    top: clamp(-3px, -0.5vw, -4px);
    left: clamp(-3px, -0.5vw, -4px);
    right: clamp(-3px, -0.5vw, -4px);
    bottom: clamp(-3px, -0.5vw, -4px);
    border-radius: 50%;
    border: 2px solid #dc3545;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-dot.active {
    background-color: #dc3545;
    transform: scale(1.1);
}

.content-dot.active::after {
    transform: scale(1);
}

.content-dot:hover {
    background-color: #dc3545;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Removed navigation arrows styles */

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .cara-mendapatkan-hepigo h2 {
        font-size: 28px;
    }

    .cara-mendapatkan-hepigo .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .content-carousel {
        padding: 25px;
    }

    .app-card {
        min-width: calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
    }

    .dealer-items {
        gap: 12px;
    }
}

@media (max-width: 991.98px) {
    .methods-container {
        flex-direction: column;
        gap: 30px;
    }

    .methods-container::after {
        display: none;
    }

    .method-column {
        padding: 0;
    }

    .app-card {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        padding: 12px 8px;
    }

    .app-card h4 {
        font-size: 11px;
    }

    .dealer-items {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .dealer-item {
        flex: 0 1 calc(50% - 10px);
        min-width: 200px;
    }

    .content-carousel {
        margin: 15px 0;
        padding: 5px 15px;
    }

    .content-nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
        background: rgba(220, 53, 69, 0.95);
    }

    .phone-steps-section {
        padding: 0;
    }

    .phone-steps-section .method-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .steps-row {
        gap: 15px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .steps-row::-webkit-scrollbar {
        display: none;
    }

    .profile-card {
        width: 100px;
        height: 100px;
        padding: 12px;
        flex: 0 0 auto;
    }

    .profile-icon {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .profile-card p {
        font-size: 11px;
    }

    .phone-steps-container {
        gap: 12px;
        overflow-x: auto;
        padding: 5px;
        width: calc(100% - 115px);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .phone-steps-container::-webkit-scrollbar {
        display: none;
    }

    .phone-step {
        min-width: 100px;
        width: 100px;
        flex: 0 0 auto;
    }

    .step-number {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: -6px;
        left: -6px;
    }
}

@media (max-width: 767.98px) {
    .cara-mendapatkan-hepigo {
        padding: clamp(25px, 4vw, 40px) 0;
    }

    .content-nav {
        gap: clamp(6px, 1vw, 8px);
        margin-top: clamp(15px, 3vw, 20px);
        padding: clamp(3px, 0.8vw, 5px);
    }

    .content-dot {
        width: clamp(6px, 1.2vw, 8px);
        height: clamp(6px, 1.2vw, 8px);
    }

    .content-dot::after {
        top: clamp(-2px, -0.4vw, -3px);
        left: clamp(-2px, -0.4vw, -3px);
        right: clamp(-2px, -0.4vw, -3px);
        bottom: clamp(-2px, -0.4vw, -3px);
        border-width: 1.5px;
    }

    .cara-mendapatkan-hepigo h2 {
        font-size: clamp(20px, 4vw, 24px);
        margin-bottom: clamp(8px, 2vw, 10px);
    }

    .cara-mendapatkan-hepigo .subtitle {
        font-size: clamp(13px, 2.5vw, 14px);
        margin-bottom: clamp(20px, 4vw, 25px);
    }

    .content-carousel {
        margin: 10px -10px;
        padding: clamp(5px, 2vw, 10px);
    }

    .content-slide {
        padding: 0 clamp(5px, 2vw, 10px);
    }

    .methods-container {
        flex-direction: column;
        gap: clamp(20px, 4vw, 30px);
    }

    .method-column {
        width: 100%;
    }

    .method-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .app-card {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .app-card h4 {
        font-size: 12px;
    }

    .dealer-item {
        flex: 0 1 100%;
        margin-bottom: 15px;
    }

    .dealer-item h4 {
        font-size: 13px;
    }

    .dealer-item li {
        font-size: 11px;
    }

    .content-carousel {
        margin: 10px 0;
        padding: 5px 10px;
    }

    .content-nav {
        margin-top: 20px;
    }

    .content-dot {
        width: 10px;
        height: 10px;
    }

    .content-nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .phone-steps-container {
        width: calc(100% - 100px);
    }

    .phone-step {
        width: 120px;
    }
}

@media (max-width: 575.98px) {
    .cara-mendapatkan-hepigo {
        padding: clamp(20px, 3vw, 30px) 0;
    }

    .content-nav {
        gap: clamp(4px, 0.8vw, 6px);
        margin-top: clamp(12px, 2.5vw, 15px);
        padding: clamp(2px, 0.5vw, 3px);
    }

    .content-dot {
        width: clamp(4px, 1vw, 6px);
        height: clamp(4px, 1vw, 6px);
    }

    .content-dot::after {
        top: clamp(-1.5px, -0.3vw, -2px);
        left: clamp(-1.5px, -0.3vw, -2px);
        right: clamp(-1.5px, -0.3vw, -2px);
        bottom: clamp(-1.5px, -0.3vw, -2px);
        border-width: 1px;
    }

    .content-dot:hover,
    .content-dot.active {
        transform: scale(1.15);
    }

    .cara-mendapatkan-hepigo h2 {
        font-size: clamp(18px, 3.5vw, 22px);
    }

    .cara-mendapatkan-hepigo .subtitle {
        font-size: clamp(12px, 2vw, 13px);
        margin-bottom: clamp(15px, 3vw, 20px);
    }

    .content-carousel {
        padding: 0;
        margin: 0;
        overflow: visible;
    }

    .content-slide {
        padding: 10px;
        overflow: visible;
    }

    .methods-container {
        gap: clamp(15px, 3vw, 20px);
    }

    .method-column {
        padding: 0 clamp(5px, 2vw, 10px);
    }

    .app-cards-container {
        gap: clamp(8px, 1.5vw, 10px);
    }

    .dealer-items {
        gap: clamp(10px, 2vw, 15px);
    }

    .content-carousel {
        padding: 0;
        margin: 0;
    }

    .content-slide {
        padding: 0 10px;
    }

    .method-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .app-card {
        padding: 10px 8px;
    }

    .app-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
    }

    .dealer-item {
        padding: 12px 8px;
    }

    .dealer-icon {
        width: 35px;
        height: 35px;
    }

    .steps-row {
        gap: 10px;
    }

    .profile-card {
        width: 80px;
        height: 80px;
        padding: 8px;
    }

    .profile-card.referral-card {
        width: 100px;
        min-height: 100px;
        padding: 8px;
    }

    .profile-card.referral-card .profile-icon {
        width: 30px;
        height: 30px;
        padding: 6px;
        margin-bottom: 6px;
    }

    .profile-card.referral-card p {
        font-size: 10px;
        line-height: 1.3;
    }

    .profile-icon {
        width: 24px;
        height: 24px;
        padding: 4px;
    }

    .profile-card p {
        font-size: 9px;
    }

    .phone-steps-container {
        width: 100%;
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 10px;
        overflow: visible;
    }

    .phone-step {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .step-number {
        width: 14px;
        height: 14px;
        font-size: 9px;
        top: -5px;
        left: -5px;
    }

    .content-nav-arrow {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .content-nav-arrow.prev {
        left: 5px;
    }

    .content-nav-arrow.next {
        right: 5px;
    }

    .content-dot {
        width: 8px;
        height: 8px;
    }
}
