/* ============================================
   WOWPrezent – Mobile-First Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --color-primary: #6C3CE1;
    --color-primary-light: #8B5CF6;
    --color-primary-dark: #5521C3;
    --color-primary-50: #F3EEFF;
    --color-primary-100: #E8DEFF;
    --color-primary-200: #D0BCFF;

    --color-secondary: #EC4899;
    --color-accent: #FBBF24;

    --color-bg: #FAFAFA;
    --color-bg-alt: #FFFFFF;
    --color-bg-dark: #0F0A1E;

    --color-text: #1A1135;
    --color-text-secondary: #64607A;
    --color-text-muted: #9B96A8;
    --color-text-inverse: #FFFFFF;

    --color-border: #E8E5F0;
    --color-border-light: #F0EDF5;

    --color-success: #22C55E;
    --color-error: #EF4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6C3CE1 0%, #EC4899 100%);
    --gradient-hero: linear-gradient(160deg, #0F0A1E 0%, #1E1145 40%, #2D1B69 70%, #6C3CE1 100%);
    --gradient-card: linear-gradient(180deg, rgba(108, 60, 225, 0.05) 0%, rgba(108, 60, 225, 0) 100%);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 10, 30, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 10, 30, 0.08);
    --shadow-lg: 0 8px 30px rgba(15, 10, 30, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 10, 30, 0.15);
    --shadow-glow: 0 0 40px rgba(108, 60, 225, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

button, a, [onclick], input, textarea, select { touch-action: manipulation; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
    background-color: var(--color-bg-dark);
    overscroll-behavior: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide native scrollbars on desktop (replaced by custom JS scrollbar) */
@media (min-width: 1024px) {
    * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    ::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}

/* Show thin styled scrollbars on mobile/tablet */
@media (max-width: 1023px) {
    * {
        scrollbar-width: thin;
        scrollbar-color: rgba(108, 60, 225, 0.35) transparent;
    }

    ::-webkit-scrollbar {
        width: 4px !important;
        height: 4px !important;
        background: transparent !important;
    }

    ::-webkit-scrollbar-track {
        background: transparent !important;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(108, 60, 225, 0.35) !important;
        border-radius: 100px !important;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(108, 60, 225, 0.6) !important;
    }
}

/* ---- Custom scrollbar (JS-driven, desktop only) ---- */
.cscroll {
    position: fixed;
    top: 0;
    right: 0;
    width: 14px;
    height: 100vh;
    z-index: 9999;
    padding: 3px;
    box-sizing: border-box;
}

/* Modal variant: fixed, positioned by JS over the modal */
.cscroll--modal {
    position: fixed;
    height: auto;
    z-index: 2010;
}

.cscroll-track {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 100px;
}

.cscroll-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 36px;
    background: rgba(108, 60, 225, 0.45);
    border-radius: 100px;
    will-change: transform;
    transition: background 0.15s ease;
    cursor: grab !important;
}

.cscroll:hover .cscroll-thumb,
.cscroll-thumb.active {
    background: rgba(108, 60, 225, 0.6);
}

.cscroll-thumb.active,
.cscroll-thumb:active {
    cursor: grabbing !important;
}

.cscroll-thumb:hover {
    background: rgba(108, 60, 225, 0.55);
}

.cscroll-track {
    cursor: grab !important;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overscroll-behavior: none;
}

@media (min-width: 1024px) {
    *, body, input, select, textarea, .nav-logo {
        cursor: url('./img/cursor-sm.png') 4 4, auto !important;
    }
    
    a, button, .btn {
        cursor: url('./img/cursor-sm.png') 4 4, pointer !important;
    }

    .cscroll-thumb {
        cursor: url('./img/palm-sm.png') 16 16, grab !important;
    }

    .cscroll-thumb.active,
    .cscroll-thumb:active,
    .cscroll-dragging .cscroll-thumb {
        cursor: url('./img/hold-sm.png') 16 16, grabbing !important;
    }

    .cscroll-track {
        cursor: url('./img/palm-sm.png') 16 16, grab !important;
    }

    .cscroll-dragging,
    .cscroll-dragging * {
        cursor: url('./img/hold-sm.png') 16 16, grabbing !important;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* Utility */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    line-height: 1.4;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    box-shadow: 0 4px 15px rgba(108, 60, 225, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 60, 225, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    color: var(--color-text-inverse);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-white {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}


/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-5) 0;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    will-change: background, backdrop-filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.navbar.scrolled {
    background: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    padding: var(--space-4) 0; /* Slightly larger scrolled padding */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    position: relative;
    min-height: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: var(--text-xl);
    font-weight: 800;
    z-index: 1001;
    transform: translateX(0) scale(1);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.logo-wow {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-prezent {
    color: var(--color-text-inverse);
}

.navbar.scrolled .nav-logo {
    transform: translateX(calc(50vw - var(--space-5) - 50%)) scale(0.85);
}

/* Nav toggle always right */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    z-index: 1001;
    position: absolute;
    right: var(--space-5);
    top: 50%;
    transform: translateY(-50%);
}

.navbar.scrolled .nav-toggle {
    position: absolute;
    right: var(--space-5);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-inverse);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
    transform-origin: center;
    will-change: transform;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    transition: right var(--transition-slow);
    z-index: 1000;
}

.nav-menu.open {
    right: 0;
}

.nav-link {
    color: var(--color-text-inverse);
    font-size: var(--text-xl);
    font-weight: 600;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link--help {
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-body);
    opacity: 0.85;
    transition: opacity var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.nav-link--help:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link--cta {
    background: var(--gradient-primary);
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-full);
    opacity: 1;
}


/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: var(--space-24) 0 var(--space-16);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(108, 60, 225, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 20% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--color-text-inverse);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease forwards;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}
.hero-badge:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-5);
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    margin-bottom: var(--space-10);
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero-trust-stars {
    display: flex;
    gap: 2px;
}

.hero-trust-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.hero-trust-text strong {
    color: rgba(255, 255, 255, 0.9);
}

.hero-about-link {
    display: inline-block;
    margin-top: var(--space-2);
    margin-bottom: var(--space-5);
    font-size: var(--text-xs);
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
    -webkit-font-smoothing: antialiased;
}

.hero-about-link:hover {
    opacity: 0.75;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}


/* ========================================
   CHOOSE BANNER
   ======================================== */
.choose-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    width: fit-content;
    margin: 0 auto var(--space-10);
    box-shadow: 0 4px 20px rgba(108, 60, 225, 0.3);
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    visibility: hidden;
}

.choose-banner.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
}

.choose-banner.hiding {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    pointer-events: none;
    visibility: visible;
}

.choose-banner-arrow {
    animation: chooseBounce 1.5s ease infinite;
}

@keyframes chooseBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}


/* ========================================
   SECTIONS COMMON
   ======================================== */
.section {
    padding: var(--space-16) 0;
    contain: layout style;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-4);
    background: var(--color-primary-50);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.section-desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ========================================
   PRODUCTS
   ======================================== */
