/* ========================================
   Loyalty Zone Landing Page Styles
   Clean, Minimalist, Apple-esque Design
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #007AFF;
    --primary-dark: #0056CC;
    --primary-light: #4DA3FF;
    --secondary: #5856D6;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Gradients - Now using solid colors */
    --gradient-primary: #007aff;
    --gradient-light: var(--gray-50);
    
    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 122, 255, 0.05);
}

.btn-text {
    padding: 14px 20px;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    margin-bottom: 16px;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--gray-900);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding: 160px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #F8FAFF;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 122, 255, 0.15);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(88, 86, 214, 0.15);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 122, 255, 0.1);
    top: 50%;
    left: 30%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

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

.hero h1 {
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-500);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 12px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-notch {
    width: 120px;
    /* height: 28px; */
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    margin: 0 auto 16px;
    position: relative;
}

.phone-notch::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phone-screen {
    height: calc(100% - 16px);
    background: #f2f2f7;
    border-radius: 28px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.wallet-card {
    background: #007aff;
    border-radius: 16px;
    padding: 16px;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
    animation: cardSlide 0.6s ease-out;
    animation-fill-mode: both;
}

.wallet-card-1 {
    animation-delay: 0.2s;
}

.wallet-card-2 {
    animation-delay: 0.4s;
    background: #202020;
    box-shadow: 0 8px 24px rgba(32, 32, 32, 0.5);
}

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

.wallet-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.wallet-card-header.gold {
    margin-bottom: 12px;
}

.wallet-logo-placeholder {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wallet-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.wallet-brand {
    font-weight: 600;
    font-size: 14px;
}

.tier-badge {
    margin-left: auto;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.wallet-stamps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.stamp {
    width: 100%;
    aspect-ratio: 1;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stamp.filled {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

.stamp.filled::after {
    content: '☕';
    font-size: 16px;
}

.wallet-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.9;
}

.reward-text {
    font-weight: 600;
}

.wallet-points {
    text-align: center;
    margin-bottom: 8px;
}

.points-value {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.points-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.wallet-cashback {
    text-align: center;
    font-size: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

/* Notification Popup */
.notification-popup {
    position: absolute;
    top: 60px;
    right: -60px;
    width: 260px;
    padding: 14px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 12px;
    animation: slideIn 0.5s ease-out 1s both;
}

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

.notif-icon {
    font-size: 24px;
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-900);
}

.notif-body {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ========================================
   PROBLEM/SOLUTION SECTION
   ======================================== */
.problem-solution {
    padding: 100px 0;
    background: var(--white);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.problem-card,
.solution-card {
    padding: 40px;
    border-radius: var(--radius-xl);
}

.problem-card {
    background: #FEF2F2;
    border: 1px solid #FECACA;
}

.solution-card {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-icon {
    background: rgba(239, 68, 68, 0.1);
}

.solution-icon {
    background: rgba(16, 185, 129, 0.1);
}

.problem-card h3,
.solution-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.problem-list li,
.solution-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-600);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-list li:last-child,
.solution-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 600;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* ========================================
   CARD TYPES SECTION
   ======================================== */
.card-types {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.card-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-type-item {
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
    background: var(--white);
}

.card-type-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card-type-icon {
    margin-bottom: 20px;
}

.card-type-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

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

/* ========================================
   FEATURES SHOWCASE
   ======================================== */
.features-showcase {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-block:last-of-type {
    margin-bottom: 0;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-number {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}

.feature-content h3 {
    margin-bottom: 16px;
}

.feature-content > p {
    color: var(--gray-500);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

/* Feature Mockups */
.feature-visual {
    display: flex;
    justify-content: center;
}

/* Creator Mockup */
.creator-mockup {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FEBC2E; }
.mockup-dot.green { background: #28C840; }

.mockup-title {
    margin-left: auto;
    font-size: 13px;
    color: var(--gray-500);
}

.mockup-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 280px;
}

.designer-sidebar {
    padding: 20px;
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.design-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.logo-upload-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gray-200);
    border-radius: 12px;
    border: 2px dashed var(--gray-300);
}

/* Interactive Logo Upload Box */
.logo-upload-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.logo-upload-box:hover {
    border-color: var(--primary);
    background: rgba(0, 122, 255, 0.05);
}

.logo-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--gray-400);
    font-size: 10px;
    width: 100%;
    height: 100%;
}

.logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.logo-preview.has-image svg,
.logo-preview.has-image span {
    display: none;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.swatch {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.swatch:hover {
    transform: scale(1.1);
}

.swatch.active {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-color: white;
    outline: 2px solid var(--primary);
}

/* Card Type Buttons */
.card-type-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.type-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.type-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.type-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.type-btn svg {
    width: 14px;
    height: 14px;
}

.mock-select {
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 13px;
    background: var(--white);
}

.designer-preview {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
}

/* Preview Phone Frame */
.preview-phone-frame {
    width: 180px;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.preview-phone-notch {
    width: 50px;
    height: 16px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 8px;
}

.preview-phone-screen {
    background: #f2f2f7;
    border-radius: 16px;
    padding: 8px;
    min-height: 260px;
}

/* Wallet Preview Card */
.wallet-preview-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #007AFF;
    color: white;
    font-family: var(--font-family);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
}

.wpc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 10px 6px;
}

.wpc-logo {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.wpc-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wpc-logo svg {
    width: 12px;
    height: 12px;
    opacity: 0.8;
}

.wpc-title {
    font-size: 9px;
    font-weight: 600;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wpc-header-right {
    text-align: right;
    margin-left: auto;
}

.wpc-label {
    display: block;
    font-size: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.wpc-value {
    display: block;
    font-size: 9px;
    font-weight: 700;
}

/* Stamps Area */
.wpc-stamps-area {
    padding: 6px 10px;
}

.wpc-stamps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 8px;
}

.wpc-stamp {
    aspect-ratio: 1;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.wpc-stamp.filled {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

/* Strip Area (for loyalty/gift) */
.wpc-strip-area {
    padding: 6px 10px;
}

.wpc-strip-placeholder {
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpc-strip-area.hidden {
    display: none;
}

/* Info Rows */
.wpc-info {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    gap: 8px;
}

.wpc-row {
    flex: 1;
}

.wpc-row:last-child {
    text-align: right;
}

.wpc-row-label {
    display: block;
    font-size: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.7;
    margin-bottom: 1px;
}

.wpc-row-value {
    font-size: 8px;
    font-weight: 500;
}

/* Barcode */
.wpc-barcode {
    background: white;
    margin: 6px 10px 10px;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wpc-qr {
    color: #1a1a1a;
}

.wpc-powered {
    font-size: 5px;
    color: #9ca3af;
    margin-top: 4px;
}

/* Hidden utility class */
.hidden {
    display: none !important;
}

/* Geo Visual */
.geo-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #E8F4F8;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(90deg, rgba(0, 122, 255, 0.05) 0px, rgba(0, 122, 255, 0.05) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(rgba(0, 122, 255, 0.05) 0px, rgba(0, 122, 255, 0.05) 1px, transparent 1px, transparent 40px);
    background-size: 40px 40px;
}

.store-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 122, 255, 0.3));
}

.geo-radius {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: expandRadius 3s ease-in-out infinite;
}

@keyframes expandRadius {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.customer-dot {
    position: absolute;
    top: 35%;
    left: 70%;
    width: 16px;
    height: 16px;
    background: var(--success);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.customer-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    animation: customerPulse 2s ease-out infinite;
}

@keyframes customerPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.geo-notification {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 260px;
    padding: 16px;
    animation: slideUp 0.5s ease-out 0.5s both;
}

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

.geo-notif-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

.app-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 6px;
}

.notif-time {
    margin-left: auto;
    font-weight: 400;
    color: var(--gray-400);
}

.geo-notification p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Tiers Visual */
.tiers-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.tier-card {
    position: relative;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.tier-card.bronze {
    background: #CD7F32;
    color: white;
}

.tier-card.silver {
    background: #C0C0C0;
    color: white;
}

.tier-card.gold {
    background: #FFD700;
    color: #333;
}

.tier-card.black {
    background: #202020;
    color: #fff;
}

.tier-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.tier-card.active {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(218, 165, 32, 0.4);
}

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

.tier-logo-placeholder {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.tier-name {
    font-weight: 700;
    font-size: 16px;
}

.tier-benefit {
    font-weight: 600;
    font-size: 14px;
}

.tier-range {
    font-size: 12px;
    opacity: 0.8;
}

.tier-crown {
    position: absolute;
    top: -8px;
    right: 16px;
}

.tier-progress {
    margin-top: 8px;
}

.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.progress-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

/* Scanner Mockup */
.scanner-mockup {
    width: 100%;
    max-width: 320px;
    overflow: hidden;
}

.scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--gray-900);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.scanner-status {
    color: var(--success);
    font-size: 12px;
}

.scanner-viewfinder {
    position: relative;
    height: 200px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    opacity: 0.6;
}

.scan-line {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
    0%, 100% { top: 20%; opacity: 0; }
    50% { top: 80%; opacity: 1; }
}

.scanner-result {
    margin: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.result-stamps {
    font-size: 12px;
    color: var(--gray-500);
}

.add-stamp-btn {
    padding: 10px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.add-stamp-btn:hover {
    transform: scale(1.05);
}

.add-stamp-btn.hidden {
    display: none;
}

/* Redeem Gift Button */
.redeem-gift-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.redeem-gift-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
}

.redeem-gift-btn.hidden {
    display: none;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* Scanner result flex wrap for buttons */
.scanner-result {
    flex-wrap: wrap;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    margin-bottom: 64px;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.step-icon {
    margin-bottom: 24px;
}

.step-card h4 {
    margin-bottom: 12px;
    font-size: 20px;
}

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

.step-connector {
    padding-top: 60px;
    color: var(--gray-300);
}

/* Tech Credibility */
.tech-credibility {
    padding: 32px 40px;
    background: var(--white);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--gray-900);
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tech-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-900);
}

.tech-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 15px;
    color: var(--gray-500);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--gray-900);
}

.save-badge {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-left: 4px;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

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

.pricing-card {
    padding: 40px 32px;
    text-align: center;
    background: var(--white);
    position: relative;
    transition: all var(--transition-base);
}

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

.pricing-card.featured {
    background: rgba(0, 122, 255, 0.03);
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

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

.pricing-header h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

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

.pricing-price {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 8px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.02em;
}

.period {
    font-size: 16px;
    color: var(--gray-500);
    margin-top: auto;
    margin-bottom: 8px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

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

.pricing-features li.disabled {
    color: var(--gray-400);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    padding: 32px;
    background: var(--white);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

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

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

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

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

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

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 60px;
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.cta-note {
    font-size: 14px;
    color: var(--gray-500);
}

/* Floating Cards */
.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-cards {
    position: relative;
    width: 280px;
    height: 200px;
}

.float-card {
    position: absolute;
    width: 180px;
    height: 100px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.float-card.fc-1 {
    top: 0;
    left: 0;
    background: #007aff;
    animation: floatCard1 4s ease-in-out infinite;
}

.float-card.fc-2 {
    top: 40px;
    left: 60px;
    z-index: 1;
    animation: floatCard2 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.float-card.fc-3 {
    top: 80px;
    left: 120px;
    background: #FFD700;
    animation: floatCard3 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.fc-logo {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    margin-bottom: 16px;
}

.float-card.fc-2 .fc-logo {
    background: var(--gray-200);
}

.fc-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fc-lines span {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.float-card.fc-2 .fc-lines span {
    background: var(--gray-200);
}

.fc-lines span:first-child {
    width: 100%;
}

.fc-lines span:last-child {
    width: 60%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
}

.wallet-badges {
    display: flex;
    gap: 24px;
}

.wallet-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
}

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

/* Tablet Breakpoint - 1024px */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .notification-popup {
        right: -20px;
    }
    
    /* Feature Blocks */
    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
        margin-bottom: 80px;
    }
    
    .feature-block.reverse > * {
        order: unset;
        direction: ltr;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-list {
        align-items: center;
    }
    
    .feature-number {
        font-size: 48px;
    }
    
    /* Card Creator Mockup - Tablet */
    .mockup-body {
        grid-template-columns: 140px 1fr;
        min-height: 260px;
    }
    
    .designer-sidebar {
        padding: 16px;
        gap: 16px;
    }
    
    /* Geo Visual */
    .geo-visual {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .geo-notification {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -20px;
        width: 100%;
    }
    
    /* Tiers Visual */
    .tiers-visual {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Scanner Mockup */
    .scanner-mockup {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* CTA Section */
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 32px;
        gap: 40px;
    }
    
    .cta-actions {
        align-items: center;
    }
    
    .cta-visual {
        order: -1;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile Breakpoint - 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Typography Adjustments */
    h1 { font-size: clamp(2rem, 6vw, 3rem); }
    h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* Navigation - Hide desktop, show mobile button */
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Problem/Solution Grid */
    .ps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .problem-card,
    .solution-card {
        padding: 32px 24px;
    }
    
    .problem-card h3,
    .solution-card h3 {
        font-size: 20px;
    }
    
    /* Card Types Grid */
    .card-types-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .card-type-item {
        padding: 24px 16px;
    }
    
    .card-type-item h4 {
        font-size: 15px;
    }
    
    .card-type-item p {
        font-size: 13px;
    }
    
    /* Features Showcase */
    .feature-block,
    .feature-block.reverse {
        margin-bottom: 60px;
        gap: 32px;
    }
    
    .feature-content > p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    /* Card Creator Mockup - Switch to stacked layout */
    .mockup-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .designer-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 16px;
        gap: 12px;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .design-option {
        flex: 1;
        min-width: 80px;
    }
    
    .design-option:nth-child(3) {
        flex-basis: 100%;
    }
    
    .card-type-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .type-btn {
        flex: 1;
        padding: 8px;
        font-size: 11px;
        flex-direction: column;
        gap: 4px;
    }
    
    .type-btn span {
        display: none;
    }
    
    .designer-preview {
        padding: 20px;
    }
    
    .preview-phone-frame {
        width: 180px;
    }
    
    .preview-phone-screen {
        min-height: 220px;
    }
    
    /* Geo Visual */
    .map-placeholder {
        height: 240px;
    }
    
    .geo-radius {
        width: 140px;
        height: 140px;
    }
    
    .geo-notification {
        width: 100%;
        padding: 14px;
    }
    
    .geo-notification p {
        font-size: 12px;
    }
    
    /* Tiers Visual */
    .tier-card {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .tier-logo-placeholder {
        width: 32px;
        height: 32px;
    }
    
    .tier-name {
        font-size: 14px;
    }
    
    .tier-benefit {
        font-size: 12px;
    }
    
    .tier-range {
        font-size: 11px;
    }
    
    /* Scanner Mockup */
    .scanner-viewfinder {
        height: 160px;
    }
    
    .scanner-result {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px;
    }
    
    .result-avatar {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .add-stamp-btn,
    .redeem-gift-btn {
        width: 100%;
        margin-top: 8px;
    }
    
    /* How It Works */
    .steps-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    
    .step-card {
        max-width: none;
        padding: 32px 24px;
    }
    
    .step-connector {
        display: none;
    }
    
    /* Tech Credibility */
    .tech-credibility {
        padding: 24px;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-header {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    /* Pricing */
    .pricing-toggle {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-card {
        padding: 32px 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .floating-cards {
        width: 220px;
        height: 160px;
    }
    
    .float-card {
        width: 140px;
        height: 80px;
        padding: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-brand p {
        max-width: none;
    }
    
    .footer-links h5 {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 32px;
    }
}

/* Small Mobile Breakpoint - 480px */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero h1 br {
        display: none;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Phone Mockup */
    .phone-frame {
        width: 220px;
        height: 460px;
        padding: 10px;
        border-radius: 36px;
    }
    
    .phone-notch {
        width: 100px;
        /* height: 24px; */
    }
    
    .phone-screen {
        padding: 16px 12px;
        border-radius: 28px;
        gap: 12px;
    }
    
    .wallet-card {
        padding: 14px;
        border-radius: 14px;
    }
    
    .wallet-card-header {
        margin-bottom: 12px;
    }
    
    .wallet-logo-placeholder {
        width: 28px;
        height: 28px;
    }
    
    .wallet-brand {
        font-size: 12px;
    }
    
    .tier-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .wallet-stamps {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .stamp.filled::after {
        font-size: 14px;
    }
    
    .wallet-footer {
        font-size: 11px;
    }
    
    .points-value {
        font-size: 28px;
    }
    
    .points-label {
        font-size: 10px;
    }
    
    .wallet-cashback {
        font-size: 11px;
        padding: 6px;
    }
    
    /* Notification Popup */
    .notification-popup {
        position: static;
        margin-top: 20px;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .notif-content {
        gap: 4px;
    }
    
    .notif-title {
        font-size: 12px;
    }
    
    .notif-body {
        font-size: 11px;
    }
    
    /* Card Types */
    .card-types-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card-type-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }
    
    .card-type-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .card-type-icon svg {
        width: 40px;
        height: 40px;
    }
    
    /* Problem/Solution Cards */
    .problem-card,
    .solution-card {
        padding: 24px 20px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .problem-card h3,
    .solution-card h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .problem-list li,
    .solution-list li {
        padding: 10px 0;
        padding-left: 24px;
        font-size: 14px;
    }
    
    /* Feature Blocks */
    .feature-block {
        margin-bottom: 48px;
    }
    
    .feature-number {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .feature-content h3 {
        font-size: 22px;
    }
    
    .feature-content > p {
        font-size: 15px;
    }
    
    .feature-list li {
        font-size: 14px;
        gap: 10px;
    }
    
    /* Card Creator Mockup - Stack everything */
    .creator-mockup {
        max-width: 100%;
    }
    
    .mockup-header {
        padding: 12px 16px;
    }
    
    .mockup-title {
        font-size: 12px;
    }
    
    .designer-sidebar {
        padding: 14px;
        gap: 10px;
    }
    
    .option-label {
        font-size: 10px;
    }
    
    .logo-upload-box {
        width: 48px;
        height: 48px;
    }
    
    .swatch {
        width: 20px;
        height: 20px;
    }
    
    .color-swatches {
        gap: 6px;
    }
    
    .type-btn {
        padding: 6px;
    }
    
    .type-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .designer-preview {
        padding: 16px;
    }
    
    .preview-phone-frame {
        width: 180px;
    }
    
    .preview-phone-screen {
        min-height: 180px;
        padding: 6px;
    }
    
    /* Geo Visual */
    .geo-visual {
        max-width: 100%;
    }
    
    .map-placeholder {
        height: 200px;
    }
    
    .store-pin svg {
        width: 28px;
        height: 35px;
    }
    
    .geo-radius {
        width: 120px;
        height: 120px;
    }
    
    .customer-dot {
        width: 14px;
        height: 14px;
    }
    
    .geo-notification {
        padding: 12px;
    }
    
    .geo-notif-header {
        font-size: 12px;
    }
    
    .app-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Tiers Visual */
    .tier-card {
        padding: 14px 16px;
    }
    
    .tier-card.active {
        transform: scale(1.02);
    }
    
    .tier-logo-placeholder {
        width: 28px;
        height: 28px;
    }
    
    .tier-crown {
        top: -6px;
        right: 12px;
    }
    
    .tier-crown svg {
        width: 20px;
        height: 20px;
    }
    
    .progress-label {
        font-size: 12px;
    }
    
    /* Scanner Mockup */
    .scanner-mockup {
        max-width: 100%;
    }
    
    .scanner-header {
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .scanner-viewfinder {
        height: 140px;
    }
    
    .qr-placeholder svg {
        width: 100px;
        height: 100px;
    }
    
    .scanner-result {
        margin: 12px;
        padding: 12px;
    }
    
    .result-name {
        font-size: 13px;
    }
    
    .result-stamps {
        font-size: 11px;
    }
    
    .add-stamp-btn,
    .redeem-gift-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* How It Works */
    .step-card {
        padding: 28px 20px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: -12px;
    }
    
    .step-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .step-card h4 {
        font-size: 18px;
    }
    
    .step-card p {
        font-size: 14px;
    }
    
    /* Tech Credibility */
    .tech-credibility {
        padding: 20px;
    }
    
    .tech-header {
        margin-bottom: 20px;
        font-size: 14px;
    }
    
    .tech-label {
        font-size: 14px;
    }
    
    .tech-desc {
        font-size: 13px;
    }
    
    /* Pricing */
    .pricing-toggle {
        margin-bottom: 32px;
    }
    
    .toggle-label {
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .pricing-header h4 {
        font-size: 22px;
    }
    
    .pricing-header p {
        font-size: 13px;
    }
    
    .currency {
        font-size: 20px;
    }
    
    .amount {
        font-size: 42px;
    }
    
    .period {
        font-size: 14px;
    }
    
    .pricing-features li {
        font-size: 14px;
        padding: 10px 0;
        gap: 10px;
    }
    
    .featured-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 42px;
        height: 42px;
        font-size: 12px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-role {
        font-size: 12px;
    }
    
    /* CTA */
    .cta-card {
        padding: 28px 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .cta-note {
        font-size: 12px;
    }
    
    .floating-cards {
        width: 180px;
        height: 140px;
    }
    
    .float-card {
        width: 120px;
        height: 70px;
        border-radius: 12px;
        padding: 10px;
    }
    
    .fc-logo {
        width: 24px;
        height: 24px;
        margin-bottom: 12px;
    }
    
    .fc-lines span {
        height: 6px;
    }
    
    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-brand .logo {
        font-size: 18px;
    }
    
    .footer-brand p {
        font-size: 13px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .footer-links h5 {
        margin-bottom: 12px;
    }
    
    .footer-links ul {
        gap: 10px;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .wallet-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .wallet-badge {
        font-size: 11px;
    }
}

/* Extra small devices - 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .phone-frame {
        width: 200px;
        height: 420px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .card-type-item {
        padding: 16px;
    }
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}

.lang-trigger:hover {
    background: var(--gray-200);
    border-color: var(--gray-300);
}

.lang-trigger svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.language-switcher.open .lang-trigger svg {
    transform: rotate(180deg);
}

.current-lang {
    font-weight: 600;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.language-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
    font-size: 14px;
    color: var(--gray-700);
}

.lang-option:hover {
    background: var(--gray-100);
}

.lang-option.active {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
}

.lang-option .lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-option .lang-name {
    font-weight: 500;
}

.lang-option .lang-native {
    margin-left: auto;
    font-size: 12px;
    color: var(--gray-500);
}

.lang-option.active .lang-native {
    color: var(--primary);
    opacity: 0.7;
}

/* Mobile language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
    }
    
    .mobile-menu .language-switcher {
        width: 100%;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-200);
    }
    
    .mobile-menu .lang-trigger {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu .lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid var(--gray-200);
    }
    
    .mobile-menu .language-switcher:not(.open) .lang-dropdown {
        display: none;
    }
    
    .mobile-menu .language-switcher.open .lang-dropdown {
        display: block;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
