/* =============================================================================
   STARK DESIGN SYSTEM - Mobile-First Brutalist Design
   =============================================================================
   
   ZASADY PROJEKTOWANIA (DESIGN PRINCIPLES):
   -----------------------------------------
   1. BRUTALISTYCZNY MINIMALIZM
      - Twarde krawędzie, brak border-radius
      - Geometryczne, surowe kształty
      - Wyraziste, mocne kontrasty
   
   2. MOBILE-FIRST APPROACH
      - Bazowy CSS dla urządzeń mobilnych
      - Progresywne ulepszanie dla większych ekranów
      - Breakpoints: 768px (tablet), 1024px (desktop)
   
   3. KOLORYSTYKA
      - Monochromatyczna paleta: czarny, biały, odcienie szarości
      - Akcent: neonowy zielony (#00FF88) - tylko dla kluczowych elementów
      - BEZ gradientów - tylko płaskie kolory
   
   4. TYPOGRAFIA
      - Font: Inter (600-900)
      - Duże, odważne nagłówki (font-weight: 900)
      - Clamp() dla responsywnego skalowania tekstu
   
   5. KOMPONENTY
      - Przyciski: border 3px solid, box-shadow 5px 5px 0
      - Karty: border 3px, box-shadow 8px 8px 0
      - Hover: transform translate(-4px, -4px)
      - Active: transform translate(2px, 2px)
   
   6. SPACING SYSTEM
      - Konsekwentny system odstępów (--s1 do --s10)
      - Mobile: mniejsze paddingi
      - Desktop: większe oddychanie przestrzeni
   
   7. INTERAKCJE
      - Transition: 0.2s-0.3s ease
      - Transform dla efektów hover/active
      - Wyraźne stany focus dla dostępności
   
   WAŻNE: Ten styl MUSI być stosowany konsekwentnie w całej aplikacji!
   ============================================================================= */

/* =====================================
   RESET & VARIABLES
   ===================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Monochromatyczna paleta z akcentem */
    --ink: #0A0A0A;
    --coal: #1A1A1A;
    --steel: #2D2D2D;
    --smoke: #808080;
    --ash: #B0B0B0;
    --pearl: #E0E0E0;
    --cloud: #F5F5F5;
    --pure: #FFFFFF;
    
    /* Akcent - neonowy zielony */
    --volt: #00FF88;
    --volt-dark: #00CC6A;
    --volt-dim: #00AA55;
    
    /* Wsparcie */
    --error: #FF3333;
    --warning: #FFB800;
    
    /* Typografia */
    --font-main: 'Inter', -apple-system, system-ui, sans-serif;
    --font-mono: 'Courier New', monospace;
    
    /* Spacing - prosty system */
    --s1: 0.25rem;
    --s2: 0.5rem;
    --s3: 0.75rem;
    --s4: 1rem;
    --s5: 1.5rem;
    --s6: 2rem;
    --s7: 3rem;
    --s8: 4rem;
    --s9: 6rem;
    --s10: 8rem;
}

/* =====================================
   BASE STYLES - MOBILE FIRST
   ===================================== */

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--pure);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typografia - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.25rem, 7vw, 4rem);
    margin-bottom: var(--s4);
}

h2 { 
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: var(--s3);
}

h3 { 
    font-size: clamp(1.25rem, 4vw, 2rem);
}

p {
    margin-bottom: var(--s4);
}

a {
    color: var(--volt);
    text-decoration: none;
    transition: 0.2s ease;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--s4);
}

/* =====================================
   NAVIGATION - MOBILE FIRST
   ===================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--pure);
    border-bottom: 3px solid var(--ink);
    z-index: 9999;
}

.nav-container {
    height: 100%;
    padding: 0 var(--s4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 10000;
}

.nav-logo img {
    height: 80px;
    width: auto;
    display: block;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--ink);
    transition: 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pure);
    border-left: 3px solid var(--ink);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: var(--s5) var(--s4);
    list-style: none;
    overflow-y: auto;
    z-index: 9998;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: var(--s4) 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--pearl);
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link:active {
    color: var(--volt);
    padding-left: var(--s2);
}

.nav-cta {
    display: inline-block;
    margin-top: var(--s4);
    padding: var(--s4) var(--s5);
    background: var(--volt);
    color: var(--ink);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    transition: 0.2s ease;
}

.nav-cta:hover,
.nav-cta:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--ink);
    color: var(--ink);
}

/* =====================================
   HERO SECTION - MOBILE FIRST
   ===================================== */