.section-products {
    background: var(--color-bg);
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.product-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    contain: layout style;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.product-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: var(--shadow-lg);
}

@media (hover: none) {
    .product-card {
        transform: translateY(-2px) translateZ(0);
        box-shadow: var(--shadow-lg);
    }
}

.product-card--featured {
    border-color: var(--color-primary-200);
    box-shadow: 0 0 0 1px var(--color-primary-200), var(--shadow-md);
}

.product-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.product-card-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) var(--space-6) 0;
}

.product-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon--website {
    background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
    color: var(--color-primary);
}

.product-icon--balloon {
    background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
    color: var(--color-secondary);
}

.product-icon--bundle {
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
    color: #4F46E5;
}

.product-icon--song {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #D97706;
}

.product-badge {
    padding: var(--space-1) var(--space-3);
    background: var(--color-primary-50);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
}

.product-badge--gold {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
}

.product-card-body {
    padding: var(--space-5) var(--space-6) var(--space-6);
}

.product-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.product-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-text);
    font-weight: 500;
}

.product-features li svg {
    flex-shrink: 0;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border-light);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
}

.price-from {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: 500;
}

.price-amount {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.price-currency {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-secondary);
}


/* ========================================
   STEPS
   ======================================== */
.section-steps {
    background: var(--color-bg-alt);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-xl);
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    position: relative;
}

.step-number {
    font-size: var(--text-5xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    line-height: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--color-primary-50);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.step-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}


/* ========================================
   REVIEWS
   ======================================== */
.section-reviews {
    background: var(--color-bg);
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: flex-start;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.review-card {
    flex: 0 0 100%;
    width: 100%;
    padding: var(--space-5) var(--space-4);
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-sizing: border-box;
}

.review-stars {
    color: var(--color-accent);
    font-size: var(--text-base);
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
}

.review-text {
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.review-product {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.reviews-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.reviews-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-50);
}

.reviews-dots {
    display: flex;
    gap: var(--space-2);
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--color-border);
    transition: background var(--transition-base), width var(--transition-base);
    cursor: pointer;
    will-change: width;
}

.reviews-dot.active {
    background: var(--color-primary);
    width: 24px;
}


/* ========================================
   FAQ
   ======================================== */
.section-faq {
    background: var(--color-bg-alt);
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item[open] {
    border-color: var(--color-primary-200);
    box-shadow: 0 0 0 1px var(--color-primary-100);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-5) var(--space-5);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    gap: var(--space-4);
    line-height: 1.5;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 var(--space-5) var(--space-5);
}

.faq-answer p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--color-primary-light);
    font-weight: 600;
}


/* ========================================
   CTA
   ======================================== */
.section-cta {
    background: var(--color-bg);
    padding: var(--space-8) 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}

.cta-card {
    position: relative;
    background: var(--gradient-hero);
    border-radius: var(--radius-2xl);
    padding: var(--space-12) var(--space-6);
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.cta-desc {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-blob--1 {
    width: 200px;
    height: 200px;
    background: rgba(236, 72, 153, 0.3);
    top: -50px;
    right: -50px;
}

.cta-blob--2 {
    width: 150px;
    height: 150px;
    background: rgba(108, 60, 225, 0.4);
    bottom: -30px;
    left: -30px;
}


/* ========================================
   CTA MESSAGE PANEL (Desktop slide-out)
   ======================================== */
.cta-msg-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.cta-msg-panel.open {
    max-height: 500px;
    margin-top: var(--space-8);
}

.cta-msg-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 420px;
    margin: 0 auto;
}

.cta-msg-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-inverse);
    background: rgba(255, 255, 255, 0.08);
    transition: border-color var(--transition-fast), background var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cta-msg-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-msg-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.cta-msg-textarea {
    resize: vertical;
    min-height: 80px;
}

.cta-msg-send {
    width: 100%;
}

.cta-msg-success {
    display: none;
    text-align: center;
    padding: var(--space-6) var(--space-4);
}

.cta-msg-success.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.cta-msg-success p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
    font-weight: 600;
}

/* Hide desktop panel on mobile */
@media (max-width: 1023px) {
    .cta-msg-panel {
        display: none;
    }
}

/* Hide mobile sheet trigger behavior on desktop */
@media (min-width: 1024px) {
}


/* ========================================
   MESSAGE OVERLAY
   ======================================== */
.msg-overlay-content {
    padding: 0 var(--space-4) var(--space-4);
}

.msg-overlay-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.msg-overlay-success {
    display: none;
    text-align: center;
    padding: var(--space-8) 0;
}

.msg-overlay-success.show {
    display: block;
}

.msg-overlay-success p {
    margin-top: var(--space-4);
    font-size: var(--text-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}


/* ========================================
   SEO CONTENT SECTION
   ======================================== */
.section-seo {
    background: var(--color-bg-dark);
    padding: var(--space-12) 0;
    border-top: 1px solid rgba(108, 60, 225, 0.1);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    margin-bottom: var(--space-10);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.seo-article h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-3);
}

.seo-article p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

.seo-article p strong {
    color: rgba(255, 255, 255, 0.7);
}

.seo-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    border: 1px solid rgba(108, 60, 225, 0.12);
}

.seo-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: var(--space-8);
}

.seo-bottom h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-3);
}

.seo-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

.seo-bottom p strong {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ========================================
   BLOG
   ======================================== */

/* Blog grid — listing page */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(108, 60, 225, 0.15);
    border-color: var(--color-primary);
}

.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-bottom: 1px solid var(--color-border-light);
    transition: background 0.3s ease;
}

.blog-card:hover .blog-card-icon {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.14) 0%, rgba(236, 72, 153, 0.14) 100%);
}

.blog-card-icon svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-icon svg {
    transform: scale(1.12);
}

.blog-card-body {
    padding: var(--space-5) var(--space-6) var(--space-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: var(--space-4);
}

.blog-card-cta {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-cta {
    color: var(--color-primary-light, #9b72ff);
}

/* Blog article page */
.blog-article {
    max-width: 760px;
    padding-top: var(--space-4);
}

.blog-breadcrumb {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-article-header {
    margin-bottom: var(--space-8);
}

.blog-article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.blog-article-lead {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.blog-article-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-8);
    border: 1px solid var(--color-border);
}

.blog-article-body {
    font-size: var(--text-base);
    line-height: 1.85;
    color: var(--color-text-secondary);
}

.blog-article-body h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--color-text);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.blog-article-body h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
}

.blog-article-body p {
    margin-bottom: var(--space-4);
}

.blog-article-body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-article-body a:hover {
    color: var(--color-primary-light, #9b72ff);
}

.blog-article-body ul,
.blog-article-body ol {
    margin: var(--space-4) 0 var(--space-6);
    padding-left: var(--space-6);
}

.blog-article-body li {
    margin-bottom: var(--space-2);
}

.blog-article-body strong {
    color: var(--color-text);
}

/* Blog table */
.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0 var(--space-8);
    font-size: var(--text-sm);
}

.blog-table thead th {
    text-align: left;
    padding: var(--space-3) var(--space-4);
    background: rgba(108, 60, 225, 0.1);
    color: var(--color-text);
    font-weight: 600;
    border-bottom: 2px solid var(--color-border);
}

.blog-table tbody td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.blog-table tbody tr:hover {
    background: rgba(108, 60, 225, 0.04);
}

/* Blog CTA box */
.blog-cta-box {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.12), rgba(236, 72, 153, 0.08));
    border: 1px solid rgba(108, 60, 225, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    margin: var(--space-10) 0;
}

