/* ═══════════════════════════════════════════════════
   OPEN POWER ENGINE — DESIGN SYSTEM
   Glass-Liquid Theme / Cyberpunk Minimalism
   ═══════════════════════════════════════════════════ */

/* ── CUSTOM FONT ─────────────────────────────────── */
@font-face {
    font-family: 'Brigends Expanded';
    src: url('assets/BrigendsExpanded.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ── TOKENS ──────────────────────────────────────── */
:root {
    --color-bg:            #000000;
    --color-surface:       #0a0a0a;
    --color-surface-2:     #111111;
    --color-accent:        #FFD700;
    --color-accent-dim:    #b89b00;
    --color-accent-hover:  #FFA500;
    --color-accent-glow:   rgba(255, 215, 0, 0.15);
    --color-text:          #FFFFFF;
    --color-text-muted:    #8a8a8a;
    --color-text-subtle:   #555555;
    --color-success:       #00FF88;
    --color-success-dim:   rgba(0, 255, 136, 0.15);

    --glass-bg:            rgba(12, 12, 12, 0.55);
    --glass-bg-hover:      rgba(18, 18, 18, 0.7);
    --glass-blur:          24px;
    --glass-border:        rgba(255, 215, 0, 0.08);
    --glass-border-hover:  rgba(255, 215, 0, 0.25);
    --glass-shadow:        0 8px 32px rgba(0, 0, 0, 0.4);
    --glass-glow:          0 0 20px rgba(255, 215, 0, 0.06);
    --glass-glow-hover:    0 0 30px rgba(255, 215, 0, 0.12), 0 0 60px rgba(255, 215, 0, 0.04);

    --radius-sm:           8px;
    --radius-md:           16px;
    --radius-lg:           24px;
    --radius-xl:           32px;

    --font-family:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-xs:             0.75rem;
    --font-sm:             0.875rem;
    --font-base:           1rem;
    --font-lg:             1.125rem;
    --font-xl:             1.5rem;
    --font-2xl:            2rem;
    --font-3xl:            3rem;
    --font-4xl:            clamp(2.5rem, 5vw, 4.5rem);

    --ease-out-expo:       cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart:      cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast:     0.2s var(--ease-out-expo);
    --transition-base:     0.4s var(--ease-out-expo);
    --transition-slow:     0.6s var(--ease-out-expo);

    --container-max:       1200px;
    --section-padding:     clamp(80px, 12vh, 140px) clamp(20px, 5vw, 40px);
}


/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img, svg { display: block; }


/* ── LANG TOGGLE ─────────────────────────────────── */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.lang-flag {
    width: 20px;
    height: 12px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
}

.lang-toggle:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--color-accent);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .lang-toggle {
        order: 1;
        margin-right: 4px;
        padding: 5px 10px;
        font-size: 0.65rem;
    }
}


/* ── DOWNLOAD PAGE ─────────────────────────────── */
.dl-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: var(--color-bg);
    position: relative;
}

.dl-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.dl-page-container {
    position: relative;
    background: rgba(14, 14, 14, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.04);
    animation: dlFadeIn 0.6s ease-out;
}

@keyframes dlFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dl-page-icon {
    margin-bottom: 20px;
    color: var(--color-accent);
}

.dl-page-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.dl-page-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.dl-page-input-wrap {
    margin-bottom: 16px;
}

.dl-page-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-align: center;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}

.dl-page-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.12);
}

.dl-page-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.12em;
}

.dl-page-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-accent), #e6a800);
    border: none;
    border-radius: 10px;
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dl-page-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 215, 0, 0.3);
}

.dl-page-btn:disabled {
    opacity: 0.5;
    cursor: wait;
    transform: none;
}

.dl-page-status {
    margin-top: 16px;
    font-size: 0.82rem;
    min-height: 22px;
    transition: color 0.3s;
}

.dl-page-status.success { color: #22c55e; }
.dl-page-status.error { color: #ef4444; }
.dl-page-status.loading { color: var(--color-accent); }

.dl-page-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.74rem;
}

.dl-footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    background: var(--color-bg);
}

