/* ============================================
   NOKIER 2 - PREMIUM SHOPIFY-STYLE THEME
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-light: #60a5fa;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-max: 1280px;
    --container-narrow: 720px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gray-900);
    color: var(--white);
}

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

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--gray-900);
    background: var(--gray-50);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

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

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 35%,
        rgba(255, 255, 255, 0.6) 55%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 100%
    );
}

.hero-content-luxury {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.hero-text-block {
    max-width: 580px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: var(--radius-full);
    width: fit-content;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--gray-600);
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-subtext {
    font-size: 15px;
    color: var(--gray-400);
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta-minimal {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: none;
    letter-spacing: 0;
    width: fit-content;
}

.cta-button.primary,
.hero-btn {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover,
.hero-btn:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-waitlist-count {
    font-size: 14px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-waitlist-count::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

#heroQueueNumber {
    color: var(--gray-900);
    font-weight: 700;
}

.hero-payment-section {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.payment-crypto {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crypto-logo-hero {
    height: 20px;
    width: auto;
    opacity: 0.7;
}

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

.buy-now-link {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.buy-now-link:hover {
    color: var(--gray-900);
}

/* ============================================
   ANNOUNCEMENT BAR / URGENCY BANNER
   ============================================ */

.urgency-banner {
    background: var(--gray-900);
    padding: 14px 20px;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.urgency-icon {
    font-size: 1.2rem;
}

.urgency-text {
    color: var(--white);
    font-size: 14px;
    text-align: center;
}

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

.urgency-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.urgency-cta {
    background: var(--white);
    color: var(--gray-900);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.urgency-cta:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: var(--section-padding) 24px;
    background: var(--white);
}

.features-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--gray-500);
    display: block;
    margin-top: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.feature-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    padding: 32px 28px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

.feature-card.premium-feature {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border: none;
}