.blog-cta-box h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-3);
    margin-top: 0;
}

.blog-cta-box p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-5);
}

/* Blog related articles */
.blog-related {
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
}

.blog-related h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.blog-related-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.blog-related-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.blog-related-links a:hover {
    text-decoration: underline;
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-bg-dark);
    padding: var(--space-12) 0 var(--space-8);
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo-prezent {
    color: var(--color-text-inverse);
}

.footer-desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-top: var(--space-4);
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-2);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-text-inverse);
}

.footer-bottom {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

/* Social media links */
.social-links {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
}

.social-links--footer {
    margin-top: var(--space-5);
}

.social-links--menu {
    gap: var(--space-5);
}

/* Regulamin / Privacy overlay content */
.regulamin-modal {
    max-width: 720px;
}

.regulamin-modal .preview-header {
    position: relative;
    padding-bottom: var(--space-6);
    background: linear-gradient(180deg, rgba(108, 60, 225, 0.12) 0%, transparent 100%);
    border-bottom: 1px solid rgba(108, 60, 225, 0.15);
}

.regulamin-modal .preview-title {
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #FFFFFF 0%, #D0BCFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.regulamin-modal .preview-subtitle {
    margin-top: var(--space-2);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.regulamin-content {
    padding: var(--space-5) var(--space-5);
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--text-sm);
    line-height: 1.8;
    counter-reset: section;
}

.regulamin-content h4 {
    counter-increment: section;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-inverse);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    padding: var(--space-3) var(--space-4);
    background: rgba(108, 60, 225, 0.08);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    letter-spacing: -0.01em;
}

.regulamin-content h4:first-child {
    margin-top: 0;
}

.regulamin-content ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.regulamin-content ol > li {
    counter-increment: item;
    position: relative;
    padding-left: calc(var(--space-6) + var(--space-2));
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.regulamin-content ol > li:last-child {
    border-bottom: none;
}

.regulamin-content ol > li::before {
    content: counter(item) ".";
    position: absolute;
    left: var(--space-1);
    top: var(--space-1);
    color: var(--color-primary-light);
    font-weight: 700;
    font-size: var(--text-sm);
    min-width: 1.5em;
}

.regulamin-content ul {
    list-style: none;
    padding-left: var(--space-4);
    margin-top: var(--space-3);
    margin-bottom: var(--space-1);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    border-left: 2px solid rgba(108, 60, 225, 0.15);
}

.regulamin-content ul > li {
    position: relative;
    padding-left: var(--space-4);
}

.regulamin-content ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.5;
}

.regulamin-content strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.regulamin-content a {
    color: var(--color-primary-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    transition: border-color 0.2s, color 0.2s;
}

.regulamin-content a:hover {
    color: var(--color-primary-200);
    border-bottom-color: var(--color-primary-200);
}

/* About Us overlay */
.about-content {
    padding: var(--space-4) var(--space-4) var(--space-2);
}

.about-intro {
    margin-bottom: var(--space-6);
}

.about-lead {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.about-lead strong {
    color: var(--color-primary-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.about-card {
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.about-card:hover {
    border-color: rgba(108, 60, 225, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 60, 225, 0.08);
}

.about-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.08) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-color: rgba(108, 60, 225, 0.15);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
}

.about-card h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-2);
}

.about-card p {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    -webkit-font-smoothing: antialiased;
}

.about-card p strong {
    color: var(--color-primary-light);
    font-weight: 600;
}

.about-bottom {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-5);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.06) 0%, rgba(108, 60, 225, 0.06) 100%);
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: var(--radius-xl);
}

.about-bottom-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-bottom-text {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    -webkit-font-smoothing: antialiased;
}

.about-bottom-text strong {
    color: var(--color-primary-light);
    font-weight: 600;
}

@media (max-width: 540px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-card-featured {
        grid-column: auto;
    }
}


/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px) translateZ(0);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }


/* ========================================
   RESPONSIVE - Tablet (640px+)
   ======================================== */
@media (min-width: 640px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }

    .step-card {
        padding: var(--space-6) var(--space-4);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}


/* ========================================
   RESPONSIVE - Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        gap: var(--space-6);
    }

    /* On desktop, keep normal layout even when scrolled */
    .nav-container {
        height: auto;
        justify-content: space-between;
    }
    
    .nav-logo, 
    .navbar.scrolled .nav-logo {
        transform: none;
        transform-origin: left center;
    }

    .nav-menu {
        gap: var(--space-8);
        align-items: center;
    }

    .nav-link {
        font-size: var(--text-sm);
    }

    .social-links--menu {
        gap: var(--space-3);
    }

    .social-links--menu .social-link {
        width: 32px;
        height: 32px;
    }

    .social-links--menu .social-link svg {
        width: 16px;
        height: 16px;
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
    }

    .section {
        padding: var(--space-24) 0;
    }

    .section-title {
        font-size: var(--text-4xl);
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .cta-card {
        padding: var(--space-20) var(--space-12);
    }

    .cta-title {
        font-size: var(--text-3xl);
    }

    .review-card {
        padding: var(--space-10) var(--space-8);
    }
}


/* ========================================
   Product actions & Preview button
   ======================================== */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: stretch;
}

.btn-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(108, 60, 225, 0.08);
    border: 1.5px solid rgba(108, 60, 225, 0.35);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    padding: var(--space-3) var(--space-5);
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    animation: previewPulse 2.8s ease-in-out infinite;
}

@keyframes previewPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(108, 60, 225, 0); }
    50% { box-shadow: 0 0 12px 2px rgba(108, 60, 225, 0.18); }
}

.btn-preview:hover {
    background: rgba(108, 60, 225, 0.14);
    border-color: rgba(108, 60, 225, 0.6);
    color: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(108, 60, 225, 0.2);
    animation: none;
}

.btn-preview:active {
    transform: translateY(0) scale(0.98);
}

.btn-preview svg {
    flex-shrink: 0;
}


/* ========================================
   Preview Modal Overlay
   ======================================== */
.preview-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 6, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0.4s;
    overscroll-behavior: contain;
    will-change: opacity;
}

.preview-overlay.open {
    opacity: 1;
    visibility: visible;
}

.preview-modal {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
                opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    opacity: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
    /* Hide scrollbar on mobile (touch scroll) */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.preview-modal::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
}

.preview-overlay.open .preview-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.preview-close {
    position: fixed;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 2010;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.preview-close:hover,
.preview-close:active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-text);
    transform: scale(1.08);
}


