/* ==========================================================================
   CSS Variables & Foundations
   ========================================================================== */
   :root {
    /* Primary Color Palette (Vibrant, Premium) */
    --primary-color: #4F46E5;      /* Indigo */
    --primary-light: #6366F1;
    --primary-dark: #4338CA;
    --primary-alpha: rgba(79, 70, 229, 0.1);
    
    /* Secondary & Accent Colors */
    --secondary-color: #10B981;    /* Emerald Green for POS vibe */
    --accent-color: #F43F5E;       /* Rose for highlights */
    
    /* Semantic Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --info-color: #3B82F6;
    
    /* Extended Colors for Features */
    --blue-color: #3B82F6;
    --purple-color: #8B5CF6;
    --green-color: #10B981;
    --orange-color: #F97316;
    --teal-color: #14B8A6;
    --pink-color: #EC4899;

    /* Neutrals / Grayscale */
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --text-light: #F9FAFB;
    
    --bg-main: #FFFFFF;
    --bg-light: #F3F4F6;
    --bg-dark: #111827;
    
    /* Card / Glass Backgrounds */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-pill: 9999px;
}

/* ==========================================================================
   Reset & Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-green { color: var(--success-color); }

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }

.bg-blue { background-color: rgba(59, 130, 246, 0.1); color: var(--blue-color); }
.bg-purple { background-color: rgba(139, 92, 246, 0.1); color: var(--purple-color); }
.bg-green { background-color: rgba(16, 185, 129, 0.1); color: var(--green-color); }
.bg-orange { background-color: rgba(249, 115, 22, 0.1); color: var(--orange-color); }
.bg-teal { background-color: rgba(20, 184, 166, 0.1); color: var(--teal-color); }
.bg-pink { background-color: rgba(236, 72, 153, 0.1); color: var(--pink-color); }

.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.pb-5 { padding-bottom: 3rem !important; }

.section { padding: 5rem 0; }
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-header p {
    font-size: 1.125rem;
}

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

/* ==========================================================================
   Components: Buttons & Badges
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}
.btn-secondary:hover { background-color: #059669; }

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background-color: var(--primary-alpha);
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-alpha);
    color: var(--primary-color);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #1e3a8a, #4c1d95);
    color: white;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 29, 149, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 29, 149, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 29, 149, 0); }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-main);
}
.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}
.mobile-menu.active { right: 0; }

.close-menu-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 0.5rem;
    display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    background-color: #f8fafc;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s infinite ease-in-out;
}
.shape-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: var(--primary-light);
    border-radius: 50%;
}
.shape-2 {
    bottom: -20%; right: -5%;
    width: 600px; height: 600px;
    background: #c4b5fd; /* Light purple */
    border-radius: 50%;
    animation-delay: -5s;
}
.shape-3 {
    top: 20%; right: 20%;
    width: 300px; height: 300px;
    background: #ecfda5; /* Light lime */
    border-radius: 50%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}
.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.hero-trust-badges i { color: var(--success-color); }

/* Hero Mockup (Decorative POS UI) */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ==========================================================================
   Hero Video Demo (SewaScale Style)
   ========================================================================== */
.video-demo-wrapper {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-demo-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
}
.video-demo-wrapper:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255,255,255,0.6);
}

.video-demo-card-youtube {
    border-radius: 1.5rem;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.video-demo-card-youtube::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s ease;
    z-index: 1;
}
.video-demo-wrapper:hover .video-demo-card-youtube::after {
    background: rgba(0,0,0,0.1);
}

.play-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #10b981;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    padding-left: 5px; /* Offset to center triangle visually */
}

.video-card-footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #cbd5e1;
    z-index: 2;
}

.video-float-btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #10b981, #059669);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    z-index: 10;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-demo-wrapper:hover .video-float-btn {
    bottom: 20px; /* Show hovering over footer */
    opacity: 1;
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-container {
    width: 90%;
    max-width: 960px;
    position: relative;
    background: black;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}

.video-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.video-close-btn:hover { color: #f87171; }

.video-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}
.video-iframe-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

@media (max-width: 768px) {
    .video-card-title { font-size: 1.5rem; }
    .video-demo-card { min-height: 320px; padding: 1.5rem; }
    .play-btn { width: 60px; height: 60px; font-size: 1.5rem; }
    .video-card-footer { font-size: 0.75rem; flex-direction: column; gap: 0.5rem; }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 2rem;
    gap: 2rem;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}