.hero {
    min-height: calc(70vh - 100px);
    padding: var(--s6) var(--s4);
    margin-top: 100px;
    background: var(--cloud);
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--s5);
    align-items: center;
    text-align: center;
}

.hero-text {
    width: 100%;
    order: 2;
}

.hero-badge {
    display: inline-block;
    padding: var(--s2) var(--s3);
    background: var(--ink);
    color: var(--volt);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--s4);
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--s4);
}

.highlight {
    color: var(--volt);
    background: var(--ink);
    padding: 0 var(--s2);
}

.hero-lead {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--smoke);
    max-width: 600px;
    margin: 0 auto var(--s4);
}

.hero-badges {
    display: flex;
    gap: var(--s2);
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: var(--s5);
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--cloud);
    border: 1px solid var(--pearl);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-item i {
    color: var(--volt);
    font-size: 0.875rem;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--s3);
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Custom Checkbox - Lazy Implementation */
.custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: default;
    padding: var(--s2) var(--s3);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--volt);
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
    box-shadow: 5px 5px 0 var(--volt);
    overflow: hidden;
}

/* Falling packages animation */
.falling-packages {
    position: absolute;
    top: -30px; /* Start above container */
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.package-dynamic {
    position: absolute;
    top: -30px;
    font-size: 1.5rem;
    pointer-events: none;
    will-change: transform;
    filter: blur(0.5px); /* Slight blur for depth */
}

/* Chaotic falling animation */
@keyframes fallChaotic {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    25% {
        transform: translateY(25vh) translateX(var(--drift)) rotate(calc(var(--rotation) * 0.25));
    }
    50% {
        transform: translateY(50vh) translateX(calc(var(--drift) * -0.5)) rotate(calc(var(--rotation) * 0.5));
    }
    75% {
        transform: translateY(75vh) translateX(var(--drift)) rotate(calc(var(--rotation) * 0.75));
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(calc(var(--drift) * 0.5)) rotate(var(--rotation));
        opacity: 0;
    }
}

/* Alternate chaotic animation for variety */
@keyframes fallChaoticAlt {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(20vh) translateX(calc(var(--drift) * -1)) rotate(90deg) scale(1.1);
    }
    40% {
        transform: translateY(40vh) translateX(var(--drift)) rotate(180deg) scale(0.9);
    }
    60% {
        transform: translateY(60vh) translateX(calc(var(--drift) * -0.5)) rotate(270deg) scale(1.05);
    }
    80% {
        transform: translateY(80vh) translateX(calc(var(--drift) * 0.8)) rotate(360deg) scale(0.95);
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(450deg) scale(1);
    }
}

.custom-checkbox:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--volt);
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-mark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: var(--volt);
    border: 2px solid var(--volt);
    margin-right: var(--s2);
    flex-shrink: 0;
    transition: all 0.2s ease;
    z-index: 1;
}

.checkbox-mark:after {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--ink);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: var(--pure);
    font-size: 0.85rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.checkbox-label strong {
    color: var(--pure);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.checkbox-label small {
    color: var(--ash);
    font-size: 0.75rem;
    font-weight: 400;
}

.hero-visual {
    background: transparent;
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    padding: var(--s4) 0;
}

/* =====================================
   REVIEW ANIMATION - SIMPLIFIED
   ===================================== */

.review-animation {
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: var(--pure);
    border: 5px solid var(--volt);
    box-shadow: 10px 10px 0 var(--volt);
    position: relative;
    overflow: hidden;
    animation: expandContainer 1s ease-out forwards, pulse 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes expandContainer {
    0% {
        height: 200px;
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        height: 500px;
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 10px 10px 0 var(--volt);
    }
    50% { 
        box-shadow: 15px 15px 0 var(--volt);
    }
}

/* BEFORE State */
.before-state {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFE5E5;
    padding: var(--s5);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.before-state.active {
    opacity: 1;
    transform: scale(1);
}

.state-label {
    display: flex;
    align-items: center;
    gap: var(--s3);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    padding: var(--s3) var(--s4);
    background: var(--volt);
    border: 3px solid var(--ink);
    margin-bottom: var(--s5);
    animation: labelShake 2s ease-in-out infinite;
}

.label-logo {
    height: 50px;
    width: auto;
}

@keyframes labelShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px) rotate(-1deg); }
    75% { transform: translateX(2px) rotate(1deg); }
}

.sad-reviews {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    margin-bottom: var(--s5);
}

.review-block {
    padding: var(--s3);
    border: 3px solid var(--ink);
    background: var(--pure);
    max-width: 280px;
}