/* ========================================
   Preview Header
   ======================================== */
.preview-header {
    padding: var(--space-8) var(--space-5) var(--space-4);
    text-align: center;
}

.preview-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--space-1);
    -webkit-font-smoothing: antialiased;
}

.preview-subtitle {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    -webkit-font-smoothing: antialiased;
}


/* ========================================
   Preview Gallery
   ======================================== */
.preview-gallery {
    padding: 0 var(--space-5) var(--space-4);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    align-content: start;
}

.preview-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 100%;
    color: rgba(255, 255, 255, 0.2);
    font-size: var(--text-sm);
}

.preview-gallery-placeholder svg {
    opacity: 0.4;
}


/* ========================================
   Preview – Live Example (iframe)
   ======================================== */
.preview-examples {
    padding: 0 var(--space-5) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

/* --- Step 1: Pick --- */
.examples-pick {
    animation: stepFadeIn 0.35s ease both;
}

.examples-pick.fade-out {
    animation: stepFadeOut 0.25s ease both;
    pointer-events: none;
}

.examples-pick-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 var(--space-2);
    -webkit-font-smoothing: antialiased;
}

.examples-pick-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    width: 100%;
}

.example-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    cursor: pointer;
    transition: background 0.2s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    -webkit-tap-highlight-color: transparent;
}

.example-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(108, 60, 225, 0.4);
    box-shadow: 0 4px 20px rgba(108, 60, 225, 0.15);
}

.example-card:active {
    transform: scale(0.98);
}

.example-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.example-card-body {
    flex: 1;
    min-width: 0;
}

.example-card-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    -webkit-font-smoothing: antialiased;
}

.example-card-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.45);
    -webkit-font-smoothing: antialiased;
}

.example-card-arrow {
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.example-card:hover .example-card-arrow {
    color: var(--color-primary);
    transform: translateX(3px);
}

/* Device badges on example cards */
.example-device-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-top: 6px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.example-device-badge svg {
    flex-shrink: 0;
}

.example-device-badge--all {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.example-device-badge--desktop {
    background: rgba(108, 60, 225, 0.12);
    color: #a78bfa;
    border: 1px solid rgba(108, 60, 225, 0.25);
}

/* --- Step 2: Viewer --- */
.examples-viewer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    width: 100%;
    height: 100%;
    min-height: 0;
    opacity: 0;
    transform: translateY(12px);
    animation: viewerFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.examples-viewer.fade-out {
    animation: stepFadeOut 0.25s ease both;
    pointer-events: none;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes stepFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-10px); }
}

.examples-viewer .viewer-phone-col {
    align-self: center;
}

/* Viewer top bar: back button + logo row */
.viewer-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo in viewer */
.viewer-logo {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 800;
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
}

.viewer-logo .logo-wow {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.viewer-logo .logo-prezent {
    color: #fff;
}

/* Mobile: hide top logo, show bottom logo */
.viewer-logo--top {
    display: none;
}

.viewer-logo--bottom {
    display: block;
}

/* Logo area inside phone frame */
.preview-iframe-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    flex-shrink: 0;
    background: #1a1a2e;
}

@keyframes viewerFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.viewer-phone-col {
    display: flex;
    justify-content: center;
    flex: 1;
    min-height: 0;
}



.examples-viewer-back {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.examples-viewer-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Hide header, CTA, audio and close button when viewer is showing */
.preview-modal.viewer-open .preview-header,
.preview-modal.viewer-open .preview-cta,
.preview-modal.viewer-open .preview-audio,
.preview-modal.viewer-open .preview-close {
    display: none;
}

.preview-modal.viewer-open {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow: hidden;
}

/* Top spacing when viewer is active */
.preview-modal.viewer-open .preview-examples {
    padding-top: var(--space-4);
    flex: 1;
    min-height: 0;
}

.preview-modal.viewer-open::-webkit-scrollbar {
    display: none;
}

.preview-iframe-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-iframe-phone {
    position: relative;
    width: min(290px, 75vw);
    aspect-ratio: 290 / 620;
    max-height: calc(100% - 4px);
    background: #1a1a2e;
    border-radius: 28px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.preview-iframe-notch {
    width: 80px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    margin: 8px auto 4px;
    flex-shrink: 0;
}

.preview-iframe-container {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    background: #1a1a2e;
}

.preview-iframe {
    /* Render at real phone size, then scale down to fit */
    width: 375px;
    height: 667px;
    border: none;
    background: #1a1a2e;
    transform-origin: top left;
    /* Scale set dynamically via JS --iframe-scale for responsive fit */
    transform: scale(var(--iframe-scale, 0.757));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.preview-iframe.loaded {
    opacity: 1;
}

/* Loading spinner inside phone frame */
.preview-iframe-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border: 3px solid rgba(108, 60, 225, 0.15);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: iframeSpinner 0.7s linear infinite;
    z-index: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.preview-iframe-container.iframe-loaded::before {
    opacity: 0;
}

@keyframes iframeSpinner {
    to { transform: rotate(360deg); }
}

.preview-iframe-home {
    width: 36px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: auto auto 6px;
    flex-shrink: 0;
}

/* Choice popup: "on page" or "full screen" */
.example-choice-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 16px;
    animation: fadeInUp .35s ease;
}

.example-choice-card {
    background: rgba(22, 18, 40, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 28px 24px 20px;
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.example-choice-title {
    text-align: center;
    font-size: var(--text-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 6px;
}

.example-choice-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}

.example-choice-btn:hover {
    background: rgba(108, 60, 225, 0.12);
    border-color: rgba(108, 60, 225, 0.35);
    transform: translateY(-1px);
}

.example-choice-btn:active {
    transform: scale(0.98);
}

.example-choice-btn svg {
    flex-shrink: 0;
    color: var(--primary);
}

.example-choice-btn strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.3;
}

.example-choice-btn small {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    line-height: 1.3;
}

.example-choice-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
    padding: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    cursor: pointer;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.example-choice-back:hover {
    color: rgba(255, 255, 255, 0.7);
}

.example-choice-back svg {
    flex-shrink: 0;
}

/* Product choice overlay (click card → choose action) */
body.product-choice-open {
    overflow: hidden !important;
    touch-action: none;
}

.product-choice-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(6, 3, 16, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
    overscroll-behavior: contain;
}

.product-choice-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.product-choice-popup {
    background: linear-gradient(165deg, rgba(30, 22, 55, 0.98) 0%, rgba(16, 12, 32, 0.98) 100%);
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: 20px;
    padding: 36px 28px 28px;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow:
        0 0 0 1px rgba(108, 60, 225, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(108, 60, 225, 0.06);
    transform: translateY(24px) scale(0.95);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    position: relative;
}

.product-choice-overlay.open .product-choice-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.product-choice-title {
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.product-choice-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    text-align: left;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.product-choice-btn:hover {
    transform: translateY(-2px);
}

.product-choice-btn:active {
    transform: scale(0.97);
}

.product-choice-btn--order {
    border-color: rgba(108, 60, 225, 0.4);
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.15) 0%, rgba(108, 60, 225, 0.06) 100%);
}

.product-choice-btn--order:hover {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.25) 0%, rgba(108, 60, 225, 0.1) 100%);
    border-color: rgba(108, 60, 225, 0.7);
    box-shadow: 0 4px 24px rgba(108, 60, 225, 0.25);
}

.product-choice-btn--order svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.product-choice-btn--preview {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.product-choice-btn--preview:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.product-choice-btn--preview svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.55);
}