.stat-item p {
    font-weight: 600;
    margin: 0;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-alpha);
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-stars {
    color: var(--warning-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.author-info h4 { margin: 0; font-size: 1rem; }
.author-info span { font-size: 0.875rem; color: var(--text-muted); }

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}
.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition-normal);
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 10;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.discount-badge {
    display: inline-block;
    background: var(--warning-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-color);
    color: var(--text-main);
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.pricing-header { margin-bottom: 2rem; border-bottom: 1px solid var(--bg-light); padding-bottom: 1.5rem; }
.pricing-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pricing-header p { margin:0; font-size: 0.9rem;}

.pricing-price { margin-bottom: 2rem; position: relative;}
.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.currency { font-size: 1.5rem; font-weight: 700; vertical-align: top; }
.amount { font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--text-main); }
.period { color: var(--text-muted); }
.price-note { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.5rem;}

.savings-box {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features { margin-bottom: 2.5rem; }
.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}
.pricing-features i { color: var(--primary-color); }

/* Glass Panel Dark (For popular pricing) */
.glass-panel-dark {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

/* ==========================================================================
   Scarcity Timer Widget
   ========================================================================== */
.scarcity-a-premium { 
    background: linear-gradient(135deg, #fef2f2, #fee2e2); 
    border: 1px solid #fca5a5; 
    border-radius: var(--radius-md); 
    padding: 1.2rem; 
    color: #991b1b; 
    text-align: center; 
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}
.timer-title { font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 8px;}
.timer-boxes-premium { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 12px; }
.t-box-premium { 
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%); 
    color: white; 
    padding: 6px 10px; 
    border-radius: 8px; 
    font-family: inherit;
    font-size: 1.4rem; 
    font-weight: 800;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    min-width: 44px;
}
.t-sep-premium { font-weight: 800; font-size: 1.2rem; color: #dc2626; margin: 0 2px;}
.timer-sub { font-size: 0.75rem; color: #b91c1c; margin-top: 10px; font-weight: 500;}

/* Fix for long numbers bursting out of the box in Popular Pricing */
.pricing-card.popular .amount { font-size: 2.6rem !important; letter-spacing: -1px; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-accordion { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-btn {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}
.faq-btn i { transition: transform var(--transition-fast); }
.faq-item.active .faq-btn i { transform: rotate(180deg); color: var(--primary-color); }
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 1.5rem;
}
.faq-item.active .faq-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* ==========================================================================
   Bottom CTA
   ========================================================================== */
.bottom-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
}
.bottom-cta h2, .bottom-cta p { color: white; }
.bottom-cta p { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.cta-bg-shapes .shape { background: rgba(255,255,255,0.1); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
}
.footer p, .footer a, .footer-contact small { color: var(--text-muted); }
.footer h4 { color: white; margin-bottom: 1.5rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col.brand-col .brand { color: white; margin-bottom: 1rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a:hover { color: white; padding-left: 5px; }

.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact i { color: var(--primary-light); margin-top: 0.3rem;}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

/* ==========================================================================
   Privacy Policy Page Specifics
   ========================================================================== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom, #f8fafc, white);
}
.content-container {
    max-width: 900px;
    margin: -2rem auto 0;
    padding: 3rem;
    position: relative;
    z-index: 10;
    background: white;
}
.policy-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}
.policy-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-alpha);
    line-height: 1;
}
.policy-body h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}
.policy-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}
.policy-item p { margin: 0; }

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.card-bordered {
    border: 1px solid var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: #fafafa;
}
.check-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}
.check-list li::before {
    content:'\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}
.policy-contact-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 1.5rem auto; }
    .hero-trust-badges { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-5px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
    h1 { font-size: 2.25rem; }
    .section { padding: 3rem 0; }
    
    /* Play button and card mobile adjustments */
    .play-btn { width: 60px; height: 60px; font-size: 1.5rem; }
    .video-demo-wrapper:hover { transform: none; } /* Disable hover lift on mobile */
    
    /* Modal mobile adjustments */
    .video-modal-container { width: 95%; }
    .video-close-btn { top: -45px; right: 5px; font-size: 1.8rem; }
    
    /* Marquee & Scarcity adjustments for small screens */
    .testimonial-card-marquee { flex: 0 0 320px; padding: 1rem; }
    .t-box-premium { font-size: 1.1rem; padding: 4px 8px; min-width: 38px; }
    .timer-title { font-size: 0.85rem; }
    
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .policy-block { flex-direction: column; gap: 0.5rem; }
    .policy-number { font-size: 1.5rem; }
    .grid-2-cols { grid-template-columns: 1fr; }
    .content-container { padding: 1.5rem; }
}

/* ----- Added Marquee CSS ----- */
/* ==========================================================================
   Testimonials (Marquee Style)
   ========================================================================== */
.testimonials-marquee-wrapper {
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    width: 100%;
    /* Edge Masking like OpenClaw */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}


.marquee-container {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 1rem 0;
}

.marquee-row-right {
    animation: scroll-right 40s linear infinite;
}

.marquee-row-left {
    animation: scroll-left 40s linear infinite;
}

.marquee-container:hover {
    animation-play-state: paused;
}

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

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

.testimonial-card-marquee {
    flex: 0 0 450px;
    padding: 1.5rem;
    display: flex;
    flex-direction: row !important; /* Horizontal layout */
    align-items: flex-start;
    gap: 1.25rem;
    min-height: auto;
    text-align: left;
}

.testimonial-card-marquee .avatar {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
}

.testimonial-card-marquee .testimonial-content {
    flex: 1;
}

.testimonial-card-marquee .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-style: normal;
}

.testimonial-card-marquee .author-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.testimonial-card-marquee .author-info span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-stars {
    color: var(--warning-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.author-info h4 { margin: 0; font-size: 1rem; }
.author-info span { font-size: 0.875rem; color: var(--text-muted); }


/* ==========================================================================
   Testimonials (Marquee Style)
   ========================================================================== */
.testimonials-marquee-wrapper {
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    width: 100%;
    /* Edge Masking like OpenClaw */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}


.marquee-container {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 1rem 0;
}

.marquee-row-right {
    animation: scroll-right 40s linear infinite;
}

.marquee-row-left {
    animation: scroll-left 40s linear infinite;
}

.marquee-container:hover {
    animation-play-state: paused;
}

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

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

.testimonial-card-marquee {
    flex: 0 0 450px;
    padding: 1.5rem;
    display: flex;
    flex-direction: row !important; /* Horizontal layout */
    align-items: flex-start;
    gap: 1.25rem;
    min-height: auto;
    text-align: left;
}

.testimonial-card-marquee .avatar {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
}

.testimonial-card-marquee .testimonial-content {
    flex: 1;
}

.testimonial-card-marquee .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-style: normal;
}

.testimonial-card-marquee .author-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.testimonial-card-marquee .author-info span {
    font-size: 0.8rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}


/* ==========================================================================
   Feature Zigzag Layout (SewaScale Style)
   ========================================================================== */
.feature-zigzag-wrapper {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    padding: 3rem 0;
}

.feature-zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-zigzag-row.reverse .feature-zigzag-text {
    order: 2;
}

.feature-zigzag-text {
    padding-right: 2rem;
    text-align: left;
}

.feature-zigzag-row.reverse .feature-zigzag-text {
    padding-right: 0;
    padding-left: 2rem;
}

.feature-zigzag-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-zigzag-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
}

.text-green {
    color: var(--success-color);
    margin-top: 4px;
}

.placeholder-screenshot {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--blue-color);
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px dashed rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.placeholder-screenshot span {
    opacity: 0.7;
    text-align: center;
    padding: 1rem;
}

.feature-zigzag-row:hover .placeholder-screenshot {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
}

/* Secondary Features / Fitur Lainnya */
.secondary-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem 2rem;
}

.secondary-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    text-align: left;
}

.secondary-feature-item i {
    font-size: 1.6rem;
    color: var(--success-color);
    margin-top: 0.1rem;
}

.secondary-feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--primary-dark);
}