.review-block.bad {
    background: #FFCCCC;
    border-color: #FF3333;
    animation: float 3s ease-in-out infinite;
}

.review-block.bad:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-10px) rotate(-2deg);
    }
}

.review-block .stars {
    font-size: 1rem;
    color: #FF3333;
    font-weight: 700;
}

.review-block p {
    margin: var(--s2) 0 0;
    font-size: 0.875rem;
    color: var(--ink);
    font-style: italic;
}

.before-stats,
.after-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--s3);
    background: var(--ink);
    color: var(--pure);
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 #FF3333;
}

.before-stats {
    animation: glitch 4s ease-in-out infinite;
}

@keyframes glitch {
    0%, 100% { 
        transform: translateX(0);
        box-shadow: 5px 5px 0 #FF3333;
    }
    20% { 
        transform: translateX(-2px);
        box-shadow: 7px 7px 0 #FF3333;
    }
    40% { 
        transform: translateX(2px);
        box-shadow: 3px 3px 0 #FF3333;
    }
}

.stat-big {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FF3333;
}

.after-stats .stat-big {
    color: var(--volt);
}

.after-stats {
    box-shadow: 5px 5px 0 var(--volt);
}

/* AFTER State */
.after-state {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: var(--pure);
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.after-state.active {
    opacity: 1;
    transform: scale(1);
}

.after-state .state-label {
    position: relative;
    z-index: 10;
    margin: var(--s4) auto var(--s3);
}

.date-timeline {
    position: relative;
    z-index: 10;
    display: flex;
    gap: var(--s2);
    justify-content: center;
    margin-bottom: var(--s3);
    padding: 0 var(--s3);
}

.date-marker {
    padding: var(--s2) var(--s3);
    background: var(--pearl);
    border: 2px solid var(--ink);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-marker.active {
    background: var(--volt);
    border-width: 3px;
    transform: scale(1.2);
    font-size: 1.125rem;
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--ink);
}

.falling-reviews {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.falling-review {
    position: absolute;
    background: #1a1a1a;
    padding: 12px 16px;
    min-width: 240px;
    max-width: 300px;
    animation: fall var(--fall-duration, 4s) var(--fall-timing, ease-in) forwards;
    z-index: 1;
    border: 2px solid var(--volt);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    top: -150px; /* Start above viewport */
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    background: var(--volt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user-info {
    flex: 1;
    text-align: left;
}

.review-name {
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
    text-align: left;
}

.review-opinions-count {
    color: #888;
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
}

.review-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-star {
    color: #ffc107;
    font-size: 14px;
}

.review-time-ago {
    color: #888;
    font-size: 10px;
}

.review-comment {
    color: #ddd;
    font-size: 11px;
    line-height: 1.3;
    margin-top: 6px;
    text-align: left;
}

.review-ratings {
    color: #aaa;
    font-size: 10px;
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.review-rating-separator {
    color: #666;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(var(--initial-rotate, 0deg));
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(20px) rotate(var(--initial-rotate, 0deg));
    }
    95% {
        opacity: 1;
        transform: translateY(700px) rotate(var(--initial-rotate, 0deg));
    }
    100% {
        transform: translateY(750px) rotate(var(--initial-rotate, 0deg));
        opacity: 0;
    }
}

/* Bottom Stats Bar */
.bottom-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--ink);
    border-top: 3px solid var(--volt);
    padding: var(--s3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: var(--volt);
    opacity: 0.5;
}

.counter-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--volt);
    line-height: 1;
}

.stat-item .stat-big {
    font-size: 2rem;
    font-weight: 900;
    color: var(--volt);
    line-height: 1;
}

.avg-rating {
    transition: transform 0.3s ease;
}

.stat-item .counter-label,
.stat-item .stat-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pure);
    margin-top: 4px;
}

/* Old timeline styles removed - using simplified animation now */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s2);
    margin-top: var(--s6);
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: var(--s2);
}

.stat-value {
    display: block;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--volt);
}

.stat-label {
    font-size: clamp(0.625rem, 2vw, 0.875rem);
    color: var(--smoke);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Ensure hero stats labels are visible */
.hero-stats .stat-label {
    color: var(--smoke) !important;
}

/* =====================================
   BUTTONS - MOBILE FIRST
   ===================================== */

.btn {
    display: inline-block;
    padding: var(--s4) var(--s6);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    transition: 0.2s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--ink);
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--ink);
}

.btn-primary {
    background: var(--volt);
    color: var(--ink);
}