.product-choice-btn strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.3;
}

.product-choice-btn small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 400;
    line-height: 1.3;
    margin-top: 2px;
}

.product-choice-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.product-choice-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 480px) {
    .product-choice-popup {
        padding: 32px 20px 22px;
        max-width: 340px;
        border-radius: 16px;
    }
    .product-choice-btn {
        padding: 16px;
        gap: 14px;
    }
}

/* Monitor frame variant for desktop-only previews */
.preview-iframe-phone.preview-iframe-monitor {
    width: min(520px, 90vw);
    aspect-ratio: 16 / 10;
    border-radius: 12px 12px 0 0;
    border-width: 3px 3px 0 3px;
}

.preview-iframe-phone.preview-iframe-monitor .preview-iframe-notch {
    display: none;
}

.preview-iframe-phone.preview-iframe-monitor .preview-iframe-home {
    display: none;
}

.preview-iframe-phone.preview-iframe-monitor .preview-iframe-logo {
    display: none;
}

.preview-iframe-phone.preview-iframe-monitor::after {
    content: '';
    display: block;
    width: 100%;
    height: 28px;
    background: linear-gradient(180deg, #2a2a42, #1e1e35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    border-radius: 0 0 4px 4px;
}

.preview-iframe-phone.preview-iframe-monitor .preview-iframe-container {
    flex: 1;
}

/* Monitor stand */
.preview-iframe-phone.preview-iframe-monitor {
    margin-bottom: 30px;
    position: relative;
}

.preview-iframe-phone.preview-iframe-monitor::before {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border-radius: 0 0 6px 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    z-index: -1;
}

.preview-iframe-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 0 0;
    -webkit-font-smoothing: antialiased;
}


/* ========================================
   Audio Player
   ======================================== */
.preview-audio {
    margin-top: auto;
    padding: 0 var(--space-5) var(--space-4);
}

/* --- Track List (multi-track picker) --- */
.audio-track-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--space-4);
}

.audio-track-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}

.audio-track-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.audio-track-btn.active {
    background: rgba(108, 60, 225, 0.15);
    border-color: rgba(108, 60, 225, 0.4);
    color: #fff;
}

.audio-track-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.audio-track-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.audio-track-title {
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-track-artist {
    font-size: var(--text-xs);
    opacity: 0.55;
}

.audio-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-3);
    -webkit-font-smoothing: antialiased;
}

.audio-label svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Audio info "i" button */
.audio-info-btn {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    margin-left: auto;
    padding: 0;
}

.audio-info-btn:hover {
    background: rgba(108, 60, 225, 0.2);
    border-color: rgba(108, 60, 225, 0.4);
    color: var(--color-primary-light);
}

/* Audio info popup */
.audio-info-popup {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease,
                margin 0.4s ease;
    margin-bottom: 0;
}

.audio-info-popup.open {
    max-height: 400px;
    opacity: 1;
    margin-bottom: var(--space-3);
}

.audio-info-popup-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    position: relative;
}

.audio-info-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.audio-info-close:hover {
    color: #fff;
}

.audio-info-header {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
    padding-right: 20px;
}

.audio-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.audio-info-row:last-of-type {
    border-bottom: none;
}

.audio-info-label {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.audio-info-note {
    margin-top: var(--space-3);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    font-style: italic;
}

.audio-volume-hint {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: var(--space-3);
    text-align: center;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4) var(--space-2) var(--space-2);
}

.audio-play-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.audio-play-btn:hover,
.audio-play-btn:active {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(108, 60, 225, 0.4);
}

.audio-play-btn .icon-play {
    margin-left: 2px;
}

.audio-progress-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    overflow: visible;
    /* Bigger touch target */
    padding: 10px 0;
    margin: -10px 0;
    background-clip: content-box;
}

.audio-progress-bar {
    position: absolute;
    top: 10px;
    left: 0;
    height: 6px;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.1s linear;
    pointer-events: none;
}

.audio-progress-wrap.dragging .audio-progress-bar {
    transition: none;
}

