/* ========================================
   SHORTCLIP — Premium Red Gen-Z Theme
   ======================================== */

/* ===== VARIABLES ===== */
:root {
    --red-primary: #EF4444;
    --red-dark: #DC2626;
    --red-darker: #B91C1C;
    --red-deepest: #7F1D1D;
    --red-glow: rgba(239, 68, 68, 0.4);
    --red-glow-strong: rgba(239, 68, 68, 0.6);
    --red-soft: rgba(239, 68, 68, 0.1);
    --black: #000000;
    --black-light: #0A0A0A;
    --black-card: #111111;
    --black-card-hover: #1A1A1A;
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-04: rgba(255, 255, 255, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--black-light);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ===== GLOBAL BACKGROUND LAYERS (make black feel alive) ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(1000px 560px at 10% 10%, rgba(239, 68, 68, 0.13), transparent 62%),
        radial-gradient(820px 540px at 92% 16%, rgba(249, 115, 22, 0.06), transparent 64%),
        radial-gradient(960px 620px at 60% 92%, rgba(239, 68, 68, 0.09), transparent 66%),
        radial-gradient(900px 520px at 50% 40%, rgba(255, 255, 255, 0.02), transparent 68%),
        linear-gradient(180deg, #050505 0%, #0A0A0A 55%, #060606 100%);
}

@keyframes ambient-drift {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
    50% { transform: translate3d(-2%, -1.2%, 0) scale(1.03); opacity: 1; }
    100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.055;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
    background-size: 520px 520px;
    filter: blur(0.35px);
    transform: translateZ(0);
    animation: ambient-drift 18s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    body::after { animation: none; }
}

::selection {
    background: var(--red-dark);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--red-darker);
    border-radius: 3px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #EF4444, #F97316, #EF4444);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* ===== RED GLOW EFFECTS ===== */
.glow-red {
    box-shadow: 0 0 20px var(--red-glow), 0 0 60px rgba(239, 68, 68, 0.15);
}

.glow-red-strong {
    box-shadow: 0 0 30px var(--red-glow-strong), 0 0 80px rgba(239, 68, 68, 0.25);
}

.text-glow {
    text-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(239, 68, 68, 0.2);
}

/* ===== GLASSMORPHISM ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.glass-red {
    background: rgba(239, 68, 68, 0.08);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--red-dark), var(--red-darker));
    color: white;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow), 0 0 60px rgba(239, 68, 68, 0.2);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: 14px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--white-30);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
    background: var(--red-soft);
}

/* ===== LOGIN MEMBER CTA (NAVBAR) ===== */
@keyframes login-cta-pulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-1px) scale(1.03); }
}

@keyframes login-cta-border-scan {
    0% { background-position: 0% 50%; opacity: 0.55; }
    50% { opacity: 1; }
    100% { background-position: 200% 50%; opacity: 0.55; }
}

.btn-login-member {
    overflow: visible; /* allow animated border outside button */
    animation: login-cta-pulse 1.8s ease-in-out infinite;
    box-shadow: 0 10px 26px rgba(239, 68, 68, 0.18);
}

.btn-login-member::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 1px solid rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.12), 0 0 18px rgba(239, 68, 68, 0.22);
    pointer-events: none;

}

/* Animated border scan only when masking works (prevents box artifacts) */
@supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
    .btn-login-member::after {
        border: none;
        padding: 2px;
        background: linear-gradient(
            90deg,
            rgba(239, 68, 68, 0) 0%,
            rgba(239, 68, 68, 0.22) 18%,
            rgba(239, 68, 68, 0.95) 32%,
            rgba(239, 68, 68, 0.22) 46%,
            rgba(239, 68, 68, 0) 62%,
            rgba(239, 68, 68, 0) 100%
        );
        background-size: 300% 100%;
        animation: login-cta-border-scan 1.8s linear infinite;
        filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.22));

        /* border-only mask */
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        mask-composite: exclude;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-login-member { animation: none; }
    .btn-login-member::after { animation: none; }
}

/* ===== PULSE CTA ===== */
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.btn-pulse {
    position: relative;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 2px solid var(--red-primary);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 80px 20px;
    position: relative;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--red-soft);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red-primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--white-50);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(900px 520px at 18% 20%, rgba(239, 68, 68, 0.20), transparent 62%),
        radial-gradient(760px 520px at 82% 30%, rgba(249, 115, 22, 0.08), transparent 66%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(10, 10, 10, 0.75) 70%, rgba(10, 10, 10, 0.92) 100%);
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(10, 10, 10, 0.9) 80%,
        #0A0A0A 100%
    );
    z-index: 1;
}