.btn-secondary {
    background: var(--pure);
    color: var(--ink);
}

/* =====================================
   SECTIONS - MOBILE FIRST
   ===================================== */

.section {
    padding: var(--s8) 0;
}

.section-dark {
    background: var(--ink);
    color: var(--pure);
}

.section-gray {
    background: var(--cloud);
}

.section-header {
    text-align: center;
    margin-bottom: var(--s6);
}

.section-label {
    display: inline-block;
    padding: var(--s2) var(--s3);
    background: var(--volt);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--s3);
}

/* =====================================
   PROCESS STEPS - MOBILE FIRST
   ===================================== */

/* Process Wrapper */
.process-wrapper {
    border: 3px solid var(--volt);
    background: rgba(0, 255, 136, 0.02);
    padding: 0;
    margin-top: var(--s6);
    position: relative;
}

.process-header {
    background: var(--volt);
    color: var(--ink);
    padding: var(--s3) var(--s4);
    display: flex;
    align-items: center;
    gap: var(--s2);
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-header i {
    font-size: 1.5rem;
}

/* Process Flow - Interactive */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: var(--s4);
    position: relative;
}

.process-item {
    display: flex;
    align-items: center;
    gap: var(--s3);
    padding: var(--s4) var(--s5);
    padding-top: calc(var(--s4) + 12px);
    background: var(--coal);
    border: 2px solid transparent;
    border-left: 6px solid var(--smoke);
    position: relative;
    transition: all 0.2s ease;
    margin-bottom: var(--s2);
    opacity: 0.85;
}

.process-step-number {
    position: absolute;
    top: -12px;
    left: var(--s4);
    color: var(--pure);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.process-item.active {
    border-left-color: var(--volt);
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0) 100%);
    transform: translateX(12px) scale(1.02);
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.process-item:hover {
    border-left-color: var(--volt);
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0) 100%);
    transform: translateX(8px);
    opacity: 1;
}

.process-item:hover .process-step-number {
    opacity: 1;
}

.process-icon {
    font-size: 2rem;
    color: var(--volt);
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-item:hover .process-icon {
    transform: scale(1.2) rotate(5deg);
}

.process-content {
    flex: 1;
}

.process-content h3 {
    color: var(--pure);
    font-size: 1.1rem;
    margin-bottom: var(--s2);
    font-weight: 700;
}

.process-content p {
    color: var(--ash);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Filter step - separate from process items */
.filter-step {
    position: relative;
    padding: var(--s4) var(--s3);
    padding-top: calc(var(--s4) + 20px);
    margin-bottom: var(--s2);
    margin-top: var(--s3);
}

.filter-step .process-step-number {
    position: absolute;
    top: 0;
    left: var(--s3);
    color: var(--pure);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.filter-step h3 {
    color: var(--pure);
    font-size: 1.1rem;
    margin-bottom: var(--s3);
    font-weight: 700;
}

.filter-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s3);
}

.filter-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s2);
    padding: var(--s3);
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .filter-path {
        display: grid;
        grid-template-columns: auto auto 1fr;
        flex-direction: row;
        gap: var(--s3);
    }
}

.filter-path.positive {
    border-left-color: var(--volt);
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.08) 0%, transparent 100%);
}

.filter-path.negative {
    border-left-color: var(--smoke);
    background: linear-gradient(90deg, rgba(128, 128, 128, 0.08) 0%, transparent 100%);
}

.filter-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.filter-rating .stars {
    font-size: 0.9rem;
    display: block;
}

.filter-rating .rating-text {
    font-size: 0.75rem;
    color: var(--ash);
    font-weight: 700;
    white-space: nowrap;
}

.filter-flow {
    font-size: 2rem;
    color: var(--volt);
    font-weight: 900;
    opacity: 0.7;
}

.filter-destination {
    display: flex;
    align-items: center;
    gap: var(--s2);
}

.filter-destination i {
    font-size: 1.5rem;
    color: var(--volt);
}

.filter-path.negative .filter-destination i {
    color: var(--smoke);
}

.filter-destination strong {
    display: block;
    color: var(--pure);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.filter-destination small {
    display: block;
    color: var(--ash);
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Active item pulse animation */
@keyframes activePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    }
}