@media (max-width: 480px) {
    .dl-page-container {
        padding: 32px 24px;
    }
    .dl-page-title {
        font-size: 1.3rem;
    }
}
/* ── UTILITIES ───────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vh, 80px);
}

.section-tag {
    display: inline-block;
    font-size: var(--font-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(255, 215, 0, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: var(--font-3xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: var(--font-lg);
    color: var(--color-text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ── GLASS CARD ──────────────────────────────────── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow), var(--glass-glow);
    transition: 
        border-color var(--transition-base),
        box-shadow var(--transition-base),
        background var(--transition-base),
        transform var(--transition-base);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow), var(--glass-glow-hover);
    background: var(--glass-bg-hover);
}


/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--color-accent);
    color: #000;
    font-size: var(--font-sm);
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: 
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    background: var(--color-accent-hover);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    color: var(--color-text-muted);
    font-size: var(--font-sm);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}

.btn-ghost:hover {
    color: var(--color-text);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-accent);
    font-size: var(--font-sm);
    font-weight: 600;
    border: 1px solid var(--glass-border-hover);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: 
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        box-shadow var(--transition-fast);
    width: 100%;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}


/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 5vw, 40px);
    transition: 
        background var(--transition-base),
        backdrop-filter var(--transition-base),
        border-color var(--transition-base);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text {
    font-family: 'Brigends Expanded', var(--font-family);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: var(--font-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 10px 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-sm);
    transition: 
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.nav-cta:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: 
        transform var(--transition-fast),
        opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ── MOBILE MENU ─────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-size: var(--font-xl);
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.mobile-link:hover {
    color: var(--color-text);
}

.mobile-cta {
    margin-top: 16px;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--color-accent);
    padding: 14px 40px;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-sm);
}


/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px clamp(20px, 5vw, 40px) 80px;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
}

.hero-title {
    font-size: var(--font-4xl);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: var(--font-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.stat-label {
    font-size: var(--font-xs);
    font-weight: 400;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%      { opacity: 1;   transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════ */
.features-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 50%, var(--color-bg) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-glow), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 215, 0, 0.06);
    padding: 10px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
}