.secondary-feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .feature-zigzag-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .feature-zigzag-row.reverse .feature-zigzag-text {
        order: unset;
        padding-left: 0;
    }
    .feature-zigzag-text {
        padding-right: 0;
        text-align: center;
    }
    .feature-checklist li {
        justify-content: center;
        text-align: left;
    }
}

/* ==========================================================================
   Feature Highlight Box (Section 09 Style)
   ========================================================================== */
.feature-highlight-box {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 4rem;
    margin: 4rem auto;
    max-width: 1000px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: white;
}

.feature-highlight-box h3 {
    color: white !important;
}

.feature-highlight-box p {
    color: #94a3b8 !important;
}

.feature-highlight-box .badge-tag {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box-small {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
}

.icon-box-small:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    transform: translateY(-5px);
}

.icon-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .feature-highlight-box {
        padding: 2.5rem 1.5rem;
        margin: 2rem 1rem;
    }
    .feature-highlight-box .feature-zigzag-row {
        grid-template-columns: 1fr !important;
    }
}


/* ==========================================================================
   Batch Pricing Timeline
   ========================================================================== */
.batch-timeline {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.batch-timeline-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.batch-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.batch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Sold Out State */
.batch-item.sold-out {
    opacity: 0.45;
    background: rgba(255, 255, 255, 0.02);
    color: #64748b;
    text-decoration: line-through;
}

.batch-item.sold-out .status-badge {
    text-decoration: none;
    font-size: 0.7rem;
    background: #334155;
    color: #94a3b8;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Active State (Batch 3) */
.batch-item.active {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
    transform: scale(1.03);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 5;
}

.batch-item.active .status-badge {
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 4px;
    animation: pulse-small 1.5s infinite;
}

@keyframes pulse-small {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Future State (Batch 4) */
.batch-item.future {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
}

.batch-item.future .status-badge {
    font-size: 0.7rem;
    color: #64748b;
}

.batch-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.batch-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

/* ==========================================================================
   Single Card Pricing (High Conversion)
   ========================================================================== */
.pricing-single-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.pricing-single-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.pricing-single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--purple-color));
}