.process-item.active {
    animation: activePulse 2s ease-in-out infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    /* Hero text mobile */
    .hero h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    /* Hero badges mobile - 2 per row */
    .hero-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--s2);
        margin-bottom: var(--s4);
    }
    
    .badge-item {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .badge-item:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: fit-content;
    }
    
    /* Hero buttons mobile */
    .hero-buttons {
        flex-direction: column;
        gap: var(--s2);
        width: 100%;
    }
    
    .custom-checkbox {
        width: 100%;
        justify-content: flex-start;
        padding: var(--s2);
    }
    
    .checkbox-label strong {
        font-size: 0.8rem;
    }
    
    .checkbox-label small {
        font-size: 0.7rem;
    }
    
    .process-wrapper {
        margin-top: var(--s4);
    }
    
    .process-header {
        padding: var(--s2) var(--s3);
        font-size: 0.9rem;
    }
    
    .process-header i {
        font-size: 1.2rem;
    }
    
    .process-flow {
        padding: var(--s3);
    }
    
    .process-item {
        padding: var(--s3);
        gap: var(--s2);
    }
    
    .process-step-number {
        font-size: 0.65rem;
        top: -10px;
        left: var(--s3);
    }
    
    .process-icon {
        font-size: 1.5rem;
        width: 40px;
    }
    
    .process-content h3 {
        font-size: 1rem;
    }
    
    .process-content p {
        font-size: 0.8rem;
    }
    
    /* Mobile styles for filter system */
    .filter-system {
        padding: var(--s3) var(--s2);
        margin: var(--s3) 0;
    }
    
    .filter-title {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: var(--s1);
    }
    
    .filter-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .filter-step {
        padding: var(--s3) var(--s2);
        padding-top: calc(var(--s3) + 16px);
        margin-top: var(--s2);
    }
    
    .filter-step .process-step-number {
        font-size: 0.65rem;
        top: 0;
        left: var(--s2);
    }
    
    .filter-step h3 {
        font-size: 1rem;
    }
    
    .filter-paths {
        grid-template-columns: 1fr 1fr;
        gap: var(--s1);
    }
    
    .filter-path {
        grid-template-columns: 1fr;
        gap: var(--s1);
        padding: var(--s1);
        text-align: center;
    }
    
    .filter-rating {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .filter-rating .stars {
        font-size: 0.7rem;
    }
    
    .filter-rating .rating-text {
        font-size: 0.6rem;
    }
    
    .filter-flow {
        font-size: 1.2rem;
        transform: rotate(90deg);
    }
    
    .filter-destination {
        flex-direction: column;
        gap: 4px;
    }
    
    .filter-destination i {
        font-size: 1rem;
    }
    
    .filter-destination strong {
        font-size: 0.75rem;
    }
    
    .filter-destination small {
        font-size: 0.65rem;
    }
}

/* Keep filter paths side by side on all mobile devices */

/* =====================================
   CARDS - MOBILE FIRST
   ===================================== */

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s5);
    margin-top: var(--s6);
}

.card {
    background: var(--pure);
    border: 3px solid var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
    padding: var(--s6);
    transition: 0.3s ease;
}

.card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--ink);
}

/* Horizontal layout for benefit cards */
.card-horizontal {
    display: flex;
    gap: var(--s4);
    align-items: flex-start;
    padding: var(--s4) var(--s5);
}

.card-horizontal .card-icon {
    font-size: 1.75rem;
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: 40px;
    text-align: center;
}

.card-horizontal .card-content {
    flex: 1;
}

.card-horizontal h3 {
    margin: 0 0 var(--s2) 0;
    font-size: 1.1rem;
    line-height: 1.2;
}

.card-horizontal p {
    margin: 0;
    color: var(--smoke);
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Default card styles for other sections */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--s4);
}

.card h3 {
    margin-bottom: var(--s3);
    font-size: 1.25rem;
}

.card p {
    color: var(--smoke);
    margin: 0;
}

/* =====================================
   PRICING - MOBILE FIRST
   ===================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s5);
    margin-top: var(--s6);
}

.pricing-card {
    background: var(--pure);
    border: 3px solid var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
    padding: var(--s6);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--volt);
    box-shadow: 8px 8px 0 var(--volt);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--s4);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--s2);
    margin-bottom: var(--s3);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
}

.price-period {
    color: var(--smoke);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin: var(--s5) 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--s3) 0;
    border-bottom: 1px solid var(--pearl);
}

/* =====================================
   SECURITY SHOWCASE - MOBILE FIRST
   ===================================== */

.security-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s6);
    margin-top: var(--s6);
}