.card-title {
    font-size: var(--font-base);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.card-desc {
    font-size: var(--font-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

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


/* ═══════════════════════════════════════════════════
   STATUS
   ═══════════════════════════════════════════════════ */
.status-section {
    background: var(--color-bg);
}

.status-panel {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-muted);
}

.status-dot--active {
    background: var(--color-success);
    box-shadow: 0 0 12px var(--color-success), 0 0 24px rgba(0, 255, 136, 0.3);
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { box-shadow: 0 0 12px var(--color-success), 0 0 24px rgba(0, 255, 136, 0.3); }
    50%      { box-shadow: 0 0 20px var(--color-success), 0 0 40px rgba(0, 255, 136, 0.4); }
}

.status-text {
    font-size: var(--font-xl);
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-success);
}

.status-description {
    font-size: var(--font-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.status-item-label {
    font-size: var(--font-sm);
    color: var(--color-text-muted);
}

.status-item-value {
    font-size: var(--font-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-item-value--ok {
    color: var(--color-success);
}

.uptime-bar {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.uptime-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-success));
    border-radius: 100px;
    transition: width 1s var(--ease-out-expo);
}


/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
.pricing-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 50%, var(--color-bg) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card--featured {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.03);
}

.pricing-card--featured::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.4), rgba(255, 215, 0, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    background: var(--color-accent);
    padding: 4px 12px;
    border-radius: 100px;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-name {
    display: block;
    font-size: var(--font-base);
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-duration {
    font-size: var(--font-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}

.pricing-currency {
    font-size: var(--font-lg);
    font-weight: 500;
    color: var(--color-text-muted);
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: var(--font-sm);
    color: var(--color-text-muted);
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.4);
}

.pricing-card--featured .pricing-features li::before {
    background: var(--color-accent);
}

.pricing-old-price {
    font-size: var(--font-base);
    font-weight: 500;
    color: var(--color-text-subtle);
    text-decoration: line-through;
    margin-right: 8px;
}

.pricing-badge--discount {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}


/* ═══════════════════════════════════════════════════
   ALL FEATURES GRID
   ═══════════════════════════════════════════════════ */
.allfeatures-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(10,10,10,1) 50%, var(--color-bg) 100%);
}

.af-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.af-card {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    transition: transform 0.35s var(--ease-out-expo),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.af-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 0%, rgba(255,215,0,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.af-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.06);
}

.af-card:hover::before {
    opacity: 1;
}

.af-icon {
    font-size: 2rem;
    line-height: 1;
    filter: grayscale(0.3);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.af-card:hover .af-icon {
    filter: grayscale(0);
    transform: scale(1.15);
}

.af-title {
    font-family: var(--font-heading);
    font-size: var(--font-base);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.af-desc {
    font-size: var(--font-xs);
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.af-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.af-list li {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}

.af-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Stagger reveal for each card */
.af-card.reveal {
    transition-delay: calc(var(--reveal-i, 0) * 60ms);
}

@media (max-width: 1024px) {
    .af-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .af-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .af-card {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .af-grid {
        grid-template-columns: 1fr;
    }
}

/* ── AF CARD POPUP MODAL ─────────────────────────── */
.af-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
    cursor: pointer;
}

.af-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.af-popup-content {
    background: rgba(18, 18, 22, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.35s var(--ease-out-expo), opacity 0.3s ease;
    cursor: default;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(255, 215, 0, 0.04);
}

.af-popup-overlay.active .af-popup-content {
    transform: scale(1);
    opacity: 1;
}

.af-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
    z-index: 2;
}

.af-popup-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.af-popup-content .af-icon {
    font-size: 2.8rem;
    margin-bottom: 4px;
}

.af-popup-content .af-title {
    font-size: 1.35rem;
}

.af-popup-content .af-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.af-popup-content .af-list {
    margin-top: 16px;
    gap: 8px;
}

.af-popup-content .af-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    padding-left: 18px;
    line-height: 1.6;
}

.af-popup-content .af-list li::before {
    font-size: 1rem;
    color: var(--color-accent);
}

/* Cursor pointer on cards */
.af-card {
    cursor: pointer;
}

@media (max-width: 480px) {
    .af-popup-overlay {
        padding: 12px;
    }
    .af-popup-content {
        padding: 28px 20px;
        max-height: 90vh;
    }
    .af-popup-content .af-title {
        font-size: 1.15rem;
    }
}

/* ═══════════════════════════════════════════════════
   SHOWCASE / GALLERY
   ═══════════════════════════════════════════════════ */
.showcase-section {
    background: var(--color-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.showcase-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.showcase-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 10;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.showcase-card:hover .showcase-img-wrap img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-label {
    font-size: var(--font-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.showcase-grid .reveal:nth-child(1) { transition-delay: 0s; }
.showcase-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.showcase-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.showcase-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.showcase-img-wrap {
    cursor: pointer;
}


/* ═══════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.92);
    transition: transform 0.35s var(--ease-out-expo);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.05);
}

.lightbox-caption {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 215, 0, 0.3);
}

/* ═══════════════════════════════════════════════════
   SHOPIER PAYMENT MODAL
   ═══════════════════════════════════════════════════ */
.paytr-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.paytr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.paytr-modal-container {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 520px;
    min-height: 320px;
    max-height: 92vh;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s var(--ease-out-expo);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.04);
}

.paytr-modal.active .paytr-modal-container {
    transform: scale(1) translateY(0);
}

.paytr-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.paytr-modal-title {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.paytr-modal-title::before {
    content: '🔒';
    font-size: 14px;
}

.paytr-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--color-text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.paytr-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-text);
}

/* ── PayTR Form ── */
.paytr-form {
    padding: 28px 24px;
}

.paytr-form-desc {
    color: var(--color-text-muted);
    font-size: var(--font-xs);
    margin: 0 0 20px;
    line-height: 1.5;
}

.paytr-field {
    margin-bottom: 16px;
}

.paytr-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.paytr-field input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: var(--font-sm);
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-sizing: border-box;
}

.paytr-field input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.paytr-field input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.paytr-form-note {
    color: rgba(255, 215, 0, 0.6);
    font-size: 0.75rem;
    margin: 0 0 20px;
    font-style: italic;
}

.paytr-submit {
    width: 100%;
    padding: 14px;
    font-size: var(--font-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
}

.paytr-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.paytr-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1.5;
}
.paytr-terms-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--color-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}
.paytr-terms-check a {
    color: var(--color-accent);
    text-decoration: underline;
}
.paytr-terms-check a:hover {
    color: var(--color-accent-hover);
}

.paytr-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin: 12px 0 0;
    display: none;
}

/* ── PayTR iframe ── */
.paytr-modal iframe {
    flex: 1;
    width: 100%;
    border: none;
    background: #fff;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}


/* ═══════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS — MARQUEE
   ═══════════════════════════════════════════════════ */
.reviews-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 50%, var(--color-bg) 100%);
    overflow: hidden;
}

.reviews-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.trust-stars {
    color: var(--color-accent);
    font-size: var(--font-xl);
    letter-spacing: 2px;
}

.trust-score {
    font-size: var(--font-lg);
    font-weight: 800;
    color: var(--color-text);
}

.trust-count {
    font-size: var(--font-sm);
    color: var(--color-text-muted);
}

/* Marquee wrapper */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-track--reverse {
    animation: marquee-scroll-reverse 45s linear infinite;
}

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

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

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

/* Review Cards */
.review-card {
    flex-shrink: 0;
    width: 340px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xs);
    font-weight: 700;
    color: var(--color-accent);
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-size: var(--font-sm);
    font-weight: 600;
}