.pricing-tag-batch {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.price-display-main {
    margin-bottom: 2.5rem;
}

.normal-price-strike {
    font-size: 1.5rem;
    color: #64748b;
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.promo-price-large {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.promo-price-large span {
    font-size: 1.25rem;
    color: #94a3b8;
    font-weight: 600;
}

/* Warning Urgency Box */
.urgency-warning-box {
    background: rgba(254, 240, 138, 0.05);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.warning-header {
    color: #facc15;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.warning-text {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.warning-text strong {
    color: var(--danger-color);
}

/* Quota Progress Bar */
.quota-progress-wrapper {
    margin-top: 1rem;
}

.quota-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.quota-bar-bg {
    height: 10px;
    background: #334155;
    border-radius: 10px;
    overflow: hidden;
}

.quota-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f87171);
    width: 92%; /* Dynamic width simulation */
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    border-radius: 10px;
}

/* Big Pulse Button */
.btn-claim-huge {
    background: linear-gradient(90deg, #10b981, #059669);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    box-shadow: 0 15px 30px -10px rgba(16, 185, 129, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-claim-huge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.6);
}

@media (max-width: 640px) {
    .pricing-single-card {
        padding: 2rem 0.75rem;
    }
    .promo-price-large {
        font-size: 2.2rem;
        display: flex;
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
        width: 100%;
        line-height: normal;
    }
    .promo-price-large .price-period {
        font-size: 0.9rem;
        margin-left: 2px;
    }
    .batch-item {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 0.5rem 0.35rem !important;
        font-size: 0.72rem !important;
        gap: 2px !important;
    }
    .batch-name {
        gap: 0 !important;
        white-space: nowrap;
        flex-shrink: 1;
        overflow: hidden;
    }
    .batch-name i {
        display: none !important; /* Hilangkan ikon untuk hemat ruang */
    }
    .batch-price {
        font-size: 0.75rem;
        white-space: nowrap;
        margin-left: 2px !important;
        flex-shrink: 0;
    }
    .status-badge {
        font-size: 0.58rem !important;
        padding: 2px 4px !important;
        flex-shrink: 0;
        margin-left: 2px !important;
    }
    .warning-text {
        font-size: 0.8rem;
    }
    .t-box-premium {
        font-size: 1rem;
        min-width: 32px;
    }
    .btn-claim-huge {
        font-size: 0.9rem !important;
        padding: 0.85rem 0.75rem !important;
    }
}

@media (max-width: 380px) {
    .promo-price-large {
        font-size: 1.8rem;
    }
    .batch-item {
        font-size: 0.68rem !important;
        padding: 0.45rem 0.25rem !important;
    }
    .batch-price {
        font-size: 0.7rem;
    }
    .status-badge {
        font-size: 0.55rem !important;
    }
    .btn-claim-huge {
        font-size: 0.85rem !important;
    }
}