.security-animation {
    background: var(--pure);
    border: 3px solid var(--volt);
    box-shadow: 8px 8px 0 var(--volt);
    padding: var(--s2) var(--s3);
    position: relative;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.security-screen {
    position: relative;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.security-state {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.security-state.active {
    opacity: 1;
    transform: scale(1);
}

.security-state h3 {
    margin-top: 8px;
    font-size: 0.8rem;
    text-align: center;
    color: var(--ink);
    font-weight: 700;
}

.security-state p {
    margin-top: 4px;
    font-size: 0.6rem;
    color: var(--smoke);
    text-align: center;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.scan-visual,
.phone-visual,
.ai-visual,
.reward-visual {
    font-size: 2.5rem;
    color: var(--volt);
    position: relative;
    display: inline-block;
}

/* Mobile specific styles for security states */
@media (max-width: 768px) {
    .scan-visual,
    .phone-visual,
    .ai-visual,
    .reward-visual {
        font-size: 3.5rem;
    }
    
    .security-state h3 {
        font-size: 1.1rem;
        margin-top: 12px;
    }
    
    .security-state p {
        font-size: 0.85rem;
        max-width: 280px;
    }
    
    .sms-bubble {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

.scan-visual i,
.phone-visual i,
.ai-visual i,
.reward-visual i {
    display: block;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--volt);
    top: 0;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

.sms-bubble {
    position: absolute;
    top: -5px;
    right: -65px;
    background: var(--volt);
    color: var(--ink);
    padding: 2px 6px;
    border: 2px solid var(--ink);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: popIn 0.5s ease, float 2s ease-in-out infinite;
    box-shadow: 2px 2px 0 var(--ink);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.ai-scan {
    position: absolute;
    inset: -20px;
}

.ai-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--volt), transparent);
    animation: aiScan 1.5s linear infinite;
}

.ai-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.ai-line:nth-child(2) { top: 50%; animation-delay: 0.5s; }
.ai-line:nth-child(3) { top: 80%; animation-delay: 1s; }

@keyframes aiScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.check-mark {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--volt);
    color: var(--ink);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    border: 2px solid var(--ink);
    animation: checkPop 0.5s ease;
}

@keyframes checkPop {
    0% { transform: scale(0) rotate(-180deg); }
    100% { transform: scale(1) rotate(0); }
}

.security-progress {
    display: flex;
    justify-content: center;
    gap: var(--s2);
    padding: var(--s3) 0;
    border-top: 2px solid var(--pearl);
    margin-top: var(--s3);
}

.progress-dot {
    width: 12px;
    height: 12px;
    background: var(--pearl);
    border: 2px solid var(--ink);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: var(--volt);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s4);
}

.feature-card {
    background: var(--pure);
    border: 2px solid var(--ink);
    padding: 16px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: auto;
}

.feature-card > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--volt);
}

.feature-card.glow {
    animation: glowPulse 2s ease-in-out infinite;
    border-color: var(--volt);
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); }
}

.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--volt);
    color: var(--ink);
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 2px solid var(--ink);
}

.feature-card h4 {
    font-size: 0.9rem;
    margin: 0 0 4px 0;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.feature-card p {
    color: var(--smoke);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.feature-card > div:last-child {
    flex: 1;
}

/* =====================================
   FAQ - MOBILE FIRST
   ===================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pure);
    border: 3px solid var(--ink);
    margin-bottom: var(--s4);
}

.faq-question {
    padding: var(--s5);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s ease;
    gap: var(--s3);
}

.faq-question:hover {
    background: var(--cloud);
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--volt);
    flex-shrink: 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 900;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer-content {
    padding: 0 var(--s5) var(--s5);
    color: var(--smoke);
}

/* =====================================
   CTA SECTION - MOBILE FIRST
   ===================================== */

.cta-section {
    background: var(--volt);
    border-top: 5px solid var(--ink);
    border-bottom: 5px solid var(--ink);
    padding: var(--s8) var(--s4);
    text-align: center;
}

.cta-content h2 {
    color: var(--ink);
    margin-bottom: var(--s3);
}

.cta-content p {
    color: var(--coal);
    font-size: 1.125rem;
    margin-bottom: var(--s5);
}

/* =====================================
   CONTACT FORM - MOBILE FIRST
   ===================================== */

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pure);
    border: 3px solid var(--ink);
    box-shadow: 10px 10px 0 var(--volt);
    padding: var(--s6) var(--s5);
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s4);
    margin-bottom: var(--s4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.form-group label {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
}

.form-input {
    width: 100%;
    padding: var(--s3) var(--s4);
    font-size: 1rem;
    font-family: inherit;
    background: var(--pure);
    color: var(--ink);
    border: 3px solid var(--ink);
    transition: 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--volt);
    box-shadow: 3px 3px 0 var(--volt);
}

