/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter';
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed header */
}

/* Header Styles */
.header {
    background: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 35px;
    background: #2B4AD8;
    border-radius: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-icon {
    background: #ff6b6b;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    z-index: 999999;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 300;
    transition: opacity 0.3s ease;
    display: flex;
    font-size: 16px;
    line-height: 26px;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    opacity: 0.8;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 5px 15px;
    color: #323133;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 14px;
    line-height: 26px;
    margin: 0px;
}

.dropdown-item:hover {
    background: #5271FF;
    color: white;
    transition: transform 0.9s ease, opacity 0.9s ease;
    border-radius: 0px;
}
.faq ol.tos-list {
    list-style-type: disc;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0px 0px;
    padding-top:10px;
}

.dropdown-item:last-child {
    border-radius: 0px 0px 8px 8px;
    padding-bottom: 10px
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons img {
    width: 48px;
    height: 48px;
    margin-bottom: -10px;
}

.btn-signup {
    background: #5567ad;
    color: #FFDA00;
    padding: 10px 30px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
}

.btn-login {
    color: #5271FF;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    transition: background 0.3s ease;
    background: #FFDA00;
    font-size: 16px;
    line-height: 26px;
    transition: transform 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
}

.btn-signup-mobile {
    background: #ffd900;
    color: #5271FF;
    padding: 10px 30px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: transform 0.3s ease;
    border: 1px solid #5271FF;
    width: 100%;
    text-align: -webkit-center;
}

.btn-signup-mobile:hover {
    transform: translateY(-2px);
}

.btn-login-mobile {
    color: #FFDA00;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    transition: background 0.3s ease;
    background: #5271FF;
    font-size: 16px;
    line-height: 26px;
    transition: transform 0.3s ease;
    width: 100%;
    text-align: -webkit-center;
}

.btn-login-mobile:hover {
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: url("../../images/v2/bg-1.png");
    background-repeat: repeat;
    background-size: contain;
    background-position: top center;
    position: relative;
    padding: 150px 0px 100px 0px;
    overflow: hidden;
    margin-top: -80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 1rem;
    align-items: center;
    min-height: 500px;
}

.hero-text {
    color: white;
}

.hero-text-er {
    color: white;
    padding-right: 100px;
}

.hero-subtitle {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
}

.cta-button {
    background: #FFDA00;
    color: #5271FF;
    border: none;
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-button-mou {
    background: #FFDA00;
    color: #5271FF;
    border: none;
    padding: 15px 30px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button-mou:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-visual-img-jk{
    width: 100%;
}

.hero-visual-img-er{
    width: 100%;
}    

.rate-card-preview {
    position: absolute;
    left: -50px;
    top: 50px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.rate-item {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #333;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.rate-item:hover {
    transform: rotate(0deg) scale(1.05);
}

.mascot-character {
    font-size: 8rem;
    z-index: 3;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pie-chart {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 3rem;
    animation: rotate 10s linear infinite;
}

.icon-1 {
    position: absolute;
    bottom: 100px;
    right: 20px;
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.icon-2 {
    position: absolute;
    bottom: 50px;
    right: 80px;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: ellipse(60% 100% at 50% 100%);
}

/* Statistics Section */
.statistics {
    background: white;
    padding: 0px 0px 80px 0px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stats-title {
    font-size: 60px;
    font-weight: 600;
    color: #323133;
    margin-bottom: 4rem;
    line-height: 70px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0px;
}

.stat-card {
    padding: 50px 20px 0px 20px;
    border-radius: 25px 25px 80px 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-img {
    margin-top: -150px;
    margin-bottom: -8px;
}
 
.stat-card.yellow {
    background: #FFDA00;
    color: #333;
}

.stat-card.blue {
    background: #5271FF;
    color: white;
}

.stat-card.green {
    background: #00B583;
    color: white;
}

.stat-number {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 0px;
}

.stat-label {
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.stat-illustration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
}

/* Complete KOL Marketing Solutions Accordion V2 Styles */
.solutions-accordion-v2 {
    padding: 5rem 0;
    background: #f8fafc;
}

.solutions-accordion-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solutions-accordion-v2-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.solutions-accordion-v2-text {
    position: sticky;
    top: 2rem;
}

.solutions-accordion-v2-title {
    font-size: 60px;
    font-weight: 600;
    color: #323133;
    line-height: 70px;
    margin-bottom: 30px;
}

.solutions-accordion-v2-title-mobile {
    display: none;
    font-size: 32px;
    font-weight: 600;
    color: #323133;
    line-height: 42px;
    margin-bottom: 30px;
}

.solutions-accordion-v2-subtitle {
    font-size: 20px;
    color: #667085;
    line-height: 30px;
}

.solutions-accordion-v2-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Card Styles - Collapsed State (Simple) */
.solution-accordion-v2-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Different background colors for collapsed state */
.solution-accordion-v2-card.card-v2-blue {
    background: #d7defc;
}

.solution-accordion-v2-card.card-v2-pink {
    background: #d7defc;
}

.solution-accordion-v2-card.card-v2-purple {
    background: #d7defc;
}

/* Header - Simple collapsed state */
.solution-accordion-v2-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-accordion-v2-title {
    font-size: 32px;
    font-weight: 600;
    color: #5271FF;
    margin: 0;
    line-height: 42px;
    transition: all 0.3s ease;
    padding-right: 250px;
}

.accordion-v2-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.accordion-v2-arrow span {
    font-size: 1rem;
    color: #4c63d2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Body - Expanded state */
.solution-accordion-v2-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
}

.accordion-v2-body-content {
    padding: 0 2rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-v2-content-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.accordion-v2-text-content {
    flex: 1;
}

.accordion-v2-expanded-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4c63d2;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.accordion-v2-description {
    color: #667085;
    line-height: 26px;
    margin-bottom: 1.5rem;
    font-size: 16px;
    padding-right: 240px;
}

.accordion-v2-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.accordion-v2-features li {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    padding-left: 0.5rem;
}

.accordion-v2-cta-btn {
    background: linear-gradient(135deg, #4c63d2 0%, #667eea 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.accordion-v2-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 99, 210, 0.3);
}

.accordion-v2-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8) translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-v2-mascot img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

/* Active state - Expanded */
.solution-accordion-v2-card.active {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-accordion-v2-card.active .solution-accordion-v2-body {
    max-height: 400px;
}

.solution-accordion-v2-card.active .accordion-v2-body-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.solution-accordion-v2-card.active .accordion-v2-mascot {
    opacity: 1;
    transform: scale(1) translateX(0);
    transition-delay: 0.3s;
}

.solution-accordion-v2-card.active .accordion-v2-arrow {
    background: #4c63d2;
    transform: rotate(180deg);
}

.solution-accordion-v2-card.active .accordion-v2-arrow span {
    color: white;
}

/* Enhanced expanded state with background image */
.solution-accordion-v2-card.active.card-v2-blue {
    background: #d7defc;
    background-image: url('../../images/v2/card-1.webp');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

.solution-accordion-v2-card.active.card-v2-pink {
    background: #d7defc;
    background-image: url('../../images/v2/card-2.webp');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

.solution-accordion-v2-card.active.card-v2-purple {
    background: #d7defc;
    background-image: url('../../images/v2/card-3.webp');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

/* Hover effects */
.solution-accordion-v2-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.solution-accordion-v2-card:hover .card-accordion-v2-title {
    color: #3b4fd1;
}

/* Browse KOLs Section Styles - Fixed Positioning */
.browse-kols {
    padding: 80px 0px 80px 0px;
    background: #fafbfc;
    overflow: hidden;
}

.browse-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.browse-title {
    font-size: 60px;
    font-weight: 600;
    color: #323133;
    margin-bottom: 4rem;
    line-height: 70px;
}

.niche-tags-container {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.kol-username a {
    text-decoration: none;
    color: black;
}

/* Row containers */
.tag-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: block;
}

/* Base niche tag styles */
.niche-tag {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    user-select: none;
}

/* Color variations matching the reference image */
.niche-tag.green {
    margin-right: -55px;
    margin-bottom: -58px;
    background: rgba(228, 240, 201, 0.5);
    color: #8AC600;
    --base-rotation: 15deg;

}

.niche-tag.pink {
    background: rgba(250, 212, 231, 0.5);
    color: #FF44A5;
    --base-rotation: -7deg;
    margin-bottom: 45px;
}

.niche-tag.cyan {
    margin-left: -118px;
    background: rgba(200, 247, 250, 0.5);
    color: #00C3C6;
    --base-rotation: 13deg;
    margin-bottom: -50px;
}

.niche-tag.blue {
    margin-left: -15px;
    background: rgba(215, 222, 252, 0.5);
    color: #5271FF;
    --base-rotation: -10deg;
}

.niche-tag.orange {
    margin-right: -18px;
    background: rgba(250, 235, 202, 0.5);
    color: #F99019;
    --base-rotation: -3deg;
}

.niche-tag.purple {
    background: rgba(242, 232, 250, 0.5);
    color: #C06EF3;
    --base-rotation: 5deg;
    
}

.niche-tag.red {
    margin-right: -35px;
    background: rgba(250, 217, 218, 0.5);
    color: #F71213;
    transform: rotate(-3deg) scale(0.9) rotate(12deg);
    --base-rotation: -3deg;
}

.niche-tag.yellow {
    background: rgba(250, 243, 195, 0.5);
    color: #AE960B;
    transform: rotate(15deg) scale(0.9) rotate(30deg);
    --base-rotation: 15deg;
}

.niche-tag.lime {
    margin-right: -22px;
    background: rgba(236, 255, 112, 0.5);
    color: #768808;
    --base-rotation: 22deg;
}

.niche-tag.mint {
    margin-left: -40px;
    background: rgba(199, 252, 225, 0.5);
    color: #17D970;
    --base-rotation: -22deg;
}

/* Hover animations - shrink and rotate */
.niche-tag:hover {
     transform: scale(0.9);
}

/* Enhanced hover effects for each color */
.niche-tag.green:hover {
    --base-rotation: 18deg;
}

.niche-tag.pink:hover {
    --base-rotation: -4deg;
}

.niche-tag.cyan:hover {
    --base-rotation: 16deg;
}

.niche-tag.blue:hover {
    --base-rotation: -7deg;
}

.niche-tag.orange:hover {
    --base-rotation: 0deg;
}

.niche-tag.purple:hover {
    --base-rotation: 8deg;
}

.niche-tag.red:hover {
    --base-rotation: 0deg;
}

.niche-tag.yellow:hover {
    --base-rotation: 18deg;
}

.niche-tag.lime:hover {
    --base-rotation: 25deg;
}

.niche-tag.mint:hover {
    --base-rotation: -19deg;
}

/* Click animation */
.niche-tag:active {
    transform: rotate(var(--base-rotation, 0deg)) scale(0.85);
    transition: transform 0.1s ease;
}

/* Entrance animations */
.niche-tag {
    opacity: 0;
    animation: tagFadeIn 0.6s ease forwards;
}

.niche-tag:nth-child(1) { animation-delay: 0.1s; }
.niche-tag:nth-child(2) { animation-delay: 0.2s; }
.niche-tag:nth-child(3) { animation-delay: 0.3s; }
.niche-tag:nth-child(4) { animation-delay: 0.4s; }
.niche-tag:nth-child(5) { animation-delay: 0.5s; }

.tag-row:nth-child(2) .niche-tag:nth-child(1) { animation-delay: 0.6s; }
.tag-row:nth-child(2) .niche-tag:nth-child(2) { animation-delay: 0.7s; }
.tag-row:nth-child(2) .niche-tag:nth-child(3) { animation-delay: 0.8s; }
.tag-row:nth-child(2) .niche-tag:nth-child(4) { animation-delay: 0.9s; }
.tag-row:nth-child(2) .niche-tag:nth-child(5) { animation-delay: 1.0s; }

@keyframes tagFadeIn {
    from {
        opacity: 0;
        transform: rotate(var(--base-rotation, 0deg)) scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: rotate(var(--base-rotation, 0deg)) scale(1) translateY(0);
    }
}

/* Floating animation */
.niche-tag {
    animation: tagFadeIn 0.6s ease forwards, tagFloat 6s ease-in-out infinite;
}

@keyframes tagFloat {
    0%, 100% {
        transform: rotate(var(--base-rotation, 0deg)) translateY(0px);
    }
    50% {
        transform: rotate(var(--base-rotation, 0deg)) translateY(-8px);
    }
}


/* FAQ Section */
.faq {
    background: #D8DFFD;
    padding: 80px 0px 80px 0px;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-title {
    font-size: 60px;
    font-weight: 600;
    color: #5271FF;
    line-height: 70px;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #bdc9fc;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #5271FF;
    font-size: 20px;
    line-height: 30px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4c63d2;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: none;
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #667085;
    line-height: 26px;
    font-size: 16px;
}

/* Footer Section */
.footer-standalone {
    background-image: url('../../images/v2/bg-1.png');
    background-position: top center;
    background-size: contain;
    background-repeat: repeat;
    padding: 80px 0px 80px 0px;
    position: relative;
}

.footer-standalone-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-standalone-content {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.footer-standalone-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-standalone-section h3 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #19191c;
    margin-bottom: 1rem;
}

.footer-standalone-section p {
    color: #667085;
    line-height: 24px;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.footer-standalone-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-standalone-section ul li {
    margin-bottom: 0.4rem;
}

.footer-standalone-section ul li a {
    color: #19191c;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
    line-height: 22px;
}

.footer-standalone-section ul li a:hover {
    color: #4c63d2;
}

.footer-standalone-section:first-child p {
    font-size: 12px;
    line-height: 22px;
}

.footer-standalone-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.footer-standalone-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-standalone-img{
    width: 300px;
    margin-left:-10px;
}

.footer-standalone-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-standalone-logo-icon {
    background: linear-gradient(135deg, #4c63d2 0%, #667eea 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-standalone-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4c63d2;
}

.footer-standalone-tiktok-logo {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-standalone-social-links {
    display: flex;
}

.footer-standalone-social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-standalone-social-link:hover {
    transform: translateY(-2px);
}

.footer-standalone-copyright {
    text-align: left;
}

.footer-standalone-copyright p {
    color: #18181B;
    font-size: 8px;
    line-height: 18px;
    margin-top: -25px;
}


/* Bounce In Up & Fade Out Animation CSS */

/* Animated Text Container */
.animated-text {
    display: inline-block;
    opacity: 0;
    color: #FFDA00;
    font-size: 60px;
    width: 600px;
    line-height: 70px;
    font-weight: 700;
    transform: translateY(50px);
    animation: bounceInUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Bounce In Up Animation - Cepat dan Dinamis */
@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    80% {
        transform: translateY(5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fade Out Animation - Cepat */
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

/* Animation States */
.animated-text.fade-out {
    animation: fadeOut 0.4s ease-in-out forwards;
}

.animated-text.bounce-in {
    animation: bounceInUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Performance optimizations */
.animated-text {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animated-text {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Hero TOS */
.hero-tos {
    background-image: url('../../images/v2/bg-1.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: top center;
    position: relative;
    padding: 150px 0px 100px 0px;
    overflow: hidden;
    margin-top: -80px;
}

.hero-gloss {
    background-image: url('../../images/v2/bg-1.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: top center;
    position: relative;
    padding: 150px 0px 100px 0px;
    overflow: hidden;
    margin-top: -80px;
}

.hero-tos-text{
    text-align: -webkit-center;
}

.hero-tos-text-jk{
    text-align: -webkit-center;
}

.hero-gloss-text{
    text-align: -webkit-center;
}

.hero-tos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-gloss-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-tos-title {
    font-size: 100px;
    font-weight: 700;
    color: #ffd600; /* kuning */
    line-height: 110px;
    text-align: -webkit-center;
}

.hero-tos-title-jk {
    font-size: 100px;
    font-weight: 400;
    color: #ffd600; /* kuning */
    line-height: 110px;
    text-align: -webkit-center;
    margin-top: 50px;
}

.hero-tos-content {
    display: grid;
    gap: 1rem;
    align-items: center;
    min-height: 400px;
}

.hero-gloss-content {
    display: grid;
    gap: 1rem;
    align-items: center;
    padding: 50px 0px 200px 0px;
}

/* Container */
.tos-section {
  padding: 1px 0px 80px 0px;
  background: #fff;
}

.tos-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Heading untuk tiap bagian */
.tos-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: #323133;
  margin: 40px 0 20px;
}

/* Body text */
.tos-text {
  font-size: 16px;
  line-height: 26px;
  color: #53535c;
  margin-bottom: 16px;
  padding-left: 20px;
}

/* Ordered list */
.tos-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.tos-list li {
  margin-bottom: 12px;
}

.tos-list li::marker {
  color: #5271FF; /* biru (atau sesuaikan dengan brand color) */
  font-weight: 700;
  margin-right: 20px;
}

/* ===== KAMUS SECTION STYLES ===== */


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


/* ===== DECORATIVE ICONS ===== */
.hero-gloss::before,
.hero-gloss::after {
    content: '';
    position: absolute;
    z-index: 5;
}

/* Icon Pencil - Top Left */
.hero-gloss-container::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 30%;
    width: 30px;
    height: 30px;
    background: url('../../images/v2/icon-pencil.png') no-repeat center;
    background-size: contain;
    z-index: 15;
    animation: float 3s ease-in-out infinite;
}

/* Icon Calendar - Top Right */
.hero-gloss-container::after {
    content: '';
    position: absolute;
    top: 150px;
    right: 15%;
    width: 35px;
    height: 35px;
    background: url('../../images/v2/icon-calendar.png') no-repeat center;
    background-size: contain;
    z-index: 15;
    animation: float 3s ease-in-out infinite 1s;
}

/* Icon Checklist - Bottom Left */
.hero-gloss-content::before {
    content: '';
    position: absolute;
    bottom: 120px;
    left: 5%;
    width: 25px;
    height: 25px;
    background: url('../../images/v2/icon-checklist.png') no-repeat center;
    background-size: contain;
    z-index: 15;
    animation: float 3s ease-in-out infinite 2s;
}

/* Icon Arrow - Bottom Right */
.hero-gloss-content::after {
    content: '';
    position: absolute;
    bottom: 100px;
    right: 7%;
    width: 25px;
    height: 25px;
    background: url('../../images/v2/icon-arrow.png') no-repeat center;
    background-size: contain;
    z-index: 15;
    animation: float 3s ease-in-out infinite 0.5s;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Shape Blue - Behind Title */
.hero-gloss-title::before {
    content: '';
    position: absolute;
    top: 115px;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 430px;
    height: 20px;
    background: url('{{asset('images/v2/icon-shape.png')}}') no-repeat center;
    background-size: contain;
    z-index: 0;
    opacity: 1;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-gloss-content {
    text-align: center;
    position: relative;
    z-index: 2;
}


.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 16px;
    
}

.hero-mou-title {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    color: #FFDA00;
    margin-bottom: 20px;
    
}

.hero-mou-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 30px;
    font-weight: 300;
}


.hero-gloss-title {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    color: #FFDA00;
    margin-bottom: 20px;
    
}

.hero-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 30px;
    font-weight: 300;
}

.hero-gloss-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 30px;
    font-weight: 300;
    padding: 0px 300px;
}


/* ===== SEARCH CONTAINER ===== */
.search-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: -265px;
    z-index: 100;
    position: relative; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 15px;
    padding: 8px;
    height: 80px;
    transition: all 0.3s ease;
    border: 1px solid #D9D9D9;
}

.search-box:focus-within {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 8px;
    background: transparent;
}


.search-input::placeholder {
    color: #a0abbd;
}

.search-btn {
    background: #5271FF;
    color: #FFDA00;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 99, 210, 0.4);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 0px 0;
    background: #fff;
}

/* ===== ALPHABET FILTER ===== */
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 80px;
}

.alphabet-btn {
    background: #F2F4FC;
    border: 1px solid #F2F4FC;
    color: #606176;
    padding: 5px 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 36px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alphabet-btn:hover {
    color: #4c63d2;
    transform: translateY(-2px);
}

.alphabet-btn.active {
    color: #4c63d2;
}

/* ===== ARTICLES CONTAINER ===== */
.articles-container {
    position: relative;
    background: #fff;
}

.sc-slide-content a, .sc-card-content a, article > a, .sc-trending-card-title a {
    text-decoration: none;
}

.alphabet-section {
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.alphabet-section.hidden {
    display: none;
}

.section-title {
    font-size: 46px;
    font-weight: 600;
    color: #323133;
    text-align: center;
    margin-bottom: 0px;
    position: relative;
}


/* ===== ARTICLES GRID ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #5271FF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.article-title {
    font-size: 24px;
    font-weight: 600;
    color: #323133;
    margin-bottom: 12px;
    line-height: 34px;
}

.article-description {
    color: #53535c;
    line-height: 24px;
    font-size: 14px;
    font-weight: 300;
}

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.no-results-content p {
    color: #64748b;
    font-size: 16px;
}

* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card {
    animation: fadeInUp 0.6s ease-out;
}

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.3s; }
.article-card:nth-child(4) { animation-delay: 0.4s; }
.article-card:nth-child(5) { animation-delay: 0.5s; }
.article-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .article-card:hover {
        transform: none !important;
    }
    
    .search-box:focus-within {
        transform: none !important;
    }
}

/* ===== FOCUS STATES ===== */
.search-input:focus {
    outline-offset: 2px;
}

.search-btn:focus,
.alphabet-btn:focus {
    outline: 2px solid #4c63d2;
    outline-offset: 2px;
}

.article-card:focus {
    outline: 2px solid #4c63d2;
    outline-offset: 2px;
}

/* ===== TOOLS SECTION ===== */
        .tools-section {
            padding: 80px 0;
            background: #f1f3f8;
            position: relative;
        }

        .tools-main-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }

        /* Left Column - Title and Navigation */
        .tools-text {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .tools-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.2;
            margin: 0;
        }

        .tools-navigation {
            display: flex;
            gap: 12px;
        }

        .nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid #e2e8f0;
            background: white;
            color: #64748b;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            border-color: #4c63d2;
            color: #4c63d2;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(76, 99, 210, 0.2);
        }

        .nav-btn.active {
            background: #4c63d2;
            border-color: #4c63d2;
            color: white;
        }

        /* Right Column - Cards */
        .tools-right-section {
            position: relative;
        }

        /* Cards Container */
        .tools-cards-container {
            overflow: hidden;
            width: 100%;
        }

        .tools-cards {
            display: flex;
            gap: 20px;
            transition: transform 0.3s ease;
            will-change: transform;
        }

        .tool-card {
            background: #4c63d2;
            border-radius: 16px;
            padding: 24px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 0 0 350px; /* Fixed width for each card */
            max-width: 350px;
        }

        .tool-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(76, 99, 210, 0.3);
        }

        .tool-content {
            flex: 1;
            z-index: 2;
            position: relative;
            max-width: 220px; /* Leave space for icon */
        }

        .tool-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .tool-description {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .tool-btn {
            background: #ffd700;
            color: #1e293b;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .tool-btn:hover {
            background: #f1c40f;
            transform: translateY(-1px);
        }

        .tool-icon {
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }

        .tool-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

/* ===== SECTION 2: TRANSFORM SECTION ===== */
.transform-section {
    padding: 80px 0px 80px 0px;
    background: #5271FF;
    position: relative;
    overflow: hidden;
}

.transform-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.transform-text {
    color: white;
}

.transform-title {
    font-size: 42px;
    font-weight: 600;
    color: #FFDA00;
    margin-bottom: 20px;
    line-height: 52px;
}

.transform-description {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 26px;
}

.transform-btn {
    background: #FFDA00;
    color: #5271FF;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transform-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.transform-visual {
    position: relative;
}

.woman-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 200px 200px 0 0;
    z-index: 1;
}

.woman-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}

.followers-icon {
    background: #e3f2fd;
}

.engagement-icon {
    background: #f3e5f5;
}

.likes-icon {
    background: #e8f5e8;
}


.engagement-badge {
    position: absolute;
    right: 20px;
    top: 50px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.engagement-rate {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
}

.engagement-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin: 4px 0;
}

.engagement-status {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.profile-tag {
    position: absolute;
    right: 80px;
    bottom: 80px;
    background: #4c63d2;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
}

/* ===== SECTION 3: KOL INSTAGRAM SECTION ===== */
.kol-section {
    padding: 80px 0;
    background: white;
}

.kol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.kol-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.kol-item:hover {
    transform: translateY(-5px);
}

.kol-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    position: relative;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.kol-avatar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
}

.kol-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kol-username {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.kol-followers {
    font-size: 0.8rem;
    color: #64748b;
}

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

.see-all-container {
    text-align: center;
}

.see-all-btn {
    background: transparent;
    color: #4c63d2;
    border: 2px solid #4c63d2;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: #4c63d2;
    color: white;
    transform: translateY(-2px);
}

/* ===== SECTION 4: GROWTH SECTION ===== */
.growth-section {
    padding: 80px 0px 80px 0px;
    background: #fff;
}

.growth-section .container {
    background: #5271FF;
    border-radius: 20px;
    padding: 0px 40px;
    position: relative;
    overflow: hidden;
}

.growth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.growth-text {
    color: white;
}

.growth-title {
    font-size: 32px;
    font-weight: 600;
    color: #FFDA00;
    margin-bottom: 20px;
    line-height: 42px;
}

.growth-description {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 26px;
}

.growth-btn {
    background: #FFDA00;
    color: #5271FF;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.growth-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.growth-visual {
    position: relative;
    height: 400px;
}

.man-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 200px 200px 0 0;
    z-index: 1;
}

.man-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}

.growth-stats {
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.growth-stat-card {
    background: white;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.growth-stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
}

.growth-stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
}

.growth-badge {
    position: absolute;
    right: 40px;
    bottom: 100px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.growth-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.growth-profile-tag {
    position: absolute;
    left: 120px;
    bottom: 80px;
    background: #4c63d2;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
}

/* ===== SECTION 5: CREATE MOU FORM ===== */
.mou-section {
    padding: 80px 0px 80px 0px;
    background: #fff;
}

.mou-title {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    text-align: left;
    margin-bottom: 40px;
    line-height: 52px;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 50px;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    background: #fff;
    color: #9ba2b0;
    border: 1px solid #9ba2b0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.step.active {
    background: #e8edfc;
    color: #5271FF;
    border: 2px solid #5271FF;
}

.step.completed {
    background: #e8edfc;
    color: #5271FF;
    border: 2px solid #5271FF;
}

.step-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector {
    width: 40px;
    height: 1px;
    background: #9ba2b0;
    margin: 0 8px;
}

.step.active + .step-connector,
.step.completed + .step-connector {
    background: #4c63d2;
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.form-step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
}

.preview-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #5271FF;
    color: #5271FF;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    transform: translateY(-1px);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4c63d2;
    box-shadow: 0 0 0 3px rgba(76, 99, 210, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

/* Radio Groups */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #64748b;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #4c63d2;
    background: #4c63d2;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Amount Input */
.amount-input {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}

.currency-select {
    border: none;
    padding: 12px 16px;
    background: #f8fafc;
    border-right: 1px solid #d1d5db;
    font-size: 0.95rem;
    min-width: 80px;
}

.amount-input input {
    border: none;
    flex: 1;
    padding: 12px 16px;
    font-size: 0.95rem;
}

.amount-input input:focus {
    outline: none;
}

.amount-input:focus-within {
    border-color: #4c63d2;
    box-shadow: 0 0 0 3px rgba(76, 99, 210, 0.1);
}

/* Payment Form Grid */
.payment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.payment-form-grid select,
.payment-form-grid input {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-previous {
    background: transparent;
    border: 2px solid #5271FF;
    color: #5271FF;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-previous:hover {
    transform: translateY(-1px);
}

.btn-continue {
    background: #5271FF;
    border: none;
    color: #FFDA00;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    transform: translateY(-1px);
}

.btn-download {
    background: #4c63d2;
    border: none;
    color: #ffd700;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #3b4db8;
    transform: translateY(-1px);
}

/* Fixed Carousel Animation Styles - NO CONFLICT VERSION */
.kol-infinite-showcase {
    padding: 80px 0px 80px 0px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.infinite-showcase-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.infinite-showcase-title {
    text-align: center;
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    color: #323133;
    margin-bottom: 60px;
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Infinite Carousel Container */
.infinite-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Infinite Carousel Row */
.infinite-carousel-track {
    display: flex;
    width: fit-content;
    gap: 30px;
    padding: 5px 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

.infinite-carousel-track[data-scroll-direction="left"] {
    animation-name: infiniteScrollLeft;
    animation-duration: 40s;
}

.infinite-carousel-track[data-scroll-direction="right"] {
    animation-name: infiniteScrollRight;
    animation-duration: 45s;
}

/* Infinite KOL Profile Cards */
.infinite-kol-card {
    flex-shrink: 0;
    width: 200px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    
}



.infinite-kol-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}




/* Keyframe Animations */
@keyframes infiniteScrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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


/* CEK ER */
.container-er {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: none;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.input-field {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.btn-cta {
    background: #ffd900;
    color: #5271FF;
    border: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 1rem 4rem;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.instagram-interface {
    padding: 20px;
    height: 100%;
}

.stats-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

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

.profile-preview {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 50%;
}

.profile-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.profile-info p {
    font-size: 0.875rem;
    color: #6b7280;
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.post-item {
    aspect-ratio: 1;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    border-radius: 8px;
}

/* Detail Section */
.detail-section {
    padding: 0px 0px 80px 0px;
    background: #fff;
}

.section-header-er {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header-er h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    color: #323133;
    margin-bottom: 1rem;
}

.section-header-er p {
    font-size: 20px;
    line-height: 30px;
    color: #667085;
    max-width: 600px;
    margin: 0 auto;
}

/* Engagement Table */
.engagement-table {
    margin-bottom: 4rem;
    overflow-x: auto;
}

.engagement-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.engagement-table th {
    background: #f5f5f5;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #e5e7eb;
}

.engagement-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}

.category {
    font-weight: 600;
    text-align: left !important;
    padding-left: 2rem !important;
}

.high-row {
    background: #e4f0c9;
}

.above-average-row {
    background: #fafbfc;
}

.average-row {
    background: #fff7ed;
}

.below-average-row {
    background: #fafbfc;
}

.low-row {
    background: #fadcdd;
}

/* Formula Section */
.formula-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.formula-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
}

.formula-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.formula-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.formula-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.formula-icon {
    font-size: 1.25rem;
}

.formula-operator {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6366f1;
}

.formula-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.formula-multiply {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.formula-divider hr {
    width: 100px;
    border: 1px solid #6366f1;
}

.formula-denominator {
    font-size: 1rem;
    color: #6b7280;
}

.formula-description h3 {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.formula-description p {
    font-size: 20px;
    color: #667085;
    margin-bottom: 2rem;
    line-height: 30px;
}

.btn-secondary {
    background: #5271ff;
    color: #FFDA00;
    border: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary-map {
    background: #5271ff;
    color: #fff;
    border: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}


/* Post Types Section */
.post-types-section {
    padding: 80px 0px 80px 0px;
    background: #e8edfc;
}

.post-types-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.post-types-text h2 {
    font-size: 52px;
    font-weight: 700;
    color: #323133;
    margin-bottom: 1.5rem;
    line-height: 62px;
}

.post-types-text p {
    font-size: 20px;
    color: #667085;
    line-height: 30px;
}

.chart-container {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.chart-container h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 200px;
    gap: 1rem;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.bar-fill {
    width: 60px;
    background: #6366f1;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0.5rem;
    position: relative;
}

.bar-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.bar-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

/* Platform Section */
.platform-section {
    padding: 80px 0;
    background: #fff;
}

.platform-section h2 {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    padding-right: 500px;
    color: #323133;
    text-align: left;
    margin-bottom: 3rem;
}

.platform-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.platform-card {
    background: #5271FF;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.platform-card.tiktok {
    background: #5271FF;
}

.platform-content h3 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.platform-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 26px;
}

.btn-platform {
    background: #FFDA00;
    color: #5271FF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}


.platform-icon {
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-icon {
    width: 60px;
    height: 60px;
    background: #ff0000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    color: #fff;
    font-size: 1.5rem;
}

.tiktok-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiktok-symbol {
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    background: #6366f1;
    border-radius: 8px;
}

.footer-brand-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.section-header-er,
.formula-card,
.chart-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.platform-card {
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.formula-card {
    transition: transform 0.3s ease;
}

.formula-card:hover {
    transform: translateY(-2px);
}

.phone-mockup {
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.02);
}


/* Mobile Bottom Navigation */
.mn-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mn-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #A3AED0;
    position: relative;
}

.mn-nav-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mn-nav-icon svg {
    font-size: 22px;
}

.mn-nav-label {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

/* Active State */
.mn-nav-item.mn-active {
    color: #5271ff;
}

.mn-nav-item.mn-active .mn-nav-icon {
    background: #e8ecff;
}

/* Tambahkan ini untuk membuat icon berwarna biru */
.mn-nav-item.mn-active .mn-nav-icon svg {
    color: #5271ff;
}

/* Hover State */
.mn-nav-item:hover {
    color: #5271ff;
}

.mn-nav-item:hover .mn-nav-icon {
    background: #f0f2ff;
}

/* Tooltip Menu */
.mn-tooltip-menu {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    width: 90%;
    max-width: 400px;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mn-tooltip-menu.mn-show {
    opacity: 1;
    visibility: visible;
    bottom: 100px;
}

/* Tooltip Caret */
.mn-tooltip-caret {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
    transition: left 0.3s ease;
}

/* Caret positions for different menu items */
.mn-tooltip-menu[data-mn-active="for-kol"] .mn-tooltip-caret {
    left: 7%;
}

.mn-tooltip-menu[data-mn-active="free-tools"] .mn-tooltip-caret {
    left: 26%;
}

.mn-tooltip-menu[data-mn-active="ranking-kol"] .mn-tooltip-caret {
    left: 48%;
}

.mn-tooltip-menu[data-mn-active="for-kol-spcl"] .mn-tooltip-caret {
    left: 72%;
}

.mn-tooltip-menu[data-mn-active="account"] .mn-tooltip-caret {
    left: 93%;
}

/* Tooltip Content */
.mn-tooltip-content {
    display: flex;
    flex-direction: column;
}

.mn-tooltip-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    text-decoration: none;
    color: #19191c;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
    border-radius: 8px;
}

.mn-tooltip-item:last-child {
    border-bottom: none;
}

.mn-tooltip-item:hover {
    background: #f8f9fa;
}

.mn-tooltip-item span:first-child {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
}

.mn-tooltip-item i {
    color: #332c5c;
    font-size: 14px;
}

/* Badges */
.mn-badge-soon {
    background: #ff4757;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 400;
    margin-left: 10px;
    margin-right: 10px;
}

.mn-badge-new {
    background: #5271ff;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 400;
    margin-left: 10px;
    margin-right: 10px;
}

.mn-badge-hot {
    background: #ff6348;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 400;
    margin-left: 10px;
    margin-right: 10px;
}

/* Overlay */
.mn-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mn-overlay.mn-show {
    opacity: 1;
    visibility: visible;
}

/* Main Section Container */
.kol-infinite-showcase-v7x2 {
    width: 100%;
    padding: 80px 0px 80px 0px;
    background: #ffffff;
    overflow: hidden;
}

/* Header Section */
.kol-showcase-header-v7x2 {
    text-align: center;
    margin-bottom: 60px;
    padding: 0px;
}

.kol-showcase-title-v7x2 {
    font-size: 60px;
    font-weight: 600;
    color: #323133;
    margin-bottom: 12px;
    line-height: 70px;
}

.kol-showcase-subtitle-v7x2 {
    font-size: 32px;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.4;
}

/* Carousel Wrapper - Full Width */
.kol-carousel-wrapper-v7x2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

/* Carousel Row */
.kol-carousel-row-v7x2 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Carousel Track */
.kol-carousel-track-v7x2 {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

/* Animation for Row 1 - Scroll to Right */
.kol-row-right-v7x2 .kol-carousel-track-v7x2 {
    animation: kol-scroll-right-v7x2 40s linear infinite;
}

/* Animation for Row 2 - Scroll to Left */
.kol-row-left-v7x2 .kol-carousel-track-v7x2 {
    animation: kol-scroll-left-v7x2 45s linear infinite;
}

/* Keyframes - Scroll Right */
@keyframes kol-scroll-right-v7x2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20%);
    }
}

/* Keyframes - Scroll Left */
@keyframes kol-scroll-left-v7x2 {
    0% {
        transform: translateX(-20%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.kol-carousel-track-v7x2:hover {
    animation-play-state: paused;
}

/* Profile Card */
.kol-profile-card-v7x2 {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    background: #ffffff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Image Wrapper */
.kol-card-image-wrapper-v7x2 {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.kol-card-image-v7x2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


/* Card Info Section - Overlay on Bottom of Image */
.kol-card-info-v7x2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(
      to top,
      rgba(0, 33, 91, 0.9) 0%,     /* biru tua pekat di bawah */
      rgba(0, 48, 135, 0.7) 50%,   /* biru agak terang di tengah */
      rgba(0, 80, 200, 0) 100%     /* transparan di atas */
    );
    z-index: 10;
    pointer-events: none;
}

.kol-username-v7x2,
.kol-followers-v7x2 {
    position: relative;
    z-index: 2;
}

.kol-username-v7x2 {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.kol-username-v7x2::after {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.kol-followers-v7x2 {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .kol-carousel-track-v7x2 {
        animation-duration: 120s !important;
    }
}

/* Performance Optimization */
.kol-carousel-track-v7x2,
.kol-card-image-v7x2 {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
} 

.blurred {
    filter: blur(8px);
    user-select: none;
}

.rating-section {
    padding-bottom: 70px;
    text-align: center;
}

    .download-guide .guide-step:nth-of-type(2) .guide-img {
        width: 250px;
    }
    .download-guide .guide-step:nth-of-type(1) .guide-img {
        width: 150px;
    }
    .download-guide .guide-step:nth-of-type(3) .guide-img {
        width: 200px;
    }


    .download-guide {
        text-align: center;
        background: #fff;
        padding: 0px 20px;
        font-family: 'Inter', Arial, sans-serif;
    line-height: 60px;
    }

    .download-guide h2 {
        font-size: 52px;
        font-weight: 700;
        margin-bottom: 0;
        color: #323133;
    }

    .download-guide h3 {
        font-size: 52px;
        font-weight: 700;
        color: #323133;
        margin-bottom: 40px;
    }

    .guide-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .guide-step {
        background: #eef2ff;
        border-radius: 20px;
        padding: 30px 20px 0px 20px;
        width: 320px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.guide-step h4 {
  color: #5171ff;              /* blue-violet heading */
  font-size: 1.9rem;           /* large title */
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.guide-step p {
  color: #838f9a;              /* soft gray paragraph */
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 300;
}

    .guide-img {
        width: 100px;
        height: auto;
        object-fit: contain;
    }

    .copy-box {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        padding: 10px;
        width: 250px;
    }

    .copy-box span {
        color: #888;
        font-size: 0.85rem;
        margin-right: 10px;
    }

    .copy-box button {
        background: #facc15;
        border: none;
        border-radius: 6px;
        padding: 6px 12px;
        cursor: pointer;
        font-weight: 600;
        color: #222;
    }

    .copy-box button:hover {
        background: #fbbf24;
    }

    .video-box {
        position: relative;
        display: inline-block;
    }

    .video-box img {
        width: 250px;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    }

    .download-icon {
        position: absolute;
        bottom: -15px;
        right: -15px;
        background: #3b82f6;
        color: white;
        font-size: 1.5rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .guide-container {
            flex-direction: column;
            align-items: center;
        }

        .guide-step {
            width: 90%;
        }
    }

    /* Main Social Tools Section - UNIQUE NAMES */
    .social-tools-showcase-section-v3 {
        width: 100%;
        padding: 80px 0px 80px 0px;
        background: #e8edfc;
        min-height: 500px;
        display: flex;
        align-items: center;
    }

    .social-tools-main-wrapper-v3 {
        display: flex;
        align-items: center;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        width: 100%;
    }

    /* Left Column - Title and Navigation - UNIQUE NAMES */
    .social-tools-left-panel-v3 {
        flex: 0 0 380px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .social-tools-main-headline-v3 {
        font-size: 52px;
        font-weight: 700;
        color: #323133;
        line-height: 62px;
        margin: 0;
    }

    .social-tools-nav-controls-v3 {
        display: flex;
        gap: 16px;
    }

    .social-tools-nav-button-v3 {
        width: 64px;
        height: 64px;
        border: none;
        border-radius: 16px;
        background: white;
        color: #6c757d;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .social-tools-nav-button-v3:hover {
        background: #667eea;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    }

    /* Right Column - Cards Container (FULL WIDTH) - UNIQUE NAMES */
    .social-tools-right-panel-v3 {
        flex: 1;
        overflow: hidden;
    }

    .social-tools-cards-viewport-v3 {
        width: 100%;
        overflow: hidden;
        border-radius: 24px;
    }

    .social-tools-cards-track-v3 {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Individual Cards - Show 1.5 cards - UNIQUE NAMES */
    .social-tools-card-item-v3 {
        flex: 0 0 calc(66.666% - 12px); /* Show 1.5 cards with gap */
        height: 350px;
        border-radius: 20px;
        padding: 45px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        margin-right: 24px;
        transition: all 0.3s ease;
    }

    .social-tools-card-item-v3:last-child {
        margin-right: 0;
    }

    /* YouTube Card - UNIQUE NAMES */
    .social-tools-youtube-card-v3 {
        background: #5271ff;
        color: white;
    }

    /* TikTok Card - UNIQUE NAMES */
    .social-tools-tiktok-card-v3 {
        background: #5271ff;
        color: white;
    }

    /* Instagram Card - UNIQUE NAMES */
    .social-tools-instagram-card-v3 {
        background: #5271ff;
        color: white;
    }

    /* Card Content - UNIQUE NAMES */
    .social-tools-card-content-v3 {
        flex: 1;
        z-index: 2;
        position: relative;
    }

    .social-tools-card-title-v3 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 42px;
    }

    .social-tools-card-description-v3 {
        font-size: 16px;
        opacity: 0.95;
        margin-bottom: 32px;
        line-height: 26px;
        max-width: 320px;
    }

    .social-tools-card-button-v3 {
        background: #ffd900;
        color: #5271FF;
        border: none;
        padding: 14px 28px;
        border-radius: 7px;
        font-weight: 600;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    }

    .social-tools-card-button-v3:hover {
        background: #ffed4e;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    }

    /* Card Icons - UNIQUE NAMES */
    .social-tools-card-icon-v3 {
        flex: 0 0 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .social-tools-icon-container-v3 {
        width: 100px;
        height: 100px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: transform 0.3s ease;
    }

    .social-tools-youtube-icon-v3 {
        background: none;
    }

    .social-tools-tiktok-icon-v3 {
        background: none;
    }

    .social-tools-instagram-icon-v3 {
        background: none;
    }

    .social-tools-card-item-v3:hover .social-tools-icon-container-v3 {
        transform: scale(1.1) rotate(5deg);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .social-tools-main-wrapper-v3 {
            gap: 40px;
            padding: 0 30px;
        }

        .social-tools-left-panel-v3 {
            flex: 0 0 350px;
        }

        .social-tools-main-headline-v3 {
            font-size: 2.8rem;
        }
    }

    @media (max-width: 992px) {
        .social-tools-showcase-section-v3 {
            padding: 50px 0;
        }

        .social-tools-main-wrapper-v3 {
            flex-direction: column;
            gap: 50px;
            padding: 0 20px;
        }

        .social-tools-left-panel-v3 {
            flex: none;
            width: 100%;
            text-align: center;
            align-items: center;
        }

        .social-tools-main-headline-v3 {
            font-size: 2.4rem;
            text-align: center;
        }

        .social-tools-right-panel-v3 {
            width: 100%;
        }

        .social-tools-card-item-v3 {
            flex: 0 0 100%; /* Show 1 card on mobile */
            margin-right: 0;
            height: 280px;
        }
    }

    @media (max-width: 768px) {
        .social-tools-showcase-section-v3 {
            padding: 40px 0;
        }

        .social-tools-main-headline-v3 {
            font-size: 2rem;
        }

        .social-tools-nav-button-v3 {
            width: 56px;
            height: 56px;
        }

        .social-tools-card-item-v3 {
            height: 415px;
            padding: 30px;
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        .social-tools-card-content-v3 {
            flex: none;
        }

        .social-tools-card-title-v3 {
            font-size: 24px;
            line-height: 34px;
            margin-bottom: 16px;
        }

        .social-tools-card-description-v3 {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 24px;
            max-width: none;
        }

        .social-tools-card-icon-v3 {
            flex: none;
        }

        .social-tools-icon-container-v3 {
            width: 80px;
            height: 80px;
        }

    }

    /* Demo Footer */
    .demo-footer {
        background: white;
        padding: 30px 20px;
        text-align: center;
        border-top: 1px solid #e9ecef;
    }

    .demo-footer h3 {
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .demo-footer p {
        color: #6c757d;
        margin-bottom: 10px;
    }

    .demo-controls {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .demo-control-btn {
        background: #667eea;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: background 0.3s ease;
    }

    .demo-control-btn:hover {
        background: #5a6fd8;
    }

    /* Current card indicator */
    .demo-current-info {
        margin-top: 15px;
        padding: 10px 20px;
        background: #f8f9fa;
        border-radius: 8px;
        display: inline-block;
    }
    .hero-tools-container{
            max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    }
.hero-tools-container::before {
    content: '';
    position: absolute;
    top: 150px;

    background-size: contain;
    z-index: 15;
    animation: float 3s 
ease-in-out infinite;
}
.hero-tools-content{
        text-align: center;
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1rem;
    align-items: center;
    padding: 50px 0px 200px 0px;
}
.hero-tools-container::after {
    content: '';
    position: absolute;

    background-size: contain;
    z-index: 15;
    animation: float 3s 
ease-in-out infinite 1s;
}

.hero-tools-container div#loading-here:has(.loading-img-kol) {
  background-color: white;
  width: 90%;
  padding-bottom: 50px;
  border-radius: 20px;
  margin: 0 auto !important;
}
#result-here:has(p){
    background-color: white;
    width: 70%;
    padding-bottom: 50px;
    border-radius: 20px;
    margin: 0 auto !important;
    line-height: 1.8;
    padding-top: 25px;
    text-align: center;
}

    #videoPopup .dropdown-menu,
#videoPopup .dropdown-menu li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

#videoPopup .dropdown-menu li::marker {
  display: none;
  content: none;
}
    .btn-contain {
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
img.inline-avatar {
    width: 20px;
}

/* === BUTTON: PRIMARY === */
.btn-contain .btn-primary.growth-btn {
  background-color: #5371ff; /* biru utama */
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
  border: none;
}

.btn-contain .btn-primary.growth-btn:hover {
  background-color: #4338ca;
}

/* === DROPDOWN WRAPPER === */
.btn-contain .dropdown {
  width: auto !important;
  position: relative;
}

/* === BUTTON: OUTLINE === */
.btn-contain .btn.btn-secondary.dropdown-toggle {
  background: #fff;
  border: 2px solid #5371ff;
  color: #5371ff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-contain .btn.btn-secondary.dropdown-toggle:hover {
  background-color: #f8f8ff;
}

/* === ICON INSIDE BUTTON === */
.btn-contain .btn.btn-secondary.dropdown-toggle i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.btn-contain .btn.btn-secondary.dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* === DROPDOWN MENU === */
.btn-contain .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: none;
  margin-top: 8px;
  padding: 6px 0;
  min-width: 260px;
}

.btn-contain .dropdown-item {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  color: #333;
  transition: 0.2s ease;
}

.btn-contain .dropdown-item:hover {
  background-color: #eef2ff;
  color: #5371ff;
  font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .btn-contain {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-contain .btn-primary.growth-btn,
  .btn-contain .btn.btn-secondary.dropdown-toggle {
    width: 100%;
    text-align: center;
  }
}


.ig-container::after {
    top: 350px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: url(../../images/v2/IG/1.png) no-repeat center;
      background-size: 80%;
}

.ig-container::before{
left: -70px;
    width: 240px;
    height: 300px;
    background: url(../../images/v2/IG/2.png) no-repeat center;
    background-size: 180%;
}

.tt-container::after {
    top: 350px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: url(../../images/v2/TT/1.png) no-repeat center;
}

.tt-container::before{
    left: -60px;
    width: 240px;
    height: 300px;
    background: url(../../images/v2/TT/2.png) no-repeat center;
}

.yt-container::after {
    top: 350px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: url(../../images/v2/YT/1.png) no-repeat center;
    background-size: 80%;
}

.yt-container::before{
    left: -190px;
    width: 395px;
    height: 330px;
    background: url(../../images/v2/YT/2.png) no-repeat center;
    background-size: 80%;
}

.download-guide + .social-tools-showcase-section-v3 {
  /* only selects the section right after .download-guide */
  margin-top: 80px;
}


.rating-title {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 700;
}

.rating-desc {
    font-size: 12px;
    line-height: 22px;
    color: #fff;
    font-weight: 400;
}

.rating {
  display: inline-flex;
  flex-direction: row-reverse; /* balik urutan agar hover-nya benar */
}

.rating i {
  cursor: pointer;
  color: #fff; /* warna default biru */
  transition: color 0.2s ease;
  padding: 5px;
}

/* Saat hover */
.rating i:hover,
.rating i:hover ~ i {
  color: #FFDA00; /* warna kuning saat hover */
}

/* Saat aktif */
.rating i.active,
.rating i.active ~ i {
  color: #FFDA00;
}

.rating-box {
  background: #2B4AD8;
  padding: 5px;
  width: 240px;
  margin: 5px auto; /* ini yang membuatnya ke tengah */
  text-align: center; /* agar teks di dalamnya juga rata tengah */
  border-radius: 50px;
  color: #fff;
  font-size: 10px;
  line-height: 20px;
  font-weight: 400;
}

.rating-box-yl {
    color: #FFDA00;
}

.toast-close {
    color: rgb(0 0 0) ! Important;
}

.toastify-left {
    left: -30px !important;
    max-width: calc(90% - 20px) !important;
    bottom: -30px !important;
}
.toastify.on.toastify-left.toastify-bottom {
    margin-bottom: 70px;
    z-index: 10;
}
.logo a img {
  display: block;
}

.loading-img-kol {
    display: block;
    margin: 50px auto 0 auto;
    width: 100px;
    height: auto;
}

/*DOWNLOADER*/

/* download-video */
img#popupCover {
   width: 100% !important;
    border-radius: 10px;
}
a.btn-instagram.growth-btn.btn-primary {
    width: 100%;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}
.download-video-popup .video-popup-detail .btn-contain form {
    flex-wrap: nowrap !important;
}

div#result-here {
    top: -300px;
    position: relative;
}

.video-popup-detail .popup-detail .small-title h2 {
    display: block;
    font-size: 24px;
    height: auto;
    overflow: hidden;
}

.hero-wrap.download-video{
    width: 100%;
    height: 100%;
}

.hero-wrap.download-video .banner-main-details{
    padding: 240px 0 100px;
}

.download-contain .form-group .form-control{
    color: #A0ABBB;
    font-weight: 400;
    font-size: 14px;
    line-height: 193%;
    height: 100%;
    padding: 15px 131px 15px 24px;
    border-radius: 6.364px;
    border: 1px solid #D9D9D9;
}

.download-video-popup{
    display: flex;
    flex-wrap: wrap;
}

.download-video-popup .video-popup-detail{
    margin-left: 16px;
    margin-top: 8px;
}

.download-video-popup .video-popup-detail .small-title{
    font-weight: 500;
    font-size: 24px;
    line-height: 104.167%;
    color: #000;
    margin-bottom: 12px;
}

.download-video-popup .video-popup-detail .small-title *{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.download-video-popup .video-popup-detail{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.download-video-popup .video-popup-detail .btn-contain form {
    display: flex;
    flex-wrap: wrap;
}

.download-video-popup .video-popup-detail .time-details{
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: rgba(0, 0, 0, 0.50);
}

.download-video-popup .video-popup-detail .btn-contain form{
    display: flex;
    flex-wrap: wrap;
}

.banner-main-details .download-video-popup>*{
    width: 56%;
}

.banner-main-details .download-video-popup>*:first-child{
    width: 42%;
}

.video-popup-detail .btn-primary{
    border-radius: 8px 0px 0px 8px;
}

.video-popup-detail .dropdown .btn{
    border-radius: 0px 8px 8px 0px;
    border: 1px solid #5271FF;
    background: transparent;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 19px 50px 19px 28px;
    -webkit-border-radius: 0px 8px 8px 0px;
    -moz-border-radius: 0px 8px 8px 0px;
    -ms-border-radius: 0px 8px 8px 0px;
    -o-border-radius: 0px 8px 8px 0px;
}

.video-popup-detail .dropdown .dropdown-menu{
    right: 0 !important;
    border-top: 0px !important;
    border-radius: 0 0 8px 8px;
    border-color: #5271FF;
    transform: translate3d(0px, 62px, 0px) !important;
    -webkit-transform: translate3d(0px, 62px, 0px) !important;
    -moz-transform: translate3d(0px, 62px, 0px) !important;
    -ms-transform: translate3d(0px, 62px, 0px) !important;
    -o-transform: translate3d(0px, 62px, 0px) !important;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    -ms-border-radius: 0 0 8px 8px;
    -o-border-radius: 0 0 8px 8px;
}

.video-popup-detail .dropdown .dropdown-menu .dropdown-item{
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    padding: 7px 74px 9px 17px;
    border-radius: 21.5px;
    transition: 0.2s ease-in all;
    color: #5271FF;
    display: flex;
    position: relative;
    align-items: center;
    -webkit-transition: 0.2s ease-in all;
    -moz-transition: 0.2s ease-in all;
    -ms-transition: 0.2s ease-in all;
    -o-transition: 0.2s ease-in all;
}

.video-popup-detail .dropdown .btn:hover{
    color: #5271FF;
}

.video-popup-detail .dropdown .btn:hover .dropdown-menu{
    display: block !important;
}

.video-popup-detail .dropdown .dropdown-menu .dropdown-item:hover{
    background: rgba(82, 113, 255, 0.20);
}

.video-popup-detail .dropdown .dropdown-menu .dropdown-item span{
    padding: 3px 6px;
    border-radius: 12.929px;
    background: #FFDA00;
    color: #5271FF;
    font-size: 12px;
    line-height: 180%;
    font-weight: 400;
    position: absolute;
    right: 30px;
    text-transform: uppercase;
}

.video-popup-detail .dropdown .dropdown-menu li{
    margin: 0 15px 8px 10px !important;
}

.video-popup-detail .dropdown .btn:focus{
    color: #5271FF;
}

.video-popup-detail .dropdown .btn i{
    position: absolute;
    right: 19px;
}

.download-video-popup .video-popup-detail .btn-contain form>*{
    flex: 0 0 auto;
}

.download-video-popup .video-popup-detail .btn-contain form .dropdown{
    flex: 1 1 auto;
}

.dropdown-toggle::after{
    border: none;
    display: none;
}

.download-video-popup .video-popup-detail .time-details *{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.download-contain{
    max-width: 1028px;
    margin: 0 auto;
}

.banner-main-details .download-video-popup{
    max-width: 1028px;
    margin-right: auto;
    margin-left: auto;
    padding: 26px 31px 26px 26px;
    border-radius: 12px;
    margin-bottom: -180px;
    background: #FFF;
}

.download-contain .form-group{
    height: inherit;
    margin-right: 12px;
    display: flex;
    align-items: center;
    flex: 1 1 0;
}

.download-contain .btn-primary{
    padding: 26px 36px;
}

.download-contain .form-group .btn-sky {
    padding: 15px 25px 15px 46px;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    position: absolute;
    right: 9px;
    margin-top: 10px;
}

.download-contain .form-group .btn-sky img{
    position: absolute;
    left: 23px;
}

.download-contain .form-group .btn-sky svg{
    position: absolute;
    left: 23px;
}

.download-contain .form-group .btn-sky svg path{
    stroke: #5271FF;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
}

.download-contain .form-group .btn-sky:hover svg path{
    stroke: #fff
}

.download-contain form{
    display: flex;
    margin-bottom: 32px;
}

.hero-wrap.download-video .banner-main-details .banner-detail{
    text-align: center;
    max-width: 812px;
    margin: 0 auto;
}

.banner-detail .page-title{
    font-weight: 700;
    font-size: 60px;
    line-height: 116%;
    color: #5271FF;
    margin-bottom: 13px;
}

.btn.btn-secondary.dropdown-toggle.show i{
    opacity: 0;
}

.banner-detail .page-title *{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin-bottom: 0;
}

.banner-detail .detail{
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #667085;
    margin-bottom: 33px ;
}

.kenapa-download-wrap{
    padding: 116px 0 30px;
}

.kenapa-download-block .kenapa-download-detail{
    max-width: 490px;
    margin-right: auto;
}

.kenapa-download-detail .detail {
    margin-bottom: 27px;
}

.kenapa-download-img{
    position: relative;
}

.kenapa-download-img img{
    position: relative;
    z-index: 1;
}


.kenapa-download-block  .btn-contain .btn{display: inline-block;}

.kenapa-download-img::after{
    content: "";
    display: inline-block;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 84px;
    transform: translateY(-50%);
    background: rgba(82, 113, 255, 0.12);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.kenapa-download-detail .section-title{
    font-weight: 600;
    font-size: 50px;
    line-height: 120%;
    color: #323133;
    margin-bottom: 28px;
}

.kenapa-download-detail .section-title *{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.kenapa-download-detail .detail{
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    color: #667085;
}

.kenapa-download-detail .detail *{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.hero-wrap.download-video .banner-img *{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cara-download-video-wrap{
    padding: 38px 0 119px;
}

.conversions-wrp.download-video-page{
    padding: 0 0 100px;
}

.conversions-wrp.download-video-page .conversions-img .insta-btn i{
    margin-top: 2px;
}

.video-popup-detail .dropdown .btn:active{
    color: #5271FF;
}

.video-popup-detail .dropdown .btn:focus{
    color: #5271FF;
}

.video-popup-detail .dropdown .btn.show{
    color: #5271FF;
}

.video-popup-detail .dropdown .dropdown-menu .dropdown-item:active{
    background: rgba(82, 113, 255, 0.20);
}

.conversions-wrp.download-video-page .conversions-img .insta-btn{
    text-transform: lowercase;
    align-items: center;
}

.cara-download-video-wrap .section-title{
    font-weight: 600;
    font-size: 50px;
    line-height: 120%;
    color: #323133;
}

.cara-download-video-wrap .section-title *{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.download-video-detail{
    max-width: 543px;
    margin: 0 auto 43px auto;
}

.video-details-block{
    border-radius: 12px;
    background: #FFF;
    padding: 80px 30px 68px 30px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    box-shadow: 8px 10px 20px 1px rgba(152, 152, 152, 0.16);
    margin-bottom: 24px;
    height: calc(100% - 24px);
}

.video-details-block .video-details-icon{
    border-radius: 28.328px;
    background: rgb(82 113 255 / 20%);
    text-align: center;
    margin: 0 auto;
    width: 91px;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 28.328px;
    -moz-border-radius: 28.328px;
    -ms-border-radius: 28.328px;
    -o-border-radius: 28.328px;
}

.video-details{
    padding-top: 32px;
}

.video-details .cart-title{
    font-weight: 500;
    font-size: 26px;
    line-height: 115%;
    color: #5271FF;
    margin-bottom: 15px;
}

.video-details .cart-title *{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin-bottom: 15px;
}

.video-details .details{
    font-weight: 400;
    color: #7C8893;
    font-size: 14px;
    line-height: 171%;
}

.video-details .details *{
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.video-details .details *:last-child{
    margin-bottom: 0;
}

.faq-wrp.download-video-page{
    padding: 155px 0 158px;
}

.faq-wrp.download-video-page .accordion-item{
    padding: 28.5px 0;
}

.coba-gratis-section{
    padding: 81px 0 115px;
    background: #5271FF;
}

.coba-gratis-section .platforms-wrp .platform-box{
    height: 100%;
}

.coba-gratis-section .coba-gratis-wrap{
    display: flex;
    align-items: center;
    padding-left: 137px;
}

.coba-details-block .section-title{
    font-weight: 600;
    font-size: 50px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 71px;
}

.coba-details-block .btn-contain{
    display: flex;
}

.coba-details-block .btn-contain .btn-slick{
    border-radius: 15.6px;
    border: 2px solid #E8E8E8;
    background: #fff;
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    transition: 0.4s ease-in all;
    opacity: 1;
    justify-content: center;
    -webkit-transition: 0.4s ease-in all;
    -moz-transition: 0.4s ease-in all;
    -ms-transition: 0.4s ease-in all;
    -o-transition: 0.4s ease-in all;
}

.coba-details-block .btn-contain .btn-slick:hover{
    opacity: 0.4;
}

.coba-details-block .btn-contain .btn-slick:not(:last-child){
    margin-right: 15px;
}

.coba-gratis-wrap .coba-slick-block{
    max-width: 837px;
    margin-left: auto;
}

.coba-gratis-wrap .coba-slick-block .coba-slick-item{
    padding: 0 14px;
}

.coba-gratis-wrap .coba-slick-block .slick-list.draggable{
    padding: 0 231px 0 0;
    margin: 0 -14px;
}

#result-here p.error {
    text-align: center;
    margin: 10px auto; 
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#result-here p.error::before {
  content: "!";
  display: block;
  font-size: 100px;
  font-weight: 900;
  color: #9ca3af; /* abu-abu muda */
  margin-bottom: 10px;
  line-height: 1;
}

#result-here p.error strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 8px;
}

#result-here p.error span {
  font-size: 20px;
  color: #6b7280;
}

.coba-details-block .section-title *{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin-bottom: 0;
}
/*END DOWNLOADER*/

.extension {
    display: inline-flex; /* agar panjang mengikuti konten */
    align-items: center;  /* agar gambar & teks rata tengah vertikal */
    gap: 10px; /* jarak antara logo dan teks */
    background: rgba(43, 75, 217, 0.6);
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
    border-radius: 8px;
}

.extension img {
    width: 25px;
    height: 25px;
}

.extension-downloader {
    display: flex; /* aktifkan flexbox */
    align-items: center; /* rata tengah vertikal */
    justify-content: center; /* rata tengah horizontal */
    background: rgba(43, 75, 217, 0.8);
    padding: 5px 16px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
    border-radius: 8px;
    gap: 8px; /* jarak antara icon dan teks */
    width: 100%; /* full lebar parent container */
    box-sizing: border-box; /* agar padding tidak meluber */
}

.extension-downloader img {
    width: 25px;
    height: 25px;
    display: block; /* hilangkan whitespace ekstra dari inline img */
}


/* Main Section Container */
.kol-carousel-section {
    width: 100%;
    padding: 60px 0px;
    background-color: #ffffff;
}

.kol-carousel-container {
    margin: 0 auto;
}

/* Title Styles */
.kol-carousel-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    color: #323133;
    text-align: center;
    margin-bottom: 50px;
}

/* Carousel Row Container */
.kol-carousel-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

/* Carousel Track */
.kol-carousel-track {
    display: flex;
    gap: 20px;
    width: fit-content;
}

/* Right Scrolling Animation */
.kol-carousel-track-right {
    animation: kol-scroll-right 30s linear infinite;
}

@keyframes kol-scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Left Scrolling Animation */
.kol-carousel-track-left {
    animation: kol-scroll-left 30s linear infinite;
}

@keyframes kol-scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}


/* Carousel Item */
.kol-carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f7fafc;
    padding: 15px 25px;
    border-radius: 50px;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.kol-carousel-item:hover {
    transform: translateY(-5px);
}

/* Profile Avatar */
.kol-profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e8f0;
}

.kol-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kol-avatar-icon {
    font-size: 28px;
}

.kol-avatar-text {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
}

/* Profile Info */
.kol-profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kol-username {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.kol-followers {
    font-size: 0.875rem;
    color: #718096;
}



/* BLOG */
.sc-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
  }


  .sc-container-hero {
      max-width: 1200px;
      padding: 0px 10px;
      position: relative;
      z-index: 1;
      margin-bottom: -100px;
  }

  /* Common Styles */
  .sc-icon {
      width: 15px;
      height: 15px;
  }


  .sc-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: #6b7280;
  }

  .sc-meta-item img {
      border-radius: 50%;
      width: 20px;
      height: 20px;
  }


.sc-card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 12px;
    font-weight: 400;
    border-radius: 9999px;
    text-transform: capitalize;
    width: fit-content;

    /* Warna default */
    background-color: #c7fce1;
    color: #17D970;
}

.sc-card-badge a {
    color: inherit !important;
    text-decoration: none;
}

.sc-card-badge.sc-beauty {
    background-color: #ffdbd9 !important;
    color: #A24242 !important;
}

.sc-card-badge.sc-technology {
    background-color: #e6f5ff !important;
    color: #5271FF !important;
}

.sc-card-badge.sc-lifestyle {
    background-color: #ffd9fb !important;
    color: #FF44EC !important;
}

.sc-card-badge.sc-business {
    background-color: #ecff70 !important;
    color: #5B8104 !important;
}

  .sc-section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
  }

  .sc-section-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .sc-section-title h2 {
      font-size: 42px;
      line-height: 52px;
      font-weight: 600;
      color: #323133;
  }

  .sc-section-icon {
      width: 32px;
      height: 32px;
  }

  .sc-nav-arrows {
      display: flex;
      gap: 0.5rem;
  }

  .sc-nav-arrow {
      width: 40px;
      height: 40px;
      border: 1px solid #e5e7eb;
      border-radius: 20%;
      background: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
  }

  .sc-nav-arrow:hover {
      background: #f3f4f6;
      border-color: #d1d5db;
  }

  .sc-nav-arrow svg {
      width: 20px;
      height: 20px;
  }

  /* Section 1: Slider Banner */
  .sc-slider-section {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 3rem 0;
      position: relative;
      overflow: hidden;
  }

  .sc-decorative-shape {
      position: absolute;
      width: 300px;
      height: 300px;
      opacity: 0.1;
  }

  .sc-decorative-shape.sc-left {
      left: -100px;
      top: 50%;
      transform: translateY(-50%);
  }

  .sc-decorative-shape.sc-right {
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
  }

  .sc-slider-wrapper {
      position: relative;
  }

  .sc-slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
  }

  .sc-slide {
      display: none;
      width: 100%;
  }

  .sc-slide.sc-active {
      display: block;
      animation: scFadeIn 0.5s;
  }

  @keyframes scFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
  }

  .sc-slide-card {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      height: 400px;
  }



  .sc-slide-card-gmbr {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .sc-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(82, 113, 255, 0.9) 0%,
        rgba(82, 113, 255, 0.7) 40%,
        rgba(82, 113, 255, 0.4) 70%,
        rgba(82, 113, 255, 0) 100%
      );
  }

  .sc-slide-content {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      right: 50%;
      color: white;
      z-index: 10;
  }

  .sc-slide-content .sc-badge {
      background-color: #fbbf24;
      color: #78350f;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      font-size: 12px;
      font-weight: 400;
      display: inline-block;
      margin-bottom: 1rem;
  }

  .sc-slide-title {
      font-size: 27px;
      font-weight: 600;
      line-height: 37px;
      margin-bottom: 1rem;
      color: #FFDA00;
  }

  .sc-slide-meta {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
  }

  .sc-slide-meta .sc-meta-item {
      color: white;
  }

  .sc-slider-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
  }

  .sc-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid #5271FF;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s;
  }

  .sc-dot.sc-active {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      border: 2px solid #5271FF;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s;
  }

  /* Section 2: TikTok Carousel */
  .sc-carousel-section {
      padding: 80px 65px 40px 65px;
      background: white;
  }

  .sc-carousel-section-blogdetail {
      padding: 80px 0px 80px 20px;
      background: #f2f4fc;
  }

  .sc-carousel-container {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 1rem;
      scrollbar-width: none;
  }

  .sc-carousel-container-blogdetail {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 1rem;
      scrollbar-width: none;
  }

  .sc-carousel-container::-webkit-scrollbar {
      display: none;
  }

  .sc-carousel-card {
      flex: 0 0 340px;
      background: white;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: all 0.3s;
  }

  .sc-carousel-card-blogdetail {
      flex: 0 0 360px;
      background: none;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: all 0.3s;
  }
  .sc-carousel-card:hover {
      transform: translateY(-4px);
  }
  .sc-card-image {
      width: 100%;
      height: 180px;
      overflow: hidden;
  }
  .sc-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
      border-radius: 10px;
  }
  .sc-card-content {
      padding: 20px 0px;
  }

  .sc-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin: 0.75rem 0;
    line-height: 1.5; /* ≈ 30px jika font-size 20px (20 × 1.5 = 30) */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Batasi ke 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-card-title-blogdetail {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin: 0.75rem 0;
    line-height: 36px; /* ≈ 30px jika font-size 20px (20 × 1.5 = 30) */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Batasi ke 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-card-title-blogdetail a {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin: 0.75rem 0;
    line-height: 36px; /* ≈ 30px jika font-size 20px (20 × 1.5 = 30) */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Batasi ke 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

  .sc-card-meta {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }
  .sc-card-meta-row {
      display: flex;
      justify-content: left;
      align-items: center;
      gap: 10px;
      font-size: 0.875rem;
      color: #6b7280;
  }
  .sc-see-more-mobile {
      display: none;
      text-align: center;
      margin-top: 0px;
  }
  .sc-btn-see-more {
      padding: 0.75rem 2rem;
      background: #fff;
      color: #5271FF;
      border: 2px solid #5271FF;
      font-family: 'Inter';
      border-radius: 0.5rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
  }
  .sc-btn-see-more:hover {
      transform: translateY(-1px);
  }

  /* Section 3: Instagram Layout */
  .sc-instagram-section {
      padding: 40px 65px;
      background: #f9fafb;
  }

  .sc-instagram-layout {
      display: grid;
      gap: 2rem;
  }

  .sc-featured-article {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      background: none;
      border-radius: 1rem;
      overflow: hidden;
  }

  .sc-featured-image {
      height: 100%;
      min-height: 300px;
  }

  .sc-featured-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .sc-featured-content {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .sc-featured-content a {
      text-decoration: none;
  }

  .sc-featured-title {
      font-size: 28px;
      font-weight: 600;
      color: #222;
      margin: 0;
      line-height: 38px;
      text-decoration: none;
  }

  .sc-featured-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1rem 0;
  }

  .sc-featured-excerpt {
      color: #555555;
      line-height: 26px;
      font-size: 16px;
      margin: 0;
  }

  .sc-read-more {
      color: #5271FF;
      font-weight: 400;
      text-decoration: underline;
      display: inline-block;
      margin-top: 15px;
  }

  .sc-read-more:hover {
      text-decoration: underline;
  }

  .sc-small-cards-grid {
      display: flex;
      grid-template-columns: repeat(3, 1fr);
      gap: 0px;
  }

  .sc-small-cards-grid a {
      text-decoration: none;
  }

  .sc-small-card {
      background: none;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: all 0.3s;
      display: flex;
  }

  .sc-small-card:hover {
      transform: translateY(-4px);
  }

  .sc-small-card-image {
      width: 150px;
      height: 140px;
      overflow: hidden;
  }

  .sc-small-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
      border-radius: 10px;
  }

  .sc-small-card-content {
      padding: 1rem;
  }

  .sc-small-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0.75rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

  /* Section 4: YouTube Layout */
  .sc-youtube-section {
      padding: 40px 65px;
      background: white;
  }

  .sc-youtube-layout {
      display: grid;
      grid-template-columns: 1fr 350px;
      gap: 2rem;
  }

  .sc-youtube-main {
      min-width: 0;
  }

  .sc-youtube-articles {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .sc-youtube-article {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 1.5rem;
      background: white;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: all 0.3s;
      align-items: center;
  }

  .sc-youtube-article:hover {
      transform: translateY(-4px);
  }

  .sc-youtube-article-image {
      width: 330px;
        height: 230px;
        overflow: hidden;
  }

  .sc-youtube-article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
      border-radius: 10px;
  }

  .sc-youtube-article-content {
      padding: 5px 5px 5px 130px;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .sc-youtube-article-content a {
      text-decoration: none;
  }

  .sc-youtube-article-title {
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    margin-top: 10px;
    line-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

  .sc-youtube-article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 0.75rem 0;
  }

  .sc-youtube-article-excerpt {
      color: #555555;
      font-size: 16px;
      line-height: 26px;
      margin-top: 0px;
  }

  .sc-youtube-sidebar {
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }

  .sc-sidebar-widget {
      background: white;
      border-radius: 0.75rem;
      padding: 1.5rem;
  }

  .sc-widget-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 1rem;
  }

  .sc-categories-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
  }

  .sc-category-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #fff;
      padding: 0.75rem;
      border-radius: 7px;
      text-decoration: none;
      color: #374151;
      transition: all 0.2s;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .sc-category-item:hover {
      background: #f3f4f6;
  }

  .sc-category-number {
      font-weight: 700;
      color: #5271FF;
  }

  .sc-category-name {
      color: #5271FF;
      font-weight: 600;
  }

  .sc-tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
  }

  .sc-tag-button {
      padding: 0.5rem 1rem;
      border: 1px solid #e5e7eb;
      border-radius: 9999px;
      background: white;
      color: #6b7280;
      font-size: 0.875rem;
      cursor: pointer;
      transition: all 0.2s;
  }

  .sc-tag-button:hover {
      background: #5271FF;
      color: #FFDA00;
      border-color: #667eea;
  }

  .sc-tag-button.sc-active {
      background: #5271FF;
      color: #FFDA00;
      border-color: #667eea;
  }

  /* Section 5: Trending Posted */
  .sc-trending-section {
      padding: 40px 65px;
      background: #f9fafb;
  }

  .sc-trending-section-blog {
      padding: 80px 0px 80px 0px;
      background: #f9fafb;
  }

  .sc-section-heading {
      font-size: 1.875rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 2rem;
  }

  .sc-trending-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
  }

  .sc-trending-grid a {
    text-decoration: none;
  }

  .sc-trending-card {
      background: none;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: all 0.3s;
  }

  .sc-trending-card:hover {
      transform: translateY(-4px);
  }

  .sc-trending-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
  }

  .sc-trending-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
      border-radius: 10px;
  }


  .sc-trending-card-content {
      padding: 20px 0px;
  }

  .sc-trending-card-title a {
      text-decoration: none;
      color: #111827;
      font-size: 26px;      /* = 18px */
      font-weight: 600;
  }

  .sc-trending-card-title {
    font-size: 26px;      /* = 18px */
    font-weight: 600;
    color: #111827;
    margin: 0.75rem 0;
    line-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

  .sc-trending-card-meta {
      display: flex;
      flex-direction: row;
      gap: 20px;
      margin-top: 0.75rem;
  }


/* ===== BLOG DETAIL ===== */
.mns-article {
    background-color: #f2f4fc;
    margin: 0;
    padding: 0;
    margin-top: -85px;
}

.mns-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 80px 20px;
}

.mns-article-header {
    padding: 30px 0 20px;
}

.mns-article-breadcrumb {
  font-size: 14px;
  color: #777777;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.mns-article-breadcrumb a {
  text-decoration: none;
  color: #777777;
  font-weight: 400;
  transition: color 0.3s;
}

.mns-article-breadcrumb a:hover {
  color: #5271FF;
}

.mns-article-breadcrumb .separator {
  color: #bbb;
  font-size: 14px;
}

.mns-article-breadcrumb a.active {
  color: #5271FF;
  font-weight: 700;
}

.mns-article-category {
    font-size: 14px;
    font-weight: 400;
    color: #5271FF;
    padding: 8px 15px;
    border-radius: 50px;
    background-color: #e6f5ff;
    width: fit-content;
}

.mns-article-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    margin: 30px 0px 30px 0px;
    color: #171929;
}

.mns-article-meta {
    font-size: 14px;
    color: #777;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 15px; /* Jarak antar item (termasuk separator) */
    margin-bottom: 30px;
}

/* Item meta (ikon + teks) */
.mns-article-meta .mns-meta-item {
    display: flex;
    align-items: center;
    gap: 8px; /* Jarak antara ikon dan teks */
    white-space: nowrap; /* Agar tidak terpotong atau wrap */
}

/* Ikon SVG */
.mns-article-meta .sc-icon-detail {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    stroke: #555;
    flex-shrink: 0; /* Agar ikon tidak menyusut */
}

/* Pemisah */
.mns-article-meta .mns-meta-separator {
    color: #ccc; /* Warna abu-abu muda */
    font-weight: 500;
    padding: 0 6px; /* Memberi ruang di sekitar | */
}

.mns-article-hero-image {
    margin-bottom: 40px;
}

.mns-article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px; /* Subtle rounding */
}

/* Main Content Layout (Mobile-first: single column) */
.mns-article-content-wrapper {
    display: flex;
    padding: 40px 0; /* Remove horizontal padding, keep vertical */
    gap: 30px; /* Add space between the two cards */
    align-items: flex-start; /* Align items to the top */
}

.mns-article-main-content {
    /* In mobile view, this will be full width */
    padding-bottom: 20px;
    /* New: Card styling for main content on mobile */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px; /* Separate from hero image on mobile */
}

.mns-article-on-page-nav {
    display: block; /* Show on larger screens */
    flex: 0 0 295px; /* Fixed width for the sidebar */
    /* Card styling is already applied in the mobile section, just adjust layout */
    margin-bottom: 20px; /* Remove margin-right from previous layout */
    background-color: #fff;
    border-radius: 10px;
    border-right: none; /* Remove border-right */
    padding: 30px; /* Adjust padding for desktop card */
    /* Sticky positioning for desktop TOC */
    top: 130px;
    position: sticky;
}

.mns-article-main-content {
    flex-grow: 1;
    padding-bottom: 0;
    margin-top: 0; /* Remove mobile margin-top */
    padding: 40px; /* Adjust padding for desktop card */
}

.mns-article-content-body img {
    width: 100%;
    height: auto;
    display: block; /* opsional supaya tidak ada jarak bawah */
}

.mns-article-on-page-nav-title {
    font-size: 12px;
    font-weight: 500;
    color: #5271FF;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.mns-article-on-page-nav ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    color: #171929;
    margin-top: 15px;
}

.mns-article-on-page-nav li {
    margin-bottom: 10px;
}

.mns-article-on-page-nav a {
    text-decoration: none;
    color: #171929;
    font-size: 16px;
    transition: color 0.2s;
    text-transform: capitalize;
}

.mns-article-on-page-nav a:hover {
    color: var(--mns-article-primary-color);
}

.mns-article-on-page-nav .mns-article-active-link a {
    color: var(--mns-article-text-color);
    font-weight: bold;
}

.mns-article-content-body h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    color: #171929;
    margin-top: 30px;
    margin-bottom: 15px;
}

.mns-article-content-body h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    color: #171929;
    margin-top: 30px;
    margin-bottom: 15px;
}

.mns-article-content-body p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #3b3c4a;
}

/* Blockquote Style */
.mns-article-blockquote {
    background-color: var(--mns-article-bg-color);
    border-left: 5px solid var(--mns-article-border-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--mns-article-light-text-color);
    font-size: 1.1rem;
    border-radius: 0 5px 5px 0;
}

/* Image within content */
.mns-article-content-image {
    margin: 30px 0;
}

.mns-article-content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Conclusion and Footer Section */

.mns-article-rate {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--mns-article-light-text-color);
}

.mns-article-stars {
    color: gold;
    font-size: 1.2rem;
    margin-left: 10px;
}

.mns-article-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid var(--mns-article-border-color);
}

.mns-article-share-icon {
    width: 30px;
    height: 30px;
    background-color: var(--mns-article-bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9C9CA;
    text-decoration: none;
    font-size: 0.9rem;
}

.mns-article-author-box {
    display: block;
    flex-direction: column;
    align-items: center;
    text-align-last: center;
    padding: 20px 0;
}

.mns-article-author-box img {
    width: 70px;
    height: auto;
    display: inline;
    height: 70px;
}

.mns-article-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.mns-article-author-name {
    font-size: 20px;
    font-weight: 400;
    color: #777777;
    margin-bottom: 5px;
}

.mns-article-author-bio {
    font-size: 14px;
    line-height: 24px;
    color: #777777;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: -webkit-center;
}

.mns-article-author-bio p {
    font-size: 14px;
    line-height: 24px;
    color: #777777;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: -webkit-center;
}

.mns-article-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}


.mns-article-tag span {
    font-size: 14px;
    color: #000;
}

.mns-article-tag {
    background-color: #fff;
    color: #D9D9D9;
    padding: 5px 15px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
}

.mns-article-tag.active {
    background-color: #5271FF;
    color: #FFDA00;
    padding: 5px 15px;
    border: 1px solid #5271FF;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
}

/* ==== Card Identifier Blog Detail ==== */
.identifier {
    padding-bottom: 20px;
}

.card-model-component {
    display: flex;
    align-items: center;
    background-color: #F2F4FC;
    border-radius: 20px;
    padding: 24px;
    gap: 24px;
}

.card-model-component img {
    border-radius: 16px;
    width: 250px;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-model-component .card-info {
    width: 100%;
}

.card-model-component .card-info h3 {
    color: #5271FF;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin: 0 0 16px;
}

/* Social List */
.card-model-component .social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Social Item (Card Putih) */
.card-model-component .social-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    gap: 16px;
}

/* Ikon Platform */
.card-model-component .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #DCE3FF;
    color: #5271FF;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Detail Akun */
.card-model-component .details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-model-component .details p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #332C5C;
    font-family: "Inter", sans-serif;
}

.card-model-component .details .more-details {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #5E587A;
    font-family: "Inter", sans-serif;
    margin-top: -5px;
}

.card-model-component .details .more-details span {
    white-space: nowrap;
}

.card-model-component .details .more-details button {
    padding: 3px 8px;
    background-color: #E8F5E9;
    color: #2E7D32;
    font-size: 10px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: default;
    margin: 0;
}

/* Tombol Get Detailed */
.card-model-component .btn {
    padding: 8px 16px;
    background-color: #5271FF;
    color: #FFDA00;
    font-weight: 700;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none; /* Penting: karena button membungkus <a> */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-model-component .btn a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.card-model-component .btn:hover {
    background-color: #4560e6;
}

/* ==== CHART ER ==== */
.ig-engage-sec-2025-container {
    background: linear-gradient(135deg, #e8ecf5 0%, #d4dce9 100%);
    padding: 60px 20px;
    font-family: 'Inter';
}

.ig-engage-sec-2025-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ig-engage-sec-2025-text-column {
    padding-right: 20px;
}

.ig-engage-sec-2025-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.ig-engage-sec-2025-description {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.ig-engage-sec-2025-chart-column {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ig-engage-sec-2025-chart-title {
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #2d3748;
    line-height: 24px;
    margin: 0 0 40px 0;
}

.ig-engage-sec-2025-chart-container {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.ig-engage-sec-2025-y-axis {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    height: 185px;
    padding-bottom: 15px;
}

.ig-engage-sec-2025-y-label {
    font-size: 8px;
    color: #9ca3af;
    text-align: right;
    line-height: 1;
}

.ig-engage-sec-2025-chart-area {
    position: relative;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    flex: 1;
}

.ig-engage-sec-2025-bar-wrapper {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ig-engage-sec-2025-value-label {
    background: #ffd93d;
    color: #2d3748;
    font-size: 8px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    white-space: nowrap;
}

.ig-engage-sec-2025-bar {
    width: 100%;
    background: #5b7cff;
    transition: all 0.3s ease;
    position: relative;
}


.ig-engage-sec-2025-bar-label {
    margin-top: 0px;
    font-size: 8px;
    color: #9ca3af;
    text-align: center;
    line-height: 18px;
}

.kol-game-ramp-card-v2 img {
    width: 100%;
    height: auto;
    margin-bottom: -7px;
}


/* KOL Game Section - Unique Class Names */
.hero-jk-title {
    font-size: 100px;
    font-weight: 700;
    color: #ffd600; /* kuning */
    line-height: 110px;
    text-align: -webkit-center;
}


.kol-game-ramp-section-v2 {
    width: 100%;
    padding: 0px 20px 80px 20px;
    background: #ffffff;
}

.kol-game-ramp-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.kol-game-ramp-title-v2 {
    font-size: 52px;
    font-weight: 600;
    color: #323133;
    text-align: center;
    margin-bottom: 50px;
    line-height: 62px;
}

/* Cards Grid */
.kol-game-ramp-cards-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Individual Card */
.kol-game-ramp-card-v2 {
    background: #f2f4fc;
    border: 2px solid #5271FF;
    border-radius: 16px;
    padding: 30px 30px 0px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.kol-game-ramp-card-v2:hover {
    transform: translateY(-5px);
}


/* Card Header */
.kol-game-ramp-card-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.kol-game-ramp-card-title-v2 {
    font-size: 24px;
    font-weight: 600;
    color: #5271FF;
    line-height: 34px;
}

.kol-game-ramp-card-badge-v2 {
    background: #FFDA00;
    color: #5271FF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Card Description */
.kol-game-ramp-card-description-v2 {
    font-size: 16px;
    color: #525252;
    line-height: 26px;
    margin-bottom: 16px;
    border-top: 1px dotted #dcdde6;
    padding-top: 10px;
}

/* Card Image Container */
.kol-game-ramp-card-image-wrapper-v2 {
    width: 100%;
    height: 180px;
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kol-game-ramp-card-image-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder for images */
.kol-game-ramp-card-placeholder-v2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Trusted Brands Section */
.kol-game-ramp-brands-section-v2 {
    text-align: center;
    width: 100%;
    padding: 40px 0;
}

.kol-game-ramp-brands-title-v2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.kol-game-ramp-brands-wrapper-v2 {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.kol-game-ramp-brands-grid-v2 {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: kol-game-scroll-brands-v2 30s linear infinite;
    width: max-content;
}

.kol-game-ramp-brands-grid-v2:hover {
    animation-play-state: paused;
}

@keyframes kol-game-scroll-brands-v2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.kol-game-ramp-brand-logo-v2 {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.kol-game-ramp-brand-logo-v2:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Brand placeholder */
.kol-game-ramp-brand-placeholder-v2 {
    height: 40px;
    padding: 55px 25px;
    background: #E8F4FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    flex-shrink: 0;
    white-space: nowrap;
}

.kol-game-ramp-brand-placeholder-v2 img {
    width: 200px;
    height: auto;
}

/* Shortcut to Effective KOL Marketing Section - Unique Class Names */
.kol-shortcut-marketing-section-v3 {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kol-shortcut-marketing-container-v3 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.kol-shortcut-marketing-content-wrapper-v3 {
    background: linear-gradient(135deg, #5271FF 0%, #5271FF 100%);
    border-radius: 32px;
    padding: 100px;
}

/* Section Title */
.kol-shortcut-marketing-title-v3 {
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    line-height: 62px;
}

/* Feature Cards Grid */
.kol-shortcut-marketing-grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Individual Card */
.kol-shortcut-marketing-card-v3 {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.kol-shortcut-marketing-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Wrapper */
.kol-shortcut-marketing-icon-wrapper-v3 {
    width: 75px;
    height: 75px;
    background: #e8edfc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kol-shortcut-marketing-icon-v3 {
    width: 28px;
    height: 28px;
}

/* Card Content */
.kol-shortcut-marketing-card-content-v3 {
    flex: 1;
}

.kol-shortcut-marketing-card-title-v3 {
    font-size: 24px;
    font-weight: 600;
    color: #5271ff;
    margin-bottom: 8px;
    line-height: 34px;
}

.kol-shortcut-marketing-card-description-v3 {
    font-size: 16px;
    color: #525252;
    line-height: 26px;
    margin: 0;
}

.kol-shortcut-marketing-card-description-v3-map {
    font-size: 16px;
    color: #525252;
    line-height: 26px;
    margin: 0;
}

/* PACKAGE */
.pkgsec__container {
    width: 100%;
    padding: 80px 20px;
    background-color: #fff;
    font-family: "Inter";
}

.pkgsec__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.pkgsec__title {
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    color: #323133;
    line-height: 62px;
    margin-bottom: 40px;
}

/* Tabs Wrapper for Scrolling */
.pkgsec__tabs-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    display: flex;
    justify-content: center;
}

.pkgsec__tabs-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Tabs Navigation */
.pkgsec__tabs {
    display: inline-flex;
    justify-content: center;
    gap: 7px;
    min-width: min-content;
    background-color: #e8edfc;
    border-radius: 8px;
    padding: 4px;
}

.pkgsec__tab {
    padding: 10px 24px;
    background-color: transparent;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter";
    color: #595858;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.pkgsec__tab:hover {
    color: #5271FF;
    background-color: #FFFFFF;
}

.pkgsec__tab--active {
    background-color: #FFFFFF;
    color: #5271FF;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Tab Content */
.pkgsec__tab-content {
    display: none;
}

.pkgsec__tab-content--active {
    display: block;
}

/* Comparison Layout with Feature Labels */
.pkgsec__comparison {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    align-items: start;
}

/* Feature Labels Column */
.pkgsec__features-column {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    padding-right: 20px;
}

.pkgsec__features-header {
    height: 180px;
    margin-bottom: 55px;
}

.pkgsec__feature-row {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 20px 0;
    border-bottom: 1px solid #E8EBF0;
}

.pkgsec__feature-row:last-child {
    border-bottom: none;
}

.pkgsec__feature-name {
    font-size: 16px;
    font-weight: 700;
    color: #5271FF;
    line-height: 1.4;
}

/* Packages Grid */
.pkgsec__packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Package Card */
.pkgsec__card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pkgsec__card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.pkgsec__card--featured {
    background: linear-gradient(135deg, #E8ECFF 0%, #F0F3FF 100%);
    border: 2px solid #5271FF;
}

/* Badge (Star) */
.pkgsec__badge {
    position: absolute;
    top: -12px;
    right: -16px;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Card Header */
.pkgsec__card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pkgsec__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #667085;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pkgsec__card-title--featured {
    color: #0426C3;
}

.pkgsec__card-price {
    font-size: 36px;
    font-weight: 600;
    color: #667085;
    filter: blur(9px);
}

.pkgsec__card-price--featured {
    font-size: 36px;
    font-weight: 600;
    color: #0426C3;
    filter: blur(9px);
}

.pkgsec__card-custom {
    font-size: 36px;
    font-weight: 600;
    color: #667085;
}

/* Button */
.pkgsec__btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #5271FF;
    color: #FFDA00;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Inter";
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.pkgsec__btn:hover {
    background-color: #4A5DE0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91, 110, 245, 0.3);
}

/* Features List in Cards */
.pkgsec__features {
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex: 1;
}

.pkgsec__features > div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    padding: 20px 0;
    border-bottom: 1px solid #E8EBF0;
}

.pkgsec__features > div:last-child {
    border-bottom: none;
}

.pkgsec__feature-value {
    font-size: 16px;
    font-weight: 400;
    color: #667085;
    text-align: center;
}

.pkgsec__feature-value--muted {
    color: #667085;
}

.pkgsec__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkgsec__feature-icon--check svg {
    width: 20px;
    height: 20px;
}

.pkgsec__feature-icon--cross svg {
    width: 20px;
    height: 20px;
}


/* NOTIFIKASI EXTENSION */
.notification-container {
    position: relative;
    display: inline-block;
}

.notification-popup {
    position: absolute;
    top: 130%;
    right: 0;
    width: 350px;
    background: #dce2fc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.notification-content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 12px;
    font-weight: 400;
    color: #667085;
}

.notification-link {
    color: #0426C3;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

.notification-link:hover {
    text-decoration: underline;
}

.nav-buttons-notif {
    display: flex;
    gap: 8px;
    display: none;
}

.notification-container:hover {
    cursor: pointer;
}