.audio-progress-handle {
    position: absolute;
    top: 13px;
    left: 0%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(108, 60, 225, 0.6);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.audio-progress-wrap:hover .audio-progress-handle,
.audio-progress-wrap:active .audio-progress-handle {
    opacity: 1;
}

.audio-time {
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    min-width: 72px;
    text-align: right;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   Audio Visualizer Bars
   ======================================== */
.audio-visualizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    height: 48px;
    padding: var(--space-3) var(--space-5);
    margin-top: var(--space-3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audio-visualizer.active {
    opacity: 1;
}

.viz-bar {
    width: 3px;
    min-height: 3px;
    height: 3px;
    border-radius: 99px;
    background: var(--gradient-primary);
    transition: height 0.08s ease;
}


/* ========================================
   Preview CTA
   ======================================== */
.preview-cta {
    padding: var(--space-4) var(--space-5);
    padding-bottom: 32px;
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: linear-gradient(to top, var(--color-bg-dark) 70%, transparent);
    margin-top: auto;
}

.preview-order-btn {
    width: 100%;
    max-width: 320px;
}


/* ========================================
   Preview - Desktop
   ======================================== */
@media (min-width: 1024px) {
    .preview-modal {
        width: 680px;
        max-width: 90vw;
        height: auto;
        max-height: 90vh;
        border-radius: var(--radius-2xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);

    }

    .preview-close {
        position: absolute;
    }

    .preview-header {
        padding: var(--space-10) var(--space-10) var(--space-4);
    }

    .preview-title {
        font-size: var(--text-2xl);
    }

    .preview-gallery {
        padding: 0 var(--space-10) var(--space-4);
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .preview-examples {
        padding: 0 var(--space-10) var(--space-4);
    }

    .examples-pick-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Viewer: desktop layout */
    .examples-viewer {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }

    .viewer-top-bar {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Desktop: show top logo, hide bottom logo */
    .viewer-logo--top {
        display: inline;
    }

    .viewer-logo--bottom {
        display: none;
    }

    .preview-iframe-logo {
        display: none;
    }

    .examples-viewer .viewer-phone-col {
        align-self: center;
    }

    /* Top spacing on desktop viewer */
    .preview-modal.viewer-open .preview-examples {
        padding-top: var(--space-6);
        padding-bottom: var(--space-4);
    }

    /* When viewer is open, modal fits viewport without scroll */
    .preview-modal.viewer-open {
        width: 600px;
        max-width: 94vw;
        height: auto;
        max-height: 96vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: width 0.3s ease;
    }

    /* Desktop phone: fixed size that fits all desktop viewports */
    .preview-modal.viewer-open .preview-iframe-phone {
        width: 290px;
        height: min(580px, calc(88vh - 90px));
        border-radius: 36px;
        border-width: 4px;
    }

    /* Desktop monitor frame override */
    .preview-modal.viewer-open .preview-iframe-phone.preview-iframe-monitor {
        width: min(560px, 85vw);
        height: auto;
        aspect-ratio: 16 / 10;
        border-radius: 12px 12px 0 0;
        border-width: 3px 3px 0 3px;
    }

    .preview-iframe-notch {
        width: 100px;
        height: 6px;
        border-radius: 3px;
        margin: 10px auto 6px;
    }

    .preview-modal.viewer-open .preview-iframe {
        transform: scale(var(--iframe-scale, 0.752));
    }

    .preview-iframe-home {
        width: 40px;
        height: 5px;
        margin-bottom: 8px;
    }

    .preview-iframe-info {
        font-size: 13px;
    }

    .preview-audio {
        padding: 0 var(--space-10) var(--space-4);
    }

    .preview-cta {
        padding: var(--space-4) var(--space-10) var(--space-10);
    }

    /* Regulamin desktop */
    .regulamin-modal {
        max-width: 760px;
        width: 760px;
    }

    .regulamin-modal .preview-header {
        padding: var(--space-10) var(--space-10) var(--space-6);
        border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    }

    .regulamin-modal .preview-title {
        font-size: var(--text-3xl);
    }

    .regulamin-content {
        padding: var(--space-6) var(--space-10) var(--space-10);
    }

    .regulamin-content h4 {
        font-size: var(--text-lg);
        padding: var(--space-3) var(--space-5);
    }
}


/* ========================================
   Order Modal
   ======================================== */
.order-modal .preview-header {
    padding-bottom: 0;
}

.order-product-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin: var(--space-3) var(--space-5) var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: rgba(108, 60, 225, 0.12);
    border: 1px solid rgba(108, 60, 225, 0.25);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: var(--text-sm);
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.order-product-badge svg {
    flex-shrink: 0;
    color: var(--color-primary-light);
}

.order-form {
    padding: 0 var(--space-5) var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.order-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.order-input-hint {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 0;
}

.order-input-hint > span {
    overflow: hidden;
    min-height: 0;
    font-size: 0.72rem;
    color: rgba(139, 92, 246, 0.7);
    letter-spacing: 0.01em;
    padding-left: 2px;
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}

.order-form-group.hint-visible .order-input-hint {
    grid-template-rows: 1fr;
    margin-top: 4px;
}

.order-form-group.hint-visible .order-input-hint > span {
    opacity: 1;
    transform: translateY(0);
}

/* Inspiration suggestion box */
.order-inspiration {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 0;
}

.order-inspiration-inner {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.order-form-group.inspiration-visible .order-inspiration {
    grid-template-rows: 1fr;
    margin-top: 8px;
}

.order-form-group.inspiration-visible .order-inspiration-inner {
    opacity: 1;
    transform: translateY(0);
}

.order-inspiration-inner ul {
    margin: 6px 0 0;
    padding: 10px 14px 10px 32px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    list-style: none;
}

.order-inspiration-inner ul li {
    position: relative;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    padding: 3px 0;
}

.order-inspiration-inner ul li::before {
    content: '→';
    position: absolute;
    left: -18px;
    color: rgba(139, 92, 246, 0.5);
    font-size: 0.7rem;
}

.order-inspiration-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(139, 92, 246, 0.75);
    letter-spacing: 0.01em;
    padding-left: 2px;
}

.order-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    -webkit-font-smoothing: antialiased;
}

.order-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: #FFFFFF;
    font-size: var(--text-base);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    appearance: none;
}

.order-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.order-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.15);
}

.order-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.custom-select.error .custom-select-trigger {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.order-file-upload.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

/* Shake animation for validation errors */
@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-6px); }
    30% { transform: translateX(5px); }
    45% { transform: translateX(-4px); }
    60% { transform: translateX(3px); }
    75% { transform: translateX(-2px); }
    90% { transform: translateX(1px); }
}

.order-input.shake,
.custom-select.shake .custom-select-trigger,
.order-file-upload.shake {
    animation: formShake 0.5s ease-in-out;
}

.order-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Product-specific fields */
.order-product-fields {
    display: none;
    flex-direction: column;
    gap: var(--space-4);
}

.order-product-fields.active {
    display: flex;
}

.order-section-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-primary-light);
    padding-top: var(--space-2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-font-smoothing: antialiased;
}

.order-section-label svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Song on site toggle (pakiet) */
.order-toggle-switch {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, background 0.2s;
}

.order-toggle-switch:hover {
    border-color: rgba(108, 60, 225, 0.25);
    background: rgba(108, 60, 225, 0.04);
}

.order-toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.order-toggle-track {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    transition: background 0.25s;
    margin-top: 2px;
}

.order-toggle-switch input:checked ~ .order-toggle-track {
    background: var(--color-primary);
}

.order-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.order-toggle-switch input:checked ~ .order-toggle-track .order-toggle-thumb {
    transform: translateX(20px);
}

.order-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-toggle-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    -webkit-font-smoothing: antialiased;
}

.order-toggle-desc {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Song-on-site info button */
.song-on-site-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, serif;
    cursor: pointer;
    margin-left: 6px;
    padding: 0;
    vertical-align: middle;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    line-height: 1;
    position: relative;
    top: -1px;
}
.song-on-site-info-btn:hover {
    border-color: rgba(251, 191, 36, 0.5);
    color: #FBBF24;
    background: rgba(251, 191, 36, 0.1);
}

/* Expandable info panel */
.song-on-site-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}
.song-on-site-info.open {
    max-height: 120px;
    opacity: 1;
}
.song-on-site-info-inner {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    margin-top: 8px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}
.song-on-site-info-inner svg {
    color: #FBBF24;
    opacity: 0.7;
}

/* Express / Normal delivery toggle */
.order-delivery-toggle {
    position: relative;
}

.order-express-content .order-radio-title {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-radio-card input[value="express"]:checked + .order-radio-content {
    border-color: #F59E0B;
    background: rgba(251, 191, 36, 0.08);
}

.order-speed-info-btn {
    position: absolute;
    right: -6px;
    top: -6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    z-index: 1;
}

.order-speed-info-btn:hover {
    color: var(--color-primary-light);
    background: rgba(108, 60, 225, 0.1);
    border-color: rgba(108, 60, 225, 0.3);
}

.order-speed-info {
    display: none;
    padding: var(--space-3) var(--space-4);
    background: rgba(108, 60, 225, 0.06);
    border: 1px solid rgba(108, 60, 225, 0.15);
    border-radius: var(--radius-lg);
    margin-top: var(--space-3);
}

.order-speed-info.open {
    display: block;
}

.order-speed-info-content p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.order-speed-info-content p + p {
    margin-top: var(--space-1);
}

.order-speed-info-content strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.order-express-row {
    color: #F59E0B !important;
}

/* Domain search */
.domain-search {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.domain-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.domain-search-bar:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.15);
}