.hero-red-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-70);
    margin-bottom: 28px;
    animation: fade-in-up 0.8s ease-out;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(36px, 8vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    animation: fade-in-up 0.8s ease-out 0.1s both;
}

.hero h1 .line-2 {
    display: block;
}

.hero-sub {
    font-size: clamp(15px, 2.5vw, 18px);
    color: var(--white-70);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--white);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--white-50);
    margin-top: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-08);
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.navbar-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: cover;
}

.navbar-brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}

.navbar-brand-name {
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.navbar-brand-name span {
    color: var(--red-primary);
}

.navbar-brand-sub {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-50);
}

.navbar-cta {
    padding: 10px 22px;
    font-size: 13px;
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .problem-grid { grid-template-columns: 1fr 1fr; }
}

.problem-card {
    padding: 28px 24px;
    background: var(--white-04);
    border: 1px solid var(--white-08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: var(--white-08);
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.problem-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--red-primary);
}

.problem-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.problem-card p {
    font-size: 13px;
    color: var(--white-50);
    line-height: 1.6;
}

/* ===== SOLUTION / FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    padding: 32px 24px;
    background: var(--black-card);
    border: 1px solid var(--white-08);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--red-primary);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 13px;
    color: var(--white-50);
    line-height: 1.7;
}

/* ===== AI PROCESSING ===== */
.ai-process {
    background: var(--black);
    border-top: 1px solid var(--white-04);
    border-bottom: 1px solid var(--white-04);
}

.ai-terminal {
    max-width: 600px;
    margin: 40px auto 0;
    background: #0C0C0C;
    border: 1px solid var(--white-15);
    border-radius: 16px;
    overflow: hidden;
}

.ai-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--white-04);
    border-bottom: 1px solid var(--white-08);
}

.ai-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ai-terminal-dot.red { background: #EF4444; }
.ai-terminal-dot.yellow { background: #F59E0B; }
.ai-terminal-dot.green { background: #22C55E; }

.ai-terminal-title {
    font-size: 12px;
    color: var(--white-50);
    margin-left: 8px;
}

.ai-terminal-body {
    padding: 24px;
    min-height: 200px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 13px;
}

/* ===== LIVE DEMO GRID (VIDEO + TERMINAL) ===== */
.ai-demo-grid {
    margin-top: 28px;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    align-items: stretch;
    text-align: left;
}

@media (min-width: 900px) {
    .ai-demo-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .ai-video-card,
    .ai-terminal {
        width: 60%;
        margin-inline: auto;
    }

    .ai-terminal-body {
        padding: 20px;
    }
}

.ai-video-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.ai-demo-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    background: #000;
}

.ai-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.ai-line.active {
    opacity: 1;
    transform: translateY(0);
}

.ai-line .ai-prefix {
    color: var(--red-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.ai-line .ai-text {
    color: var(--white-70);
}

.ai-line .ai-text.success {
    color: #22C55E;
    font-weight: 700;
}

.ai-line .ai-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid var(--white-15);
    border-top-color: var(--red-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ai-progress {
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ai-progress.active {
    opacity: 1;
}

.ai-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--white-08);
    border-radius: 4px;
    overflow: hidden;
}

.ai-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red-dark), var(--red-primary));
    border-radius: 4px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--red-glow);
}

.ai-progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 11px;
    color: var(--white-30);
}

/* ===== BEFORE-AFTER ===== */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .before-after-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ===== BEFORE-AFTER TEXT STYLE ===== */
.ba-card {
    border-radius: 20px;
    border: 1px solid var(--white-08);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.ba-card:hover {
    transform: translateY(-4px);
}

.ba-card.before {
    border-color: rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.03);
}

.ba-card.after {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.03);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.06);
}

.ba-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ba-label.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red-primary);
}

.ba-label.good {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

.ba-text-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ba-text-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.6;
}

.ba-text-item.bad {
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.2);
}

.ba-text-item.good {
    color: var(--white-70);
}

.ba-text-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-top: 1px;
}

.ba-text-icon.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red-primary);
}

.ba-text-icon.good {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
    padding: 32px 24px;
    text-align: center;
    background: var(--black-card);
    border: 1px solid var(--white-08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateY(-4px);
}

.benefit-num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(180deg, var(--red-primary), var(--red-darker));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--white-50);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

.testi-card {
    padding: 24px;
    background: var(--black-card);
    border: 1px solid var(--white-08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.testi-card:hover {
    border-color: var(--white-15);
    transform: translateY(-2px);
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
    color: #FBBF24;
}

.testi-text {
    font-size: 14px;
    color: var(--white-70);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white-08);
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
}

.testi-role {
    font-size: 11px;
    color: var(--white-50);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

@media (min-width: 640px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
    padding: 32px 24px;
    background: var(--black-card);
    border: 1px solid var(--white-08);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: var(--red-primary);
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.06), var(--black-card));
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.1);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: linear-gradient(135deg, var(--red-dark), var(--red-darker));
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-original {
    font-size: 14px;
    color: var(--white-30);
    text-decoration: line-through;
}

.pricing-current {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
}

.pricing-current .currency {
    font-size: 18px;
    font-weight: 700;
    vertical-align: super;
}

.pricing-period {
    font-size: 13px;
    color: var(--white-50);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--white-70);
    border-bottom: 1px solid var(--white-04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: #22C55E;
    margin-top: 1px;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

.pricing-save {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    margin-left: 8px;
}

/* ===== URGENCY / COUNTDOWN ===== */
.urgency {
    background: linear-gradient(180deg, var(--black-light), var(--black));
    text-align: center;
}

.countdown-box {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.countdown-item {
    width: 72px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black-card);
    border: 1px solid var(--white-15);
    border-radius: 14px;
}

.countdown-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--red-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 10px;
    color: var(--white-50);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.urgency-cta {
    margin-top: 32px;
}

/* ===== CTA FINAL ===== */
.cta-final {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 20px 140px;
    border-top: 1px solid var(--white-04);
    text-align: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.footer p {
    font-size: 13px;
    color: var(--white-30);
}

.footer a {
    color: var(--red-primary);
    font-weight: 600;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 12px 20px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--white-08);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sticky-cta-text {
    font-size: 14px;
    font-weight: 700;
    display: none;
}

@media (min-width: 640px) {
    .sticky-cta-text { display: block; }
}

.sticky-cta-price {
    color: var(--red-primary);
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

.sticky-cta .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 50;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
    width: 26px;
    height: 26px;
    color: white;
}

/* ===== CHAT BUBBLE ===== */
.chat-bubble {
    position: fixed;
    bottom: 142px;
    right: 20px;
    z-index: 50;
    padding: 10px 18px;
    background: var(--black-card);
    border: 1px solid var(--white-15);
    border-radius: 14px 14px 4px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white-90);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: chat-bounce 3s ease-in-out infinite;
    white-space: nowrap;
}

.chat-bubble:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

@keyframes chat-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== FAKE NOTIFICATION TOAST — Bottom Left ===== */
.notification-toast {
    position: fixed;
    bottom: 82px;
    left: 20px;
    z-index: 60;
    max-width: 340px;
    padding: 14px 18px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--white-15);
    border-radius: 14px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-toast .notif-email {
    font-size: 13px;
    color: var(--white-90);
    font-weight: 600;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    letter-spacing: -0.02em;
}

.notification-toast .notif-action {
    color: var(--white-50);
    font-weight: 400;
}

.notification-toast .notif-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.notification-toast .notif-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

.notification-toast .notif-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #22C55E;
}

.notification-toast .notif-text {
    font-size: 13px;
    color: var(--white-70);
    line-height: 1.4;
}

.notification-toast .notif-text strong {
    color: var(--white);
}

.notification-toast .notif-time {
    font-size: 11px;
    color: var(--white-30);
    margin-top: 6px;
}

/* ===== ORDER PAGE ===== */
.order-page {
    min-height: 100vh;
    padding: 100px 20px 120px;
}

.order-container {
    max-width: 520px;
    margin: 0 auto;
}

.order-form-card {
    background: var(--black-card);
    border: 1px solid var(--white-08);
    border-radius: 20px;
    padding: 32px 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white-70);
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--white-04);
    border: 1px solid var(--white-15);
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: var(--white-30);
}

.form-input:focus,
.form-select:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.error,
.form-select.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    font-size: 12px;
    color: var(--red-primary);
    margin-top: 6px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--black-card);
    color: var(--white);
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 480px) {
    .payment-options { grid-template-columns: repeat(3, 1fr); }
}

.payment-option {
    position: relative;
}

.payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background: var(--white-04);
    border: 1px solid var(--white-15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-option input:checked + label {
    border-color: var(--red-primary);
    background: rgba(239, 68, 68, 0.08);
}

.payment-option label:hover {
    border-color: var(--white-30);
}

.payment-option input:checked + label:hover {
    border-color: var(--red-primary);
}

.payment-option .pay-icon {
    font-size: 24px;
}

.payment-option .pay-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--white-70);
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    justify-content: center;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--white-30);
    margin-top: 16px;
}