.feature-card.premium-feature::before {
    background: linear-gradient(90deg, var(--warning), #fbbf24);
    transform: scaleX(1);
}

.feature-card.premium-feature h3 {
    color: var(--white);
}

.feature-card.premium-feature p {
    color: var(--gray-300);
}

.feature-card.premium-feature .feature-icon {
    filter: grayscale(0);
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof {
    padding: var(--section-padding) 24px;
    background: var(--gray-50);
}

.proof-header {
    text-align: center;
    margin-bottom: 64px;
}

.proof-eyebrow {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.proof-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: all var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.testimonial-card.featured {
    background: var(--gray-900);
    border: none;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-name {
    color: var(--white);
}

.testimonial-card.featured .author-title {
    color: var(--gray-400);
}

.testimonial-badge {
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-stars {
    color: var(--warning);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testimonial-card.featured .author-avatar {
    background: var(--gray-800);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-900);
}

.author-title {
    font-size: 13px;
    color: var(--gray-500);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-section {
    padding: 48px 24px;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-badge {
    text-align: center;
    padding: 20px;
}

.badge-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.badge-subtext {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    font-style: italic;
}

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

.faq-section {
    padding: var(--section-padding) 24px;
    background: var(--gray-50);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 15px;
    color: var(--gray-500);
}

.faq-grid {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 15px;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray-400);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 14px;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: var(--section-padding) 24px;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.pricing-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.pricing-hint {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 48px;
}

.price-card-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px 64px;
    cursor: pointer;
    transition: all var(--transition-slow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #8b5cf6);
}

.price-card:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.tier-name-single {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.price-amount-single {
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--gray-900);
    margin-bottom: 16px;
    position: relative;
}

.price-amount-single::before {
    content: 'FREE';
    display: block;
}

.price-card:hover .price-amount-single::before {
    content: '£149';
}

.price-cta {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.price-disclaimer {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.price-disclaimer p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 8px 0;
    line-height: 1.6;
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--white);
    border-radius: var(--radius-2xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform var(--transition-slow);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-500);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-content {
    padding: 48px 40px;
}

/* ============================================
   TIER ASSESSMENT WIDGET
   ============================================ */

.tier-widget {
    width: 100%;
}

.widget-header {
    text-align: center;
    margin-bottom: 36px;
}

.widget-header h2 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-weight: 700;
}

.widget-subtitle {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 28px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #8b5cf6);
    width: 20%;
    transition: width 0.5s ease;
    border-radius: var(--radius-full);
}

.progress-text {
    font-size: 13px;
    color: var(--gray-400);
}

.widget-step {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.widget-step.active {
    display: block;
}

.widget-step h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-description {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 14px;
}

.widget-input,
.widget-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    margin-bottom: 16px;
    transition: all var(--transition-fast);
    background: var(--white);
    font-family: inherit;
    color: var(--gray-900);
}

.widget-input:focus,
.widget-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.widget-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.widget-btn {
    width: 100%;
    background: var(--gray-900);
    color: var(--white);
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.widget-btn:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
}

.widget-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 12px;
}

/* Form Alerts */
.form-alert {
    display: none;
    padding: 14px 18px;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
}

.form-alert.show {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.form-alert .alert-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.form-alert .alert-message {
    flex: 1;
    line-height: 1.4;
}

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

/* Option Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.option-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.option-card:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.02);
}

.option-card.selected {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.option-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.option-label {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.option-sublabel {
    display: block;
    color: var(--gray-400);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
}

/* Checkbox List */
.checkbox-list {
    margin-bottom: 20px;
}

.fancy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.fancy-checkbox:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.fancy-checkbox input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.fancy-checkbox span {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.5;
}

/* Sausage Game */
.game-container {
    text-align: center;
    padding: 28px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.game-instruction {
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 24px;
}

.sausage-game {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sausage-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 2.5rem;
    position: relative;
}

.sausage-btn span {
    position: absolute;
    bottom: 4px;
    right: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-400);
}

.sausage-btn:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.sausage-btn.correct {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
}

.sausage-btn.wrong {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.game-status {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Add-on Card */
.addon-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.addon-card:hover {
    border-color: var(--gray-300);
}

.addon-card.selected {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.03);
}

.addon-card.locked {
    cursor: not-allowed;
}

.addon-card.locked::after {
    content: '🔒';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1rem;
    opacity: 0.5;
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.addon-icon {
    font-size: 2rem;
}

.addon-info {
    flex: 1;
}

.addon-info h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 4px;
    font-weight: 600;
}

.addon-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.addon-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.addon-checkbox span {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 14px;
}

.addon-required {
    color: var(--danger);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.upgrade-notice {
    background: rgba(239, 68, 68, 0.06);
    border-left: 3px solid var(--danger);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Bump Offer */
.bump-offer {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 2px dashed rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-lg);
}

.bump-header {
    text-align: center;
    margin-bottom: 14px;
}

.bump-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--warning) 0%, #fbbf24 100%);
    color: var(--gray-900);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.bump-header h4 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin: 8px 0 4px;
}

.bump-tagline {
    text-align: center;
    font-size: 14px;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 18px;
}

.bump-features {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 18px;
}

.bump-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bump-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 13px;
    color: var(--gray-700);
}

.bump-features li:last-child {
    border-bottom: none;
}

.bump-checkbox-container {
    background: var(--white);
    border: 2px solid var(--warning);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
}

.bump-checkbox-label {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.bump-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--warning);
}

.bump-checkbox-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.4;
}

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

.bump-price {
    color: var(--warning);
    font-weight: 700;
}

.bump-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin: 0;
}

/* Share Verification in Modal */
.share-verification-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.verification-status {
    text-align: center;
    margin-bottom: 24px;
}

.verification-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.verification-queue {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.verification-hint {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

#modalSharesRemaining {
    color: var(--danger);
    font-weight: 700;
}

.modal-share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.modal-share-btn {
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}

.modal-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.modal-share-btn.twitter { background: #000000; }
.modal-share-btn.facebook { background: #1877F2; }
.modal-share-btn.linkedin { background: #0A66C2; }
.modal-share-btn.whatsapp { background: #25D366; }

.verification-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.5;
}

/* Order Summary */
.order-summary {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.order-summary h4 {
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 14px;
    font-weight: 600;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 14px;
}

.summary-line.addon-line {
    color: var(--accent);
    font-weight: 500;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Success Message */
.success-message {
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--success);
    margin: 0 auto 24px;
}

.success-message h2 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.tier-result {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.tier-badge {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 1px;
}

.success-message p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 12px 0;
    line-height: 1.6;
}

.success-subtext {
    font-size: 13px;
    color: var(--gray-400);
}

.queue-final {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-500);
}

#finalQueue {
    color: var(--danger);
    font-weight: 700;
}

/* Payment Notice */
.payment-notice {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.2);
    text-align: center;
}

.payment-notice h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-weight: 700;
}

.payment-text {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-weight: 500;
}

.payment-subtext {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 18px;
    font-style: italic;
}

.vip-upgrade-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.vip-upgrade-btn:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.vip-crypto-icon {
    height: 18px;
    width: auto;
}

/* Donation Notice */
.donation-notice {
    margin-top: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.donation-notice h3 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.donation-text {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 14px;
}

.crypto-donation {
    margin-top: 16px;
}

.crypto-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crypto-qr-container {
    text-align: center;
    margin-bottom: 14px;
}

.crypto-qr {
    max-width: 160px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    background: var(--white);
    padding: 8px;
}

.crypto-address-box {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    margin-bottom: 12px;
}

.crypto-address {
    flex: 1;
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 11px;
    color: var(--gray-600);
    word-break: break-all;
    line-height: 1.4;
}

.copy-btn {
    padding: 8px 14px;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--gray-800);
}

.crypto-warning {
    font-size: 12px;
    color: var(--danger);
    font-weight: 500;
    text-align: center;
}

.close-modal-btn {
    margin-top: 24px;
    padding: 14px 32px;
    background: var(--gray-900);
    border: none;
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.close-modal-btn:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

/* Payment Modal */
.payment-modal-content {
    text-align: center;
}

.payment-modal-content h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 16px;
    font-weight: 700;
}

.payment-modal-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-weight: 500;
}

.payment-modal-subtext {
    font-size: 14px;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 24px;
}

.payment-info-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.payment-info-text {
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
}

.payment-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.payment-info-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
}

.payment-info-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--danger);
    font-weight: 700;
}