.domain-search-prefix {
    padding: var(--space-3) 0 var(--space-3) var(--space-4);
    color: rgba(255, 255, 255, 0.35);
    font-size: var(--text-sm);
    font-weight: 600;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    flex-shrink: 0;
}

.domain-search-input {
    flex: 1;
    min-width: 0;
    padding: var(--space-3) var(--space-2);
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: var(--text-base);
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    appearance: none;
}

.domain-search-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.domain-search-input:focus {
    outline: none;
}

.domain-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-2) var(--space-4);
    margin: 4px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    -webkit-font-smoothing: antialiased;
    flex-shrink: 0;
    white-space: nowrap;
}

.domain-search-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(108, 60, 225, 0.35);
}

.domain-search-btn:active {
    transform: scale(0.98);
}

.domain-search-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Domain results */
.domain-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.domain-results:empty {
    display: none;
}

.domain-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    gap: var(--space-3);
}

.domain-result-item:hover {
    border-color: rgba(108, 60, 225, 0.3);
    background: rgba(108, 60, 225, 0.05);
}

.domain-result-item.selected {
    border-color: var(--color-primary);
    background: rgba(108, 60, 225, 0.08);
}

.domain-result-item.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.domain-result-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.domain-result-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    flex-shrink: 0;
    white-space: nowrap;
}

.domain-result-status.available {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.domain-result-status.taken {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

.domain-result-selected {
    display: none;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.domain-result-item.selected .domain-result-selected {
    display: flex;
}

.domain-searching {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-sm);
    -webkit-font-smoothing: antialiased;
}

.domain-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(108, 60, 225, 0.2);
    border-top-color: var(--color-primary-light);
    border-radius: 50%;
    animation: domainSpin 0.7s linear infinite;
}

@keyframes domainSpin {
    to { transform: rotate(360deg); }
}

/* Color picker – custom dark picker */
.color-picker-custom {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    position: relative;
}

.color-preview-row {
    display: flex;
    gap: var(--space-3);
}

.color-picker-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: -4px;
}

.color-preview-slot {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    flex: 1;
}

.color-preview-slot:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.color-preview-slot.active {
    border-color: var(--color-primary);
    background: rgba(108, 60, 225, 0.08);
}

.color-preview-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    transition: transform 0.15s, border-color 0.15s;
}

.color-preview-slot.active .color-preview-circle {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.color-preview-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    -webkit-font-smoothing: antialiased;
    white-space: nowrap;
}

.color-preview-slot.active .color-preview-label {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Picker popup ---------- */
.cpicker-popup {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: var(--space-4);
    background: #1a1128;
    border: 1px solid rgba(108, 60, 225, 0.25);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(108, 60, 225, 0.1);
    margin-top: var(--space-1);
    animation: cpickerIn 0.2s ease;
}

.cpicker-popup.open {
    display: flex;
}

@keyframes cpickerIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cpicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cpicker-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    -webkit-font-smoothing: antialiased;
}

.cpicker-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.15s, background 0.15s;
    line-height: 1;
}

.cpicker-close:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

/* SV canvas area */
.cpicker-sv-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 280 / 180;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: crosshair;
}

.cpicker-sv {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

.cpicker-sv-cursor {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.1s, height 0.1s;
    top: 0;
    left: 100%;
}

/* Hue bar */
.cpicker-hue-wrap {
    position: relative;
    width: 100%;
    height: 18px;
    border-radius: 9px;
    overflow: hidden;
    cursor: pointer;
}

.cpicker-hue {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 9px;
}

.cpicker-hue-cursor {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 22px;
    border: 2px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

/* Footer with result preview */
.cpicker-footer {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: 2px;
}

.cpicker-result-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.cpicker-hex {
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: 'Inter', monospace;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
}

/* Remove old color picker styles */
.order-color-pick {
    display: none;
}

.order-color-hint {
    display: none;
}

/* File upload */
/* Force default cursor after file upload (overrides browser wait cursor) */
html.force-default-cursor,
html.force-default-cursor * {
    cursor: default !important;
}

.order-file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: var(--space-5) var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
}

.order-file-upload:hover {
    border-color: rgba(108, 60, 225, 0.4);
    background: rgba(108, 60, 225, 0.05);
}

.order-file-upload svg {
    color: rgba(255, 255, 255, 0.25);
}

.order-file-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary-light);
    -webkit-font-smoothing: antialiased;
}

.order-file-hint {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.3);
    -webkit-font-smoothing: antialiased;
}

.order-file-names {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-2);
}

.order-file-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s;
}

.order-file-card:hover {
    border-color: rgba(108, 60, 225, 0.25);
}

.order-file-thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-file-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.order-file-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.order-file-name {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-font-smoothing: antialiased;
}

.order-file-size {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    -webkit-font-smoothing: antialiased;
}

.order-file-remove {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.15s, background 0.15s;
    flex-shrink: 0;
    line-height: 1;
}

.order-file-remove:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.order-file-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 2px;
}

.order-file-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-pink));
    border-radius: 2px;
    transition: width 0.15s ease;
}

.order-file-status {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    -webkit-font-smoothing: antialiased;
}

.order-file-tag {
    display: none;
}

/* Radio cards */
.order-radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.order-radio-inline {
    flex-direction: row;
}

.order-radio-card {
    position: relative;
    cursor: pointer;
    flex: 1;
}

.order-radio-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.order-radio-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, background 0.2s;
}

.order-radio-card input:checked + .order-radio-content {
    border-color: var(--color-primary);
    background: rgba(108, 60, 225, 0.08);
}

.order-radio-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

.order-radio-desc {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    -webkit-font-smoothing: antialiased;
}

/* Custom select dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: #FFFFFF;
    font-size: var(--text-base);
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-font-smoothing: antialiased;
    gap: var(--space-2);
}

.custom-select-trigger:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.15);
    background: rgba(108, 60, 225, 0.08);
}

.custom-select-value {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-value.placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.custom-select-arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--color-primary-light);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 50;
    background: #1a1128;
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(108, 60, 225, 0.08);
    padding: var(--space-1) 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease,
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.custom-select.open .custom-select-dropdown {
    max-height: 320px;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-select-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    -webkit-font-smoothing: antialiased;
    border-radius: var(--radius-sm);
    margin: 0 var(--space-1);
}

.custom-select-option:hover {
    background: rgba(108, 60, 225, 0.15);
    color: #FFFFFF;
}

.custom-select-option.selected {
    background: rgba(108, 60, 225, 0.2);
    color: var(--color-primary-light);
    font-weight: 600;
}

.custom-select-option.selected::after {
    content: '✓';
    margin-left: auto;
    font-size: var(--text-xs);
    color: var(--color-primary-light);
}

.custom-select-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Order summary */
.order-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    -webkit-font-smoothing: antialiased;
}