.review-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-accent-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.review-stars {
    color: var(--color-accent);
    font-size: var(--font-sm);
    letter-spacing: 2px;
}

.review-text {
    font-size: var(--font-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 50%, var(--color-bg) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
}

.contact-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-card-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-card-value {
    color: var(--color-text);
    font-size: var(--font-sm);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-card-value:hover {
    color: var(--color-accent);
}

/* ── Contact Form ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .contact-form-row { grid-template-columns: 1fr; }
}

.contact-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: var(--font-sm);
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-sizing: border-box;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.contact-submit {
    align-self: flex-start;
    padding: 14px 40px;
    font-size: var(--font-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-status {
    font-size: 0.85rem;
    margin: 0;
    min-height: 1.2em;
}

.contact-status.success { color: #22c55e; }
.contact-status.error { color: #ef4444; }


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    padding: 32px clamp(20px, 5vw, 40px);
    border-top: 1px solid rgba(255, 215, 0, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: var(--font-xs);
    color: var(--color-text-subtle);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-link {
    font-size: var(--font-xs);
    color: var(--color-text-subtle);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-text-muted);
}

.footer-link svg {
    display: inline-block;
    vertical-align: middle;
}


/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid .reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.pricing-grid .reveal:nth-child(1) { transition-delay: 0s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.24s; }


/* ═══════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════ */
.faq-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(8,8,12,1) 100%);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(255, 215, 0, 0.2);
}