.form-input::placeholder {
    color: var(--smoke);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: var(--s6);
}

.alert-success,
.alert-error {
    padding: var(--s4);
    margin-top: var(--s4);
    font-weight: 700;
    text-align: center;
    border: 3px solid;
}

.alert-success {
    background: var(--volt);
    color: var(--ink);
    border-color: var(--ink);
}

.alert-error {
    background: var(--error);
    color: var(--pure);
    border-color: var(--ink);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--smoke);
    margin-top: var(--s3);
}

/* Tablet and up */
@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-form-wrapper {
        padding: var(--s8) var(--s7);
    }
}

/* =====================================
   FOOTER - MOBILE FIRST
   ===================================== */

footer {
    background: var(--ink);
    color: var(--ash);
    padding: var(--s8) 0 var(--s6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s6);
    margin-bottom: var(--s6);
}

.footer-brand h3 {
    color: var(--pure);
    margin-bottom: var(--s3);
    font-size: 1.5rem;
}

.footer-col h4 {
    color: var(--pure);
    margin-bottom: var(--s4);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--s2);
}

.footer-col a {
    color: var(--ash);
    transition: 0.2s ease;
}

.footer-col a:hover {
    color: var(--volt);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--s6);
    border-top: 2px solid var(--steel);
    color: var(--smoke);
}

/* =====================================
   TABLET STYLES (768px+)
   ===================================== */

@media (min-width: 768px) {
    /* Security Section */
    .security-features {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Navigation */
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        transform: none;
        flex-direction: row;
        padding: 0;
        background: transparent;
        border: none;
        gap: var(--s5);
        align-items: center;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        padding: var(--s2) 0;
        font-size: 1rem;
        border: none;
    }
    
    .nav-link:hover {
        padding-left: 0;
        color: var(--volt);
    }
    
    .nav-cta {
        margin: 0;
        padding: var(--s3) var(--s5);
    }
    
    /* Hero */
    .hero {
        padding: var(--s10) var(--s4);
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--s8);
        text-align: left;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        max-width: none;
        height: 400px;
    }
    
    .hero-buttons {
        flex-direction: row;
        width: auto;
        max-width: none;
        align-items: center;
        justify-content: flex-start;
    }
    
    .custom-checkbox {
        padding: var(--s2) var(--s3);
    }
    
    .btn {
        width: auto;
    }
    
    /* Process Flow */
    .process-flow {
        gap: var(--s2);
    }
    
    .process-item {
        border-left-width: 6px;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

/* =====================================
   DESKTOP STYLES (1024px+)
   ===================================== */

@media (min-width: 1024px) {
    /* Container */
    .container {
        padding: 0 var(--s6);
    }
    
    /* Security Section */
    .security-showcase {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .security-animation {
        height: 220px;
    }
    
    /* Larger content on desktop */
    .scan-visual,
    .phone-visual,
    .ai-visual,
    .reward-visual {
        font-size: 3rem;
    }
    
    .security-state h3 {
        font-size: 1rem;
        margin-top: 12px;
    }
    
    .security-state p {
        font-size: 0.75rem;
        max-width: 240px;
    }
    
    .sms-bubble {
        font-size: 0.75rem;
        padding: 4px 8px;
        right: -75px;
        top: -10px;
    }
    
    .security-features {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Hero */
    .hero-lead {
        margin: 0 0 var(--s6) 0;
    }
}

/* =====================================
   UTILITY CLASSES
   ===================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--s4); }
.mt-6 { margin-top: var(--s6); }
.mt-8 { margin-top: var(--s8); }

.mb-4 { margin-bottom: var(--s4); }
.mb-6 { margin-bottom: var(--s6); }
.mb-8 { margin-bottom: var(--s8); }

.hidden { display: none; }

/* Reward Psychology Section */
.reward-section {
    padding: var(--s5) 0 var(--s8) 0;
    background: var(--pure);
    border-bottom: 3px solid var(--ink);
    overflow: hidden;
}

.reward-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
    align-items: center;
}

.reward-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--s5);
    letter-spacing: -0.02em;
}

.reward-content h2 .text-muted {
    color: var(--smoke);
    font-size: 0.6em;
    font-weight: 600;
}

.reward-content h2 .highlight {
    background: var(--volt);
    color: var(--ink);
    padding: 0 var(--s2);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.insight-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    margin-bottom: var(--s5);
}