.order-summary-total {
    padding-top: var(--space-2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 700;
    font-size: var(--text-base);
    color: #FFFFFF;
}

/* Pay button */
.order-pay-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-base);
    font-weight: 700;
    padding: var(--space-4) var(--space-6);
}

/* Trust section */
.order-trust {
    padding: 0 var(--space-5) var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.order-trust-row {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    -webkit-font-smoothing: antialiased;
}

.order-trust-row svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.25);
}

.order-trust-logos {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-2);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

/* Stripe info button & panel */
.stripe-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, serif;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
}
.stripe-info-btn:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
}
.stripe-info-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}
.stripe-info-panel:not(.open) {
    margin-top: calc(-1 * var(--space-2));
}
.stripe-info-panel.open {
    grid-template-rows: 1fr;
}
.stripe-info-inner {
    overflow: hidden;
    min-height: 0;
}
.stripe-info-inner > div {
    display: flex;
    gap: var(--space-2);
    padding: var(--space-3);
    background: rgba(108, 60, 225, 0.08);
    border: 1px solid rgba(108, 60, 225, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.72rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    -webkit-font-smoothing: antialiased;
}
.stripe-info-inner strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Order success */
.order-success {
    padding: var(--space-12) var(--space-5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.order-success .preview-title {
    color: #22c55e;
}

/* Order - Desktop */
@media (min-width: 1024px) {
    .order-modal {
        width: 560px;
    }

    .order-product-badge {
        margin-left: var(--space-10);
    }

    .order-form {
        padding: 0 var(--space-10) var(--space-4);
    }

    .order-trust {
        padding: 0 var(--space-10) var(--space-10);
    }
}


/* ========================================
   Idle Popup
   ======================================== */
.idle-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(10, 6, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.4s;
    padding: var(--space-3);
}
.idle-popup.open {
    opacity: 1;
    visibility: visible;
}
.idle-popup-card {
    position: relative;
    background: linear-gradient(165deg, #1a1040 0%, #0F0A1E 100%);
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-4);
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(108, 60, 225, 0.25),
                0 0 60px rgba(108, 60, 225, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(40px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.idle-popup.open .idle-popup-card {
    transform: translateY(0);
}
.idle-popup-close {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 5px;
    border-radius: var(--radius-full);
    transition: color 0.2s, background 0.2s;
}
.idle-popup-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.idle-popup-icon {
    margin-bottom: var(--space-2);
}
.idle-popup-icon svg {
    width: 36px;
    height: 36px;
}
.idle-popup-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-1);
}
.idle-popup-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: var(--space-4);
}
.idle-popup-cta {
    width: 100%;
}

/* ========================================
   Tutorial Overlay
   ======================================== */
.tutorial-overlay {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(10, 6, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.4s;
    padding: var(--space-3);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.tutorial-overlay.open {
    opacity: 1;
    visibility: visible;
}
.tutorial-card {
    position: relative;
    background: linear-gradient(165deg, #1a1040 0%, #0F0A1E 100%);
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-4) var(--space-4);
    max-width: 480px;
    width: 100%;
    margin: auto 0;
    box-shadow: 0 32px 80px rgba(108, 60, 225, 0.3),
                0 0 60px rgba(108, 60, 225, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tutorial-overlay.open .tutorial-card {
    transform: translateY(0) scale(1);
}
.tutorial-close {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 5px;
    border-radius: var(--radius-full);
    transition: color 0.2s, background 0.2s;
    z-index: 2;
}
.tutorial-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.tutorial-header {
    text-align: center;
    margin-bottom: var(--space-4);
}
.tutorial-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-1);
}
.tutorial-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.tutorial-subtitle {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}
.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}
.tutorial-step {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    background: rgba(108, 60, 225, 0.06);
    border: 1px solid rgba(108, 60, 225, 0.1);
    transition: background 0.2s, border-color 0.2s;
}
.tutorial-step:hover {
    background: rgba(108, 60, 225, 0.1);
    border-color: rgba(108, 60, 225, 0.2);
}
.tutorial-step-num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(108, 60, 225, 0.4);
    margin-top: 2px;
}
.tutorial-step-body h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1px;
}
.tutorial-step-body p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}
.tutorial-step-body strong {
    color: var(--color-primary-light);
    font-weight: 600;
}
.tutorial-footer {
    text-align: center;
}
.tutorial-order-btn {
    width: 100%;
}

/* Idle & Tutorial – tablet+ */
@media (min-width: 480px) {
    .idle-popup {
        align-items: center;
    }
    .idle-popup-card {
        border-radius: var(--radius-2xl);
        padding: var(--space-6) var(--space-5);
        transform: translateY(24px) scale(0.96);
    }
    .idle-popup.open .idle-popup-card {
        transform: translateY(0) scale(1);
    }
    .idle-popup-icon svg {
        width: 44px;
        height: 44px;
    }
    .idle-popup-icon {
        margin-bottom: var(--space-3);
    }
    .idle-popup-title {
        font-size: var(--text-xl);
    }
    .idle-popup-text {
        font-size: var(--text-sm);
        line-height: 1.6;
        margin-bottom: var(--space-5);
    }
    .tutorial-overlay {
        align-items: center;
    }
    .tutorial-card {
        border-radius: var(--radius-2xl);
        padding: var(--space-7) var(--space-5) var(--space-5);
    }
    .tutorial-header {
        margin-bottom: var(--space-5);
    }
    .tutorial-badge {
        font-size: var(--text-xs);
    }
    .tutorial-title {
        font-size: var(--text-2xl);
    }
    .tutorial-subtitle {
        font-size: var(--text-sm);
    }
    .tutorial-steps {
        gap: var(--space-4);
        margin-bottom: var(--space-5);
    }
    .tutorial-step {
        gap: var(--space-4);
        padding: var(--space-3) var(--space-4);
        border-radius: var(--radius-xl);
    }
    .tutorial-step-num {
        width: 36px;
        height: 36px;
        font-size: var(--text-base);
    }
    .tutorial-step-body h4 {
        font-size: var(--text-base);
        margin-bottom: 2px;
    }
    .tutorial-step-body p {
        font-size: var(--text-sm);
        line-height: 1.55;
    }
}

/* Idle & Tutorial – desktop */
@media (min-width: 768px) {
    .idle-popup-card {
        padding: var(--space-10) var(--space-8);
    }
    .idle-popup-icon svg {
        width: 48px;
        height: 48px;
    }
    .idle-popup-icon {
        margin-bottom: var(--space-4);
    }
    .idle-popup-title {
        font-size: var(--text-2xl);
    }
    .idle-popup-text {
        margin-bottom: var(--space-6);
    }
    .tutorial-card {
        padding: var(--space-10) var(--space-8) var(--space-8);
    }
    .tutorial-header {
        margin-bottom: var(--space-6);
    }
    .tutorial-title {
        font-size: var(--text-3xl);
    }
    .tutorial-steps {
        gap: var(--space-5);
        margin-bottom: var(--space-6);
    }
}


/* ========================================
   Reduced motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