.faq-question {
    padding: 22px 28px;
    font-family: var(--font-heading);
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '›';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    transform: rotate(90deg);
    transition: transform 0.3s var(--ease-out-expo);
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    transform: rotate(270deg);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-answer {
    padding: 0 28px 22px;
    font-size: var(--font-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    animation: faqFadeIn 0.3s ease forwards;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: var(--font-sm);
    }
    .faq-answer {
        padding: 0 20px 18px;
        font-size: var(--font-xs);
    }
}


/* ═══════════════════════════════════════════════════
   FOOTER SEO TEXT
   ═══════════════════════════════════════════════════ */
.footer-seo-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    padding-top: 10px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .af-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: var(--font-xl);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-whyus-wrapper {
        padding: 0 16px;
    }

    .feature-card {
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }

    .card-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .status-panel {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }


    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        width: 280px;
    }

    .reviews-trust {
        flex-wrap: wrap;
        gap: 8px;
    }

    .af-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .af-badge {
        position: static;
        display: inline-block;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .logo-text {
        font-size: 0.72rem !important;
        letter-spacing: 0.06em !important;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .pricing-value {
        font-size: 2.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }

    .footer-link {
        font-size: 0.7rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .btn-ghost {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .nav-container {
        height: 60px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .lang-toggle {
        padding: 4px 8px;
        font-size: 0.6rem;
        gap: 4px;
    }

    .lang-flag {
        width: 16px;
        height: 9px;
    }
}


/* ── REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}


/* ═══════════════════════════════════════════════════
   WHY US — CTA BANNER
   ═══════════════════════════════════════════════════ */
.whyus-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
    background: rgba(12, 12, 12, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.whyus-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.whyus-banner:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.06);
}

.whyus-banner:hover::before {
    opacity: 1;
}

.whyus-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.whyus-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.whyus-banner-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.whyus-banner-desc {
    font-size: 0.85rem;
    color: #8a8a8a;
    line-height: 1.5;
}

.whyus-banner-arrow {
    font-size: 1.5rem;
    color: #FFD700;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.whyus-banner:hover .whyus-banner-arrow {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .whyus-banner {
        padding: 24px 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .whyus-banner-content {
        flex-direction: column;
    }
    .whyus-banner-arrow {
        transform: none;
        margin-top: 8px;
    }
    .whyus-banner:hover .whyus-banner-arrow {
        transform: translateX(6px);
    }
}

.whyus-banner.inline-banner {
    background: rgba(26, 22, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
    animation: pulseGold 3s infinite alternate;
    width: 100%;
    max-width: 800px;
}

.hero-whyus-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.whyus-banner.inline-banner .whyus-banner-icon {
    font-size: 2.5rem;
}

.whyus-banner.inline-banner .whyus-banner-title {
    font-size: 1.3rem;
    color: #FFD700;
}

.whyus-banner.inline-banner .whyus-banner-desc {
    font-size: 0.95rem;
    color: #e0e0e0;
}

.whyus-banner.inline-banner:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.07);
}

.whyus-banner.inline-banner .whyus-banner-arrow {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .whyus-banner.inline-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px 16px;
        animation: none;
        transform: none !important;
    }
    .whyus-banner.inline-banner .whyus-banner-content {
        flex-direction: column;
        gap: 12px;
    }
    .whyus-banner.inline-banner .whyus-banner-arrow {
        transform: none !important;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        color: #000;
        padding: 10px 24px;
        border-radius: 8px;
        margin-top: 4px;
    }
    .whyus-banner.inline-banner:hover {
        transform: none !important;
    }
    .whyus-banner.inline-banner .whyus-banner-title {
        font-size: 1.05rem !important;
    }
    .whyus-banner.inline-banner .whyus-banner-desc {
        font-size: 0.8rem !important;
    }
    .whyus-banner.inline-banner .whyus-banner-icon {
        font-size: 2rem !important;
    }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.05); border-color: rgba(255, 215, 0, 0.15); }
    100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.15); border-color: rgba(255, 215, 0, 0.35); }
}

/* ═══════════════════════════════════════════════════
   CURRENCY SELECTOR
   ═══════════════════════════════════════════════════ */
.currency-selector {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.currency-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.currency-btn:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--color-text);
    border-color: rgba(255, 215, 0, 0.3);
}

.currency-btn.active {
    background: rgba(255, 215, 0, 0.12);
    color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.1);
}

/* ═══════════════════════════════════════════════════
   DISCORD COMMUNITY SECTION
   ═══════════════════════════════════════════════════ */
.discord-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(88, 101, 242, 0.06) 0%, transparent 70%);
}

.discord-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.discord-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    margin-bottom: 24px;
    animation: discordFloat 3s ease-in-out infinite;
}

.discord-icon {
    color: #5865F2;
    width: 40px;
    height: 40px;
}

@keyframes discordFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.discord-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-text);
    margin: 16px 0;
}

.discord-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.discord-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.discord-feat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.discord-feat:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
    color: var(--color-text);
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #5865F2;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: discordGlow 2s ease-in-out infinite alternate;
}

.discord-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, #5865F2, #FFD700, #5865F2);
    background-size: 300% 300%;
    animation: discordBorderGlow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.discord-btn:hover::before {
    opacity: 1;
}

.discord-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 40px rgba(88, 101, 242, 0.4), 0 0 60px rgba(88, 101, 242, 0.15);
    background: #4752c4;
}

@keyframes discordGlow {
    0% { box-shadow: 0 4px 20px rgba(88, 101, 242, 0.2), 0 0 40px rgba(88, 101, 242, 0.05); }
    100% { box-shadow: 0 4px 30px rgba(88, 101, 242, 0.35), 0 0 60px rgba(88, 101, 242, 0.1); }
}

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