.payment-info-quote {
    font-size: 13px;
    color: var(--gray-400);
    font-style: italic;
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
    line-height: 1.5;
}

/* ============================================
   SOCIAL SHARE SECTION
   ============================================ */

.social-share {
    padding: var(--section-padding) 24px;
    background: var(--white);
}

.share-box {
    max-width: 640px;
    margin: 0 auto;
    background: var(--gray-50);
    padding: 48px 40px;
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.share-box h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 12px;
}

.share-description {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 28px;
}

.queue-boost {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    border: 1px solid var(--gray-200);
}

.boost-badge {
    display: inline-block;
    background: var(--gray-900);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.current-queue {
    font-size: 14px;
    color: var(--gray-600);
}

#shareQueueNumber {
    color: var(--danger);
    font-weight: 700;
    font-size: 16px;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.share-btn {
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.share-icon {
    font-size: 1.25rem;
    font-weight: 700;
}

.share-btn.twitter { background: #000000; }
.share-btn.facebook { background: #1877F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }

.share-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.6;
}

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

.footer {
    padding: 64px 24px 40px;
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-disclaimers {
    text-align: center;
    margin-bottom: 32px;
}

.footer-disclaimers p {
    margin: 8px 0;
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-disclaimers p:first-child {
    color: var(--gray-300);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-disclaimer-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 40px auto;
    max-width: 720px;
    text-align: center;
}

.footer-disclaimer-box h3 {
    color: var(--warning);
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-disclaimer-box p {
    margin: 14px 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-300);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hidden {
    display: none !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 40%,
            rgba(255, 255, 255, 0.7) 100%
        );
    }

    .hero-content-luxury {
        padding: 48px 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.96);
    }

    .hero-content-luxury {
        padding: 32px 24px;
        text-align: center;
    }

    .hero-text-block {
        max-width: 100%;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-cta-minimal {
        align-items: center;
    }

    .hero-payment-section {
        align-items: center;
    }

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

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

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 28px;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .modal-content {
        padding: 36px 24px;
    }

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

    .modal-share-buttons {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        grid-template-columns: 1fr;
    }

    .share-box {
        padding: 36px 24px;
    }

    .price-card {
        padding: 36px 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .sausage-game {
        gap: 12px;
    }

    .sausage-btn {
        font-size: 2rem;
        padding: 14px;
    }
}