.insight {
    display: flex;
    gap: var(--s3);
    padding: var(--s3);
    background: var(--cloud);
    border: 3px solid var(--ink);
    position: relative;
}

.insight i {
    font-size: 1.5rem;
    color: #FF3333;
    flex-shrink: 0;
}

.insight.success {
    background: var(--volt);
    box-shadow: 5px 5px 0 var(--ink);
}

.insight.success i {
    color: var(--ink);
}

.insight strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: var(--s1);
}

.insight p {
    margin: 0;
    color: var(--smoke);
}

.insight.success p {
    color: var(--ink);
}

.psychology-proof {
    display: flex;
    align-items: center;
    gap: var(--s4);
    padding: var(--s4);
    background: var(--ink);
    color: var(--pure);
    border: 3px solid var(--ink);
    margin-bottom: var(--s5);
}

.proof-stat {
    text-align: center;
    flex-shrink: 0;
}

.proof-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--volt);
    line-height: 1;
}

.proof-label {
    display: block;
    font-size: 0.9rem;
    margin-top: var(--s2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-divider {
    width: 3px;
    height: 60px;
    background: var(--volt);
    flex-shrink: 0;
}

.proof-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: var(--s2);
    color: var(--volt);
}

.proof-text p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.btn-reward {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    padding: var(--s3) var(--s5);
    background: var(--volt);
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-reward:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--ink);
}

.btn-reward i {
    font-size: 1.2rem;
}

/* QR Frame Visual */
.reward-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-frame-wrapper {
    position: relative;
    padding: var(--s4);
}

.qr-frame {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    animation: gentleSway 4s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes gentleSway {
    0%, 100% {
        transform: rotate(-2deg) translateY(0);
    }
    25% {
        transform: rotate(1deg) translateY(-5px);
    }
    50% {
        transform: rotate(2deg) translateY(0);
    }
    75% {
        transform: rotate(-1deg) translateY(-3px);
    }
}

.attraction-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 3px solid var(--volt);
    pointer-events: none;
    animation: pulseOut 2s ease-out infinite;
}

@keyframes pulseOut {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.visual-caption {
    display: flex;
    align-items: center;
    gap: var(--s2);
    margin-top: var(--s3);
    padding: var(--s2) var(--s3);
    background: var(--cloud);
    border: 2px solid var(--ink);
    font-size: 0.9rem;
    color: var(--smoke);
}

.visual-caption i {
    color: var(--volt);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reward-grid {
        grid-template-columns: 1fr;
        gap: var(--s5);
    }
    
    .reward-visual {
        order: 1; /* Image after text on mobile */
    }
    
    .qr-frame {
        max-width: 225px;
    }
    
    .psychology-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .proof-divider {
        width: 60px;
        height: 3px;
    }
    
    .btn-reward {
        width: 100%;
        justify-content: center;
    }
}

/* Opinion Counter Backdrop */
.opinion-counter-backdrop {
    display: inline-block;
    background: var(--ink);
    padding: var(--s3) var(--s5);
    margin-bottom: var(--s3);
    border: 3px solid var(--ink);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.opinion-counter-backdrop:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
}

/* Restaurant Carousel moved to restaurant-carousel.css */

/* Print styles */
@media print {
    .navbar, .nav-toggle, .cta-section, footer {
        display: none;
    }
}

/* Loading dots animation */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 20px;
    height: 20px;
    align-items: center;
}

.loading-dots .dot {
    width: 12px;
    height: 12px;
    background: var(--coal);
    border: 2px solid var(--ink);
    display: block;
    transition: all 0.3s ease;
}

/* Animate dots when parent is active */
.before-state.active .loading-dots .dot {
    animation: dotPulse 4s ease-in-out forwards;
}

.before-state.active .loading-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.before-state.active .loading-dots .dot:nth-child(2) {
    animation-delay: 0.8s;
}

.before-state.active .loading-dots .dot:nth-child(3) {
    animation-delay: 1.6s;
}

.before-state.active .loading-dots .dot:nth-child(4) {
    animation-delay: 2.4s;
}

.before-state.active .loading-dots .dot:nth-child(5) {
    animation-delay: 3.2s;
}

@keyframes dotPulse {
    0% {
        background: var(--coal);
        transform: scale(1);
    }
    50% {
        background: var(--volt);
        transform: scale(1.3);
        box-shadow: 0 0 10px var(--volt);
    }
    100% {
        background: var(--volt);
        transform: scale(1);
        box-shadow: 2px 2px 0 var(--ink);
    }
}