/* ===== SUCCESS MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* ===== QRIS + ATM Card (Order Success Modal) ===== */
.qris-block {
    text-align: center;
}

.qris-title {
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--white);
}

.qris-qr-wrap {
    display: flex;
    justify-content: center;
}

.qris-qr {
    background: #ffffff;
    width: 210px;
    height: 210px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
    padding: 10px;
}

.qris-subnote {
    margin-top: 12px;
    font-size: 12px;
    color: var(--white-50);
}

.atm-card {
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, #0f7bb0 0%, #1390c6 55%, #0c6b9f 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 12px 30px rgba(7, 51, 74, 0.35);
}

.atm-card::before,
.atm-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.atm-card::before {
    width: 160px;
    height: 160px;
    right: -50px;
    top: -55px;
    background: rgba(255,255,255,0.09);
}

.atm-card::after {
    width: 130px;
    height: 130px;
    left: -48px;
    bottom: -62px;
    background: rgba(255,255,255,0.06);
}

.atm-bank {
    position: relative;
    z-index: 1;
    text-align: right;
    color: rgba(206, 245, 255, 0.65);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.atm-chip-visual {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    width: 54px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(119, 95, 8, 0.45);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0) 38%),
        linear-gradient(145deg, #f9df61 0%, #dbbd37 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(101, 80, 6, 0.35);
}

.atm-chip-visual::before,
.atm-chip-visual::after {
    content: '';
    position: absolute;
    left: 7px;
    right: 7px;
    border-top: 1px solid rgba(126, 92, 12, 0.55);
    border-bottom: 1px solid rgba(252, 227, 124, 0.35);
}

.atm-chip-visual::before {
    top: 11px;
    height: 8px;
}

.atm-chip-visual::after {
    top: 23px;
    height: 8px;
}

.atm-chip-visual i {
    display: none;
}

.atm-number {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    color: #ccf2ff;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0.07em;
    word-break: break-word;
}

.atm-meta {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.atm-meta-label {
    color: rgba(203, 239, 255, 0.7);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.atm-meta-value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-top: 4px;
}

.copy-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-weight: 900;
    font-size: 12px;
    padding: 9px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.86);
}

.atm-copy-btn {
    min-width: 68px;
}

@media (max-width: 520px) {
    .atm-number {
        font-size: 24px;
    }
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--black-card);
    border: 1px solid var(--white-15);
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 460px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: #22C55E;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 14px;
    color: var(--white-50);
    text-align: center;
    margin-bottom: 24px;
}

.modal-payment {
    background: var(--white-04);
    border: 1px solid var(--white-08);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.modal-payment h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--red-primary);
}

.modal-payment-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--white-04);
}

.modal-payment-row:last-child {
    border-bottom: none;
}

.modal-payment-row .label {
    color: var(--white-50);
}

.modal-payment-row .value {
    font-weight: 700;
    color: var(--white);
}

.modal-payment-row .value.red {
    color: var(--red-primary);
    font-size: 16px;
}

.modal-close-btn {
    width: 100%;
    padding: 14px;
    background: var(--white-08);
    border: 1px solid var(--white-15);
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-close-btn:hover {
    background: var(--white-15);
}

/* ===== LOADING SPINNER ===== */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white-30);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.spinner.show {
    display: inline-block;
}

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.gap-12 { gap: 12px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.w-full { width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 639px) {
    .hero-stats { gap: 20px; }
    .countdown-item { width: 60px; height: 68px; }
    .countdown-num { font-size: 22px; }
    .notification-toast {
        max-width: calc(100vw - 40px);
        left: 12px;
        bottom: 76px;
    }
    .wa-float { bottom: 72px; right: 14px; width: 46px; height: 46px; }
    .chat-bubble { bottom: 128px; right: 14px; font-size: 12px; padding: 8px 14px; }
    .order-form-card { padding: 24px 18px; }
}

/* ========================================
   FLASH SALE CARD — Premium Refinement
   ======================================== */

   .flash-sale-wrapper {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.flash-card {
    position: relative;
    background: linear-gradient(180deg, rgba(239,68,68,0.06) 0%, var(--black-card) 40%);
    border: 1.5px solid rgba(239,68,68,0.25);
    border-radius: 24px;
    padding: 40px 28px 32px;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(239,68,68,0.08),
        0 20px 60px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.flash-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), var(--red-dark), var(--red-primary), transparent);
    border-radius: 2px;
}

