:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --secondary: #9b59b6;
    --accent: #f1c40f;
    --purple: #8e44ad;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --gradient: linear-gradient(135deg, #2ecc71 0%, #9b59b6 100%);
    --gradient-purple: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    --gradient-green: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --font-main: 'Inter', sans-serif;
    --font-disp: 'Outfit', sans-serif;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.category-title {
    margin: 40px 0 20px;
    text-align: center;
    color: var(--secondary);
    font-size: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-disp);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    margin-left: 10px;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gradient);
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-top: 15px;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* --- Top Banner --- */
.top-banner {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- Hero --- */
.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    font-size: 0.9rem;
    color: var(--text-dark);
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.highlight-item i {
    color: var(--accent);
    margin-right: 5px;
}

.hero-visual {
    text-align: center;
}

.floating-img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    max-height: 350px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Platforms --- */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.platform-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.platform-card span {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Services --- */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.service-tag {
    background: white;
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(155, 89, 182, 0.1));
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.bestseller-tag {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(155, 89, 182, 0.3);
    border: 2px solid white;
    z-index: 10;
}

/* --- Testimonials --- */
.swiper {
    width: 100%;
    padding-bottom: 50px !important;
    margin-top: 30px;
}

.result-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin: 10px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.bg-insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.bg-yt {
    background: #FF0000;
}

.bg-fb {
    background: #1877F2;
}

.bg-x {
    background: #1DA1F2;
}

.platform-badge {
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
    color: white;
}

.insta {
    background: #E1306C;
}

.youtube {
    background: #FF0000;
}

.fb {
    background: #1877F2;
}

.x {
    background: #1DA1F2;
}

.growth-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.btn-visit {
    width: 100%;
    padding: 10px;
    background: #f0f0f0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* --- Pricing --- */
.pricing-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 15px;
    margin: 25px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pricing-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    white-space: nowrap;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.pricing-group {
    display: none;
}

.pricing-group.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.price-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card.special {
    border: 2px solid var(--primary);
    background: linear-gradient(to bottom, #f0fbff, #fff);
}

.badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.price-card h3 {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-disp);
}

.price-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 15px;
    cursor: pointer;
}

.faq-q {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-a {
    display: none;
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 0.95rem;
    padding-top: 10px;
    border-top: 1px solid #f9f9f9;
}

.faq-item.active .faq-a {
    display: block;
}

/* --- Footer & FA --- */
footer {
    background: #f8f9fa;
    padding: 20px;
    color: #888;
    font-size: 0.8rem;
}

.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

/* --- Trial Popup --- */
.trial-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.trial-popup.show {
    display: flex;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    position: relative;
    z-index: 2001;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid var(--secondary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.trial-popup.show .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

.popup-header h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.popup-header p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.trial-deal {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px dashed var(--primary);
}

.deal-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    display: block;
    font-family: var(--font-disp);
}

.deal-highlight small {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* --- Media Queries --- */
@media (min-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .service-tag {
        font-size: 1.1rem;
        padding: 15px 30px;
    }

    .hero-content {
        margin: 0 auto;
        max-width: 800px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .price-card {
        transition: transform 0.3s;
    }

    .price-card:hover {
        transform: translateY(-10px);
    }

    .pricing-tabs {
        justify-content: center;
    }
}