/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */

:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Color Palette */
    --bg-dark: #05010a;
    --bg-dark-accent: #0c0617;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.15);

    --primary: #7b2cff;
    --primary-glow: rgba(123, 44, 255, 0.4);
    --secondary: #ff007f;
    --secondary-glow: rgba(255, 0, 127, 0.3);
    
    --accent: #00ff87;
    --accent-glow: rgba(0, 255, 135, 0.4);
    --accent-dark: #00bf63;
    
    --text-white: #ffffff;
    --text-gray-100: #f3f4f6;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --text-gray-500: #6b7280;

    /* Marketplace specific colors */
    --color-shopee: #ee4d2d;
    --color-shopee-bg: rgba(238, 77, 45, 0.1);
    --color-ml: #fff159;
    --color-ml-bg: rgba(255, 241, 89, 0.1);
    --color-amazon: #ff9900;
    --color-amazon-bg: rgba(255, 153, 0, 0.1);
    --color-shein: #ffffff;
    --color-shein-bg: rgba(255, 255, 255, 0.1);
    --color-tiktok: #00f2fe;
    --color-tiktok-bg: rgba(0, 242, 254, 0.1);

    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(123, 44, 255, 0.15);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 70px; /* Space for sticky CTA on mobile */
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ==========================================================================
   BACKGROUND LIGHT BLOBS (NEON ORBS)
   ========================================================================== */

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.23;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: pulseBlob 12s infinite alternate ease-in-out;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: pulseBlob 15s infinite alternate-reverse ease-in-out;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00f0ff 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

@keyframes pulseBlob {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(50px, 30px); }
}

/* ==========================================================================
   TOP TICKER BAR
   ========================================================================== */

.top-ticker {
    background: linear-gradient(90deg, #5112be 0%, #1d0746 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: scrollTicker 30s linear infinite;
}

.ticker-content span {
    display: inline-block;
    padding-right: 50px;
}

@keyframes scrollTicker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(90deg, #ff007f 0%, #a855f7 50%, #00ff87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #010c06;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 255, 135, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 0 25px var(--accent-glow);
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-glow:hover::after {
    opacity: 1;
    box-shadow: 0 0 35px var(--accent-glow);
}

.btn-large {
    font-size: 20px;
    padding: 22px 48px;
    border-radius: 18px;
    width: 100%;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    letter-spacing: 0.05em;
    color: var(--text-gray-100);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: badgeIndicator 1.8s infinite;
}

@keyframes badgeIndicator {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

.hero h1 {
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-gray-300);
    margin-bottom: 35px;
    max-width: 620px;
}

/* Marketplace Badges Grid in Hero */
.marketplaces-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.market-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.market-icon {
    width: 18px;
    height: 18px;
}

.text-logo {
    font-weight: 900;
    font-size: 14px;
    font-family: var(--font-heading);
}

/* Badge hover themes */
.shopee-theme:hover {
    border-color: var(--color-shopee);
    background: var(--color-shopee-bg);
    color: #ff785a;
    transform: translateY(-2px);
}
.ml-theme:hover {
    border-color: var(--color-ml);
    background: var(--color-ml-bg);
    color: var(--color-ml);
    transform: translateY(-2px);
}
.amazon-theme:hover {
    border-color: var(--color-amazon);
    background: var(--color-amazon-bg);
    color: #ffb84d;
    transform: translateY(-2px);
}
.shein-theme:hover {
    border-color: var(--color-shein);
    background: var(--color-shein-bg);
    transform: translateY(-2px);
}
.tiktok-theme:hover {
    border-color: var(--color-tiktok);
    background: var(--color-tiktok-bg);
    color: var(--color-tiktok);
    transform: translateY(-2px);
}

/* Hero CTA Block Inline */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 580px;
}

.pricing-card-inline {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    gap: 20px;
    box-shadow: var(--shadow-premium);
}

.pricing-info {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}

.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-gray-500);
    font-weight: 600;
}

.new-price-wrapper {
    display: flex;
    align-items: flex-start;
    color: var(--accent);
}

.currency {
    font-size: 16px;
    font-weight: 800;
    margin-top: 4px;
    margin-right: 2px;
}

.price-val {
    font-size: 38px;
    font-weight: 900;
    line-height: 0.9;
    font-family: var(--font-heading);
}

.price-cents {
    font-size: 18px;
    font-weight: 800;
    margin-top: 4px;
}

.btn-hero-cta {
    flex-grow: 1;
    padding: 18px 24px;
}

.cta-guarantees {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-gray-400);
    padding-left: 8px;
    font-weight: 500;
}

/* ==========================================================================
   DYNAMIC GLASSMOPRHIC DASHBOARD WIDGET (Hero Graphic)
   ========================================================================== */

.hero-graphic {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.glass-dashboard {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.glass-dashboard:hover {
    transform: translateY(-5px) rotate(1deg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.2);
}

.window-dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.dashboard-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-gray-400);
    letter-spacing: 0.03em;
    font-family: var(--font-heading);
}

.dashboard-body {
    padding: 24px;
}

.stats-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.stats-label {
    font-size: 12px;
    color: var(--text-gray-400);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.stats-value-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.currency-symbol {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
}

.stats-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.trend-up {
    margin-left: auto;
    background-color: rgba(0, 255, 135, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trend-icon {
    width: 12px;
    height: 12px;
}

.orders-count {
    font-size: 12px;
    color: var(--text-gray-400);
    font-weight: 500;
}

/* Simulated Live Chart Area */
.chart-container {
    height: 70px;
    margin-bottom: 22px;
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

/* Sales Feed in Dashboard */
.sales-feed {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
}

.feed-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feed-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ff3b30;
    box-shadow: 0 0 8px #ff3b30;
    animation: liveRecPulse 1.2s infinite;
}

@keyframes liveRecPulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.feed-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    max-height: 116px;
}

.feed-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    animation: feedItemIn 0.5s ease-out;
}

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

.feed-source {
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    margin-right: 12px;
    text-transform: uppercase;
}

.feed-source.shopee {
    background-color: var(--color-shopee-bg);
    color: #ff785a;
    border: 1px solid rgba(238, 77, 45, 0.2);
}

.feed-source.ml {
    background-color: var(--color-ml-bg);
    color: var(--color-ml);
    border: 1px solid rgba(255, 241, 89, 0.2);
}

.feed-source.amazon {
    background-color: var(--color-amazon-bg);
    color: #ffb84d;
    border: 1px solid rgba(255, 153, 0, 0.2);
}

.feed-source.shein {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-source.tiktok {
    background-color: var(--color-tiktok-bg);
    color: var(--color-tiktok);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.feed-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feed-product {
    color: var(--text-white);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.feed-time {
    color: var(--text-gray-500);
    font-size: 10px;
    font-weight: 500;
}

.feed-price {
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

/* ==========================================================================
   TRUST LOGO BAR
   ========================================================================== */

.trust-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.01);
}

.trust-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-title {
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-gray-500);
    letter-spacing: 0.08em;
}

.trust-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray-300);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   SECTION STANDARD STYLES
   ========================================================================== */

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-sub {
    font-size: 18px;
    color: var(--text-gray-400);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.grid {
    display: grid;
    gap: 30px;
}

/* Highlight section background */
.section.highlight {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-accent) 50%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   BENEFITS SECTION (WHY WORKSHOP)
   ========================================================================== */

.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-glow-bg {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -75px;
    right: -75px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(123, 44, 255, 0.4);
    box-shadow: 0 15px 35px rgba(123, 44, 255, 0.15);
}

.card:hover .card-glow-bg {
    opacity: 1;
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(123, 44, 255, 0.1);
    border: 1px solid rgba(123, 44, 255, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card:hover .card-icon {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.05);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--text-gray-400);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   CURRICULUM / COURSE GRID
   ========================================================================== */

.course-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.course-card {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.course-card:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.course-num {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.course-card:hover .course-num {
    color: var(--accent);
    -webkit-text-stroke: 1.5px var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.course-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.course-card-content p {
    color: var(--text-gray-400);
    font-size: 14px;
    margin-bottom: 18px;
}

.course-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.course-bullets li {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-bullets li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
    display: inline-block;
}

.course-card:hover .course-bullets li::before {
    background-color: var(--accent);
}

/* ==========================================================================
   DETAILED CHANNELS GRID
   ========================================================================== */

.detailed-market-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.big-market-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.market-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.market-brand {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Market Brand Colors */
.shopee-bg { background-color: rgba(238, 77, 45, 0.15); border: 1px solid rgba(238, 77, 45, 0.3); }
.ml-bg { background-color: rgba(255, 241, 89, 0.15); border: 1px solid rgba(255, 241, 89, 0.3); }
.amazon-bg { background-color: rgba(255, 153, 0, 0.15); border: 1px solid rgba(255, 153, 0, 0.3); }
.shein-bg { background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); }
.tiktok-bg { background-color: rgba(0, 242, 254, 0.15); border: 1px solid rgba(0, 242, 254, 0.3); }

.big-market-card h3 {
    font-size: 20px;
}

.big-market-card p {
    color: var(--text-gray-400);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.market-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-gray-300);
}

/* Hover dynamic borders */
.shopee-border:hover { border-color: var(--color-shopee); box-shadow: 0 10px 30px rgba(238, 77, 45, 0.15); transform: translateY(-5px); }
.ml-border:hover { border-color: #d8c300; box-shadow: 0 10px 30px rgba(255, 241, 89, 0.15); transform: translateY(-5px); }
.amazon-border:hover { border-color: var(--color-amazon); box-shadow: 0 10px 30px rgba(255, 153, 0, 0.15); transform: translateY(-5px); }
.shein-border:hover { border-color: var(--color-shein); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1); transform: translateY(-5px); }
.tiktok-border:hover { border-color: var(--color-tiktok); box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15); transform: translateY(-5px); }

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.user-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    font-family: var(--font-heading);
    color: var(--text-white);
}

.bg-gradient-1 { background: linear-gradient(135deg, #7b2cff, #ff007f); }
.bg-gradient-2 { background: linear-gradient(135deg, #00f0ff, #7b2cff); }
.bg-gradient-3 { background: linear-gradient(135deg, #00ff87, #00f0ff); }

.user-row h4 {
    font-size: 16px;
    font-weight: 700;
}

.user-row span {
    font-size: 12px;
    color: var(--text-gray-500);
    display: block;
}

.stars {
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--text-gray-300);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}

/* ==========================================================================
   GUARANTEE BLOCK
   ========================================================================== */

.guarantee-section {
    padding: 60px 0;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 50px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-premium);
}

.guarantee-badge-img {
    width: 110px;
    height: 110px;
}

.badge-svg {
    width: 100%;
    height: 100%;
}

.guarantee-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffd700;
}

.guarantee-text p {
    color: var(--text-gray-300);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================================================
   PRICING / OFFER & COUNTDOWN
   ========================================================================== */

.pricing-section {
    padding: 80px 0;
}

.final-offer-box {
    background: linear-gradient(180deg, rgba(20, 10, 40, 0.8) 0%, rgba(5, 1, 10, 0.95) 100%);
    border: 1px solid rgba(123, 44, 255, 0.2);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(123, 44, 255, 0.15);
    overflow: hidden;
}

.final-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 0, 127, 0.15);
    border: 1px solid rgba(255, 0, 127, 0.3);
    color: #ff3b9a;
    font-size: 12px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.final-offer-box h2 {
    font-size: 40px;
    max-width: 800px;
    margin: 0 auto 15px;
}

.offer-sub-title {
    font-size: 18px;
    color: var(--text-gray-300);
    max-width: 680px;
    margin: 0 auto 40px;
}

/* Urgency Elements: Clock & Vagas */
.urgency-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 40px;
}

.timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timer-label {
    font-size: 13px;
    color: var(--text-gray-400);
    font-weight: 700;
}

.timer-clock {
    display: flex;
    align-items: center;
    gap: 12px;
}

.clock-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 12px;
    min-width: 70px;
}

.clock-unit span {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.clock-unit small {
    font-size: 10px;
    color: var(--text-gray-500);
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
}

.clock-colon {
    font-size: 28px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    animation: colonBlink 1s infinite;
}

@keyframes colonBlink {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

.spots-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 280px;
    gap: 8px;
}

.spots-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray-300);
    text-align: left;
}

.glowing-number {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-size: 18px;
}

.spots-bar-bg {
    height: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spots-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* Pricing Grid */
.pricing-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist li {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray-300);
    display: flex;
    gap: 12px;
    align-items: center;
}

.pricing-right {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px;
    border-radius: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-right .pricing-box {
    margin-bottom: 25px;
}

.pricing-right .old-price {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.new-price-huge {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 5px;
}

.new-price-huge .currency {
    font-size: 26px;
    font-weight: 900;
    margin-top: 8px;
}

.new-price-huge .price-val-huge {
    font-size: 76px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-family: var(--font-heading);
}

.new-price-huge .price-cents-huge {
    font-size: 32px;
    font-weight: 900;
    margin-top: 8px;
}

.payment-terms {
    font-size: 13px;
    color: var(--text-gray-500);
    font-weight: 600;
}

.animate-pulse {
    animation: pulseButton 2s infinite cubic-bezier(0.25, 0, 0, 1);
}

@keyframes pulseButton {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.5); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(0, 255, 135, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 135, 0); }
}

.payments-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.pay-icon {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.pay-icon:hover {
    opacity: 1;
}

.payments-badges span {
    font-size: 11px;
    color: var(--text-gray-500);
    font-weight: 700;
    margin-left: 5px;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    padding: 24px 30px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon-plus {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-gray-500);
    transition: transform 0.3s ease, color 0.3s;
}

.faq-item:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active {
    border-color: rgba(123, 44, 255, 0.3);
    background: rgba(123, 44, 255, 0.02);
}

.faq-item.active .faq-icon-plus {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-gray-400);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================================================
   STICKY FOOTER
   ========================================================================== */

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 1, 10, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 0;
    z-index: 99;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sticky-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-offer-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-badge {
    background-color: var(--secondary);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.sticky-price-text {
    font-size: 15px;
    color: var(--text-gray-300);
}

.sticky-price-text strong {
    color: var(--accent);
    font-size: 19px;
    font-family: var(--font-heading);
}

.btn-sticky {
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 10px;
}

/* ==========================================================================
   LIVE NOTIFICATION POPUP
   ========================================================================== */

.sales-notification-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(12, 6, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 14px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 101;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 320px;
}

.sales-notification-popup.slide-in {
    transform: translateX(0);
}

.popup-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--text-white);
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-info {
    display: flex;
    flex-direction: column;
}

.popup-text {
    font-size: 12px;
    color: var(--text-gray-300);
}

.popup-text strong {
    color: var(--text-white);
}

.popup-time {
    font-size: 10px;
    color: var(--text-gray-500);
    margin-top: 2px;
}

.popup-close {
    color: var(--text-gray-500);
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    transition: color 0.3s;
}

.popup-close:hover {
    color: var(--text-white);
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 100px; /* Extra padding bottom for sticky footer spacer */
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-terms {
    font-size: 13px;
    color: var(--text-gray-400);
    font-weight: 600;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-gray-500);
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--text-gray-500);
    max-width: 800px;
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */

/* Wide Monitors */
@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

/* Laptops / Desktops Medium */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-desc {
        font-size: 17px;
    }
}

/* Tablets (Portrait & Landscape) */
@media (max-width: 991px) {
    .hero {
        padding: 50px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .top-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .marketplaces-list {
        justify-content: center;
    }
    
    .hero-cta-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card-inline {
        justify-content: center;
    }
    
    .cta-guarantees {
        justify-content: center;
    }
    
    .hero-graphic {
        order: -1; /* Graphic displays above text on mobile/tablet for visual engagement first */
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .pricing-flex {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .checklist {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-right {
        order: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .guarantee-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 40px 30px;
    }
    
    .guarantee-badge-img {
        margin: 0 auto;
    }
}

/* Mobiles Large & Medium */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px; /* Room for sticky banner */
    }
    
    .top-ticker {
        font-size: 12px;
    }
    
    .hero {
        padding: 30px 0 50px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .pricing-card-inline {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }
    
    .pricing-info {
        text-align: center;
    }
    
    .btn-hero-cta {
        width: 100%;
    }
    
    .cta-guarantees {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .stats-value {
        font-size: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-sub {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .benefits-grid, .course-grid, .detailed-market-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .card, .course-card, .big-market-card, .testimonial-card {
        padding: 24px;
    }
    
    .final-offer-box {
        padding: 35px 20px;
    }
    
    .final-offer-box h2 {
        font-size: 28px;
    }
    
    .urgency-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-bottom: 25px;
        margin-bottom: 30px;
    }
    
    .spots-container {
        width: 100%;
        max-width: 280px;
    }
    
    .pricing-right {
        padding: 24px;
    }
    
    .new-price-huge .price-val-huge {
        font-size: 58px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .sticky-container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .sticky-price-text {
        font-size: 12px;
    }
    
    .sticky-price-text strong {
        font-size: 15px;
    }
    
    .btn-sticky {
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .sales-notification-popup {
        bottom: 75px; /* Sit above the sticky mobile bar */
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

/* Small Mobile Screen Adjustments */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }
    
    .new-price-huge .price-val-huge {
        font-size: 48px;
    }
    
    .new-price-huge .currency {
        font-size: 20px;
    }
    
    .new-price-huge .price-cents-huge {
        font-size: 24px;
    }
    
    .sticky-offer-text {
        gap: 8px;
    }
    
    .sticky-badge {
        display: none; /* Hide badging on tiny viewports */
    }
}