.flash-card::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 160px;
    background: radial-gradient(ellipse, rgba(239,68,68,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.flash-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--red-dark), #B91C1C);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(239,68,68,0.4);
}

.flash-badge .flash-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.flash-title {
    font-size: 22px;
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.flash-subtitle {
    font-size: 14px;
    color: var(--white-50);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

/* --- Price Block --- */
.flash-price-block {
    text-align: center;
    padding: 28px 20px;
    background: var(--white-04);
    border: 1px solid var(--white-08);
    border-radius: 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.flash-price-original {
    font-size: 16px;
    color: var(--white-30);
    text-decoration: line-through;
    text-decoration-color: var(--red-primary);
    text-decoration-thickness: 2px;
    margin-bottom: 4px;
}

.flash-price-current {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px var(--red-glow);
}

.flash-price-current .fs-currency {
    font-size: 24px;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
}

.flash-price-label {
    font-size: 13px;
    color: var(--white-50);
    margin-top: 8px;
}

.flash-price-save {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 5px 14px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #22C55E;
}

/* --- Quota Bar --- */
.flash-quota {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.flash-quota-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.flash-quota-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--white-70);
    display: flex;
    align-items: center;
    gap: 6px;
}

.flash-quota-text .fire {
    color: #F97316;
}

.flash-quota-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--red-primary);
}

.flash-quota-bar {
    width: 100%;
    height: 6px;
    background: var(--white-08);
    border-radius: 6px;
    overflow: hidden;
}

.flash-quota-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red-dark), var(--red-primary), #F97316);
    border-radius: 6px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 12px var(--red-glow);
    position: relative;
}

.flash-quota-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
    border-radius: 6px;
    animation: quota-shimmer 2s ease-in-out infinite;
}

@keyframes quota-shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* --- Feature List --- */
.flash-features {
    background: var(--white-04);
    border: 1px solid var(--white-08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.flash-features-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.flash-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--white-70);
    border-bottom: 1px solid var(--white-04);
    line-height: 1.5;
}

.flash-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.flash-feature-item:first-of-type {
    padding-top: 0;
}

.flash-feature-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,0.1);
    border-radius: 6px;
    margin-top: 1px;
}

.flash-feature-check svg {
    color: #22C55E;
}

.flash-feature-highlight {
    color: var(--white);
    font-weight: 600;
}

/* --- CTA --- */
.flash-cta {
    position: relative;
    z-index: 2;
}

.flash-cta .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding: 18px 32px;
    border-radius: 16px;
    letter-spacing: 0.01em;
}

.flash-cta .btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    border: 2px solid var(--red-primary);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

.flash-trust {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--white-30);
    position: relative;
    z-index: 2;
}

.flash-trust-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.flash-trust-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--white-30);
}

.flash-trust-icon svg {
    color: var(--white-50);
}

/* --- Bottom T&C --- */
.flash-tnc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.flash-tnc-item {
    font-size: 12px;
    color: var(--white-50);
    display: flex;
    align-items: center;
    gap: 6px;
}

.flash-tnc-item svg {
    color: var(--red-primary);
    flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .flash-card {
        padding: 32px 20px 24px;
        border-radius: 20px;
    }
    .flash-price-current {
        font-size: 42px;
    }
    .flash-price-current .fs-currency {
        font-size: 20px;
    }
    .flash-feature-item {
        font-size: 13px;
    }
    .flash-tnc {
        gap: 12px;
    }
}

/* ===== PAYMENT OPTIONS — Logo Only (tambahkan di akhir style.css) ===== */

.payment-option .pay-name {
    display: none;
}

.payment-option label {
    padding: 14px 10px;
    min-height: 64px;
    justify-content: center;
}

.payment-option .pay-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: unset;
    width: 100%;
}

/* BCA & OVO — diperbesar */
.payment-option .pay-icon img {
    width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.payment-option input:checked + label .pay-icon img {
    opacity: 1;
}

/* QRIS — background putih hanya mengikuti ukuran logo, tidak full block */
#pay-qris + label .pay-icon img {
    padding: 5px 8px;
    width: 72px;
    height: 40px;
    object-fit: contain;
}

/* ===== HERO BACKGROUND IMAGE (tambahkan di akhir style.css) ===== */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../img/shortclip-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Overlay gelap supaya teks tetap terbaca */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.50) 40%,
        rgba(10, 10, 10, 0.88) 80%,
        #0A0A0A 100%
    );
    z-index: 1;
}