.discord-online {
    margin-top: 20px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.discord-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43b581;
    display: inline-block;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #43b581; }
    50% { opacity: 0.5; box-shadow: 0 0 8px #43b581; }
}

@media (max-width: 768px) {
    .discord-section { padding: 60px 16px; }
    .discord-features { gap: 8px; }
    .discord-feat { font-size: 0.78rem; padding: 6px 14px; }
    .discord-btn { padding: 14px 30px; font-size: 0.95rem; }
    .currency-selector { gap: 6px; }
    .currency-btn { padding: 6px 14px; font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════════
   CRYPTO LINK IN PRICING
   ═══════════════════════════════════════════════════ */
.btn-crypto-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 20px;
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.06);
    color: #F5A623;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: cryptoBtnPulse 3s ease-in-out infinite alternate;
}
.btn-crypto-link:hover {
    background: rgba(245, 166, 35, 0.15);
    border-color: #F5A623;
    color: #FFD700;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
    transform: translateY(-1px);
}
@keyframes cryptoBtnPulse {
    0% { box-shadow: 0 0 0 rgba(245, 166, 35, 0); }
    100% { box-shadow: 0 0 12px rgba(245, 166, 35, 0.08); }
}


/* ═══════════════════════════════════════════════════
   GLOBAL PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════════ */

/* ── Scroll Progress Bar ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), #ff8c00, var(--color-accent));
    background-size: 200% 100%;
    animation: progressShimmer 3s ease infinite;
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
    pointer-events: none;
}

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

/* ── Back to Top Button ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.18);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(255, 215, 0, 0.18);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.12);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .back-to-top {
        bottom: 18px;
        right: 18px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}


/* ═══════════════════════════════════════════════════
   AMBIENT PARTICLES (Global)
   Pure CSS · Auto-hidden on mobile · Zero JS
   ═══════════════════════════════════════════════════ */

@keyframes ambientDrift {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    8%   { opacity: 0.6; }
    85%  { opacity: 0.4; }
    100% { transform: translateY(-110vh) translateX(25px); opacity: 0; }
}

@keyframes ambientPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(1.15); }
}

.ambient-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.ambient-particles span {
    position: absolute;
    bottom: -10px;
    width: 2px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: ambientDrift linear infinite;
}

/* 12 particles — varied positions, speeds, sizes */
.ambient-particles span:nth-child(1)  { left: 5%;  animation-duration: 10s; animation-delay: 0s; }
.ambient-particles span:nth-child(2)  { left: 14%; animation-duration: 12s; animation-delay: 1s;  width: 3px; height: 3px; }
.ambient-particles span:nth-child(3)  { left: 23%; animation-duration: 9s;  animation-delay: 3s; }
.ambient-particles span:nth-child(4)  { left: 32%; animation-duration: 14s; animation-delay: 0.5s; width: 1.5px; height: 1.5px; }
.ambient-particles span:nth-child(5)  { left: 41%; animation-duration: 11s; animation-delay: 5s;  width: 3px; height: 3px; }
.ambient-particles span:nth-child(6)  { left: 50%; animation-duration: 8s;  animation-delay: 2s; }
.ambient-particles span:nth-child(7)  { left: 59%; animation-duration: 13s; animation-delay: 4s;  width: 2.5px; height: 2.5px; }
.ambient-particles span:nth-child(8)  { left: 68%; animation-duration: 10s; animation-delay: 6s; }
.ambient-particles span:nth-child(9)  { left: 77%; animation-duration: 9s;  animation-delay: 1.5s; width: 3px; height: 3px; }
.ambient-particles span:nth-child(10) { left: 86%; animation-duration: 12s; animation-delay: 3.5s; }
.ambient-particles span:nth-child(11) { left: 93%; animation-duration: 7s;  animation-delay: 7s;  width: 2.5px; height: 2.5px; }
.ambient-particles span:nth-child(12) { left: 3%;  animation-duration: 11s; animation-delay: 8s;  width: 1.5px; height: 1.5px; }

/* ── Glow Orb (soft gold radiance) ── */
.ambient-glow {
    position: fixed;
    top: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 2;
    animation: ambientPulse 8s ease-in-out infinite;
}

/* ── Mobile: hide particles for performance ── */
@media (max-width: 768px) {
    .ambient-particles,
    .ambient-glow {
        display: none;
    }
}

