/* ===== SUPERUNICO MODERN LANDING PAGE 2025 ===== */
/* Matching widget/dashboard UI design system */

/* === ROOT VARIABLES (MATCHING WIDGET/DASHBOARD) === */
:root {
    /* Superunico Brand Colors */
    --superunico-primary: #ff2668;
    --superunico-secondary: #ff4081;
    --superunico-gradient: linear-gradient(135deg, #ff2668 0%, #ff4081 100%);
    --superunico-light: #ffe8f0;
    --superunico-dark: #990033;
    --superunico-shadow: 0 4px 20px rgba(255, 38, 104, 0.15);
    --superunico-shadow-hover: 0 8px 30px rgba(255, 38, 104, 0.25);
    --superunico-border-radius: 20px;
    --superunico-border-radius-sm: 12px;
    --superunico-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Extended Color System */
    --accent: #ffd700;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;
    
    /* Modern Gradients */
    --gradient-hero: linear-gradient(135deg, var(--superunico-primary) 0%, #8b5cf6 50%, var(--superunico-secondary) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-8);
}

.loading-icon {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: loading-slide 1.5s ease-in-out infinite;
}

@keyframes loading-slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(255, 38, 104);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--superunico-transition);
}

.navbar.scrolled {
    background: rgb(255, 38, 104);
    box-shadow: 0 4px 20px rgba(255, 38, 104, 0.25);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: opacity var(--superunico-transition);
    position: relative;
}

.nav-link:hover {
    opacity: 0.9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width var(--superunico-transition);
}

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

.nav-cta {
    background: white !important;
    color: var(--superunico-primary) !important;
    border: none !important;
    border-radius: var(--superunico-border-radius-sm) !important;
    padding: var(--space-3) var(--space-6) !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    transition: var(--superunico-transition) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 999px;
    transition: var(--superunico-transition);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float-complex 8s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-shape.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    right: 25%;
    animation-delay: 6s;
}

.floating-shape.shape-5 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 40%;
    animation-delay: 1s;
}

@keyframes float-complex {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
    50% { transform: translateY(0px) translateX(20px) rotate(180deg); }
    75% { transform: translateY(20px) translateX(10px) rotate(270deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

/* Gold tier emblem in hero */
.tier-emblem {
    margin-bottom: var(--space-4);
}
.tier-emblem-image {
    width: 72px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 6px 18px rgba(255, 215, 0, 0.35));
    animation: emblem-float 6s ease-in-out infinite;
}
@keyframes emblem-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Hero trust badges */
.hero-trust {
    margin-top: var(--space-6);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: 999px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* Mega CTA styling */
.mega-cta {
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-5) var(--space-8) !important;
    min-width: 220px;
}

.mega-cta small {
    font-size: var(--font-size-xs);
    opacity: 0.9;
    font-weight: 500;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: 999px;
    font-weight: 700;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.5); }
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: var(--space-8);
    max-width: 500px;
    animation: fade-in-up 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fade-in-up {
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 1s; }
.stat-item:nth-child(2) { animation-delay: 1.2s; }
.stat-item:nth-child(3) { animation-delay: 1.4s; }

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--accent);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: var(--space-6);
    height: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.app-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.app-pill {
    display: inline-block;
    background: var(--superunico-primary);
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: 999px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-4);
}

.app-balance {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--superunico-primary);
    margin-bottom: var(--space-2);
}

.app-card {
    background: white;
    border-radius: var(--superunico-border-radius);
    padding: var(--space-6);
    box-shadow: var(--superunico-shadow);
    margin-bottom: var(--space-6);
    border: 1px solid var(--superunico-light);
}

.card-title {
    font-weight: 700;
    color: var(--superunico-primary);
    margin-bottom: var(--space-4);
    text-align: center;
}

.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: var(--space-3);
}

.progress-fill {
    height: 100%;
    background: var(--superunico-gradient);
    border-radius: 999px;
    animation: progress-fill 2s ease-out 2s forwards;
    width: 0%;
}

@keyframes progress-fill {
    to { width: 75%; }
}

.progress-text {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.app-rewards {
    background: var(--superunico-light);
    border-radius: var(--superunico-border-radius-sm);
    padding: var(--space-4);
}

.reward-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.reward-item span {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--superunico-primary);
}

.reward-item small {
    color: var(--gray-600);
    font-size: var(--font-size-xs);
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffb700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 18px;
    animation: coin-float 4s ease-in-out infinite;
}

.coin-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.coin-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1s;
}

.coin-3 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes coin-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s ease-in-out infinite;
}

@keyframes wheel-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border: none;
    border-radius: var(--superunico-border-radius);
    font-weight: 700;
    font-size: var(--font-size-base);
    text-decoration: none;
    cursor: pointer;
    transition: var(--superunico-transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: var(--superunico-gradient);
    color: white;
    box-shadow: var(--superunico-shadow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--superunico-shadow-hover);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.button-arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform var(--superunico-transition);
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

.play-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ===== SECTIONS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

section {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-block;
    background: rgba(255, 38, 104, 0.08);
    border: 1px solid rgba(255, 38, 104, 0.18);
    color: var(--superunico-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: 999px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    padding: var(--space-8);
    background: white;
    border-radius: var(--superunico-border-radius);
    box-shadow: var(--superunico-shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--superunico-transition);
    opacity: 0;
    transform: translateY(50px);
}

.step-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: step-reveal 0.6s ease-out forwards;
}

.step-item:nth-child(1) { animation-delay: 0.2s; }
.step-item:nth-child(2) { animation-delay: 0.4s; }
.step-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes step-reveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--superunico-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.step-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.steps-visual {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    pointer-events: none;
}

.connection-line {
    height: 2px;
    background: var(--superunico-gradient);
    position: relative;
    margin: 0 10%;
}

.connection-line::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: var(--superunico-primary);
    border-radius: 50%;
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.benefit-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--superunico-border-radius);
    box-shadow: var(--superunico-shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--superunico-transition);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-card.featured {
    border: 2px solid var(--superunico-primary);
    background: var(--superunico-gradient);
    color: white;
    transform: scale(1.05);
}

.benefit-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: var(--space-1) var(--space-4);
    border-radius: 999px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--superunico-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.benefit-card.featured .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--superunico-primary);
    stroke-width: 2;
    fill: none;
}

.benefit-card.featured .benefit-icon svg {
    stroke: white;
}

.benefit-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.benefit-card.featured h3 {
    color: white;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.benefit-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--superunico-primary);
}

.benefit-card.featured .stat-number {
    color: var(--accent);
}

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

.benefit-card.featured .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== TIERS ===== */
.tiers {
    background: var(--gray-100);
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

.tier-card {
    background: white;
    border-radius: var(--superunico-border-radius);
    padding: var(--space-8);
    box-shadow: var(--superunico-shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--superunico-transition);
    position: relative;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tier-card.featured {
    border-color: var(--superunico-primary);
    transform: scale(1.05);
    background: var(--superunico-gradient);
    color: white;
}

.tier-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.tier-card[data-tier="black"] {
    background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
    color: white;
    border-color: #ffd700;
}

.tier-card[data-tier="black"]:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.tier-card[data-tier="silver"] {
    border-color: #c0c0c0;
}

.tier-card[data-tier="silver"]:hover {
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.3);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: 999px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.tier-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.tier-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
    display: block;
}
.tier-icon-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.tier-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--gray-900);
}

.tier-card.featured h3 {
    color: white;
}

.tier-percentage {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--superunico-primary);
    margin-bottom: var(--space-4);
}

.tier-card.featured .tier-percentage {
    color: var(--accent);
}

.tier-card[data-tier="black"] .tier-percentage {
    color: var(--accent);
}

.tier-card[data-tier="silver"] .tier-percentage {
    color: #8b5cf6;
}

.tier-card[data-tier="regular"] .tier-percentage {
    color: var(--gray-600);
}

.tier-card[data-tier="gold"] .tier-percentage {
    color: var(--accent);
}

.tier-requirement {
    text-align: center;
    margin-bottom: var(--space-6);
    padding: var(--space-3) var(--space-4);
    background: var(--gray-100);
    border-radius: var(--superunico-border-radius-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.tier-card.featured .tier-requirement {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tier-card[data-tier="black"] .tier-requirement {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent);
}

.tier-benefits {
    list-style: none;
}

.tier-benefits li {
    padding: var(--space-2) 0;
    color: var(--gray-600);
    position: relative;
    padding-left: var(--space-6);
}

.tier-card.featured .tier-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.tier-card[data-tier="black"] .tier-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--superunico-primary);
    font-weight: 700;
}

.tier-card.featured .tier-benefits li::before {
    color: var(--accent);
}

.tier-card[data-tier="black"] .tier-benefits li::before {
    color: var(--accent);
}

.tier-progression {
    text-align: center;
}

.progression-bar {
    width: 100%;
    max-width: 600px;
    margin: 0 auto var(--space-4);
    position: relative;
    height: 6px;
    background: var(--gray-200);
    border-radius: 999px;
}

.progression-fill {
    height: 100%;
    background: var(--superunico-gradient);
    border-radius: 999px;
    width: 25%;
    transition: width 2s ease-out;
}

.progression-steps {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
}

.progression-steps .step {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 3px solid white;
    transition: var(--superunico-transition);
}

.progression-steps .step.active {
    background: var(--superunico-primary);
    box-shadow: 0 0 0 4px var(--superunico-light);
}

.progression-text {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--superunico-border-radius);
    box-shadow: var(--superunico-shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--superunico-transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured {
    border: 2px solid var(--superunico-primary);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.testimonial-content {
    margin-bottom: var(--space-6);
}

.stars {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-4);
}

.testimonial-content p {
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    font-size: var(--font-size-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.author-info span {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

/* Testimonial metrics */
.testimonial-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    margin-top: var(--space-4);
    padding: var(--space-3);
    background: var(--superunico-light);
    border-radius: var(--superunico-border-radius-sm);
}

.metric-value {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--superunico-primary);
}

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

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float-complex 10s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float-complex 8s ease-in-out infinite reverse;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-10);
    opacity: 0.9;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto var(--space-10);
}

.form-group {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.email-input {
    flex: 1;
    padding: var(--space-4) var(--space-6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--superunico-border-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: var(--font-size-base);
    outline: none;
    transition: var(--superunico-transition);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.form-note {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    text-align: center;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
}

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

.trust-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--accent);
    margin-bottom: var(--space-1);
}

.trust-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* Urgency banner */
.urgency-banner {
    margin-top: var(--space-8);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.1));
    border: 2px solid var(--accent);
    border-radius: var(--superunico-border-radius);
    text-align: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        transform: scale(1.02);
    }
}

.urgency-banner p {
    margin: 0;
    font-size: var(--font-size-base);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-4);
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.link-group h4 {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.link-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    padding: var(--space-1) 0;
    transition: color var(--superunico-transition);
}

.link-group a:hover {
    color: var(--superunico-primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

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

.social-links a:hover {
    background: var(--superunico-primary);
    color: white;
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .connection-line {
        display: none;
    }
    
    .tiers-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-6xl: 3rem;
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        box-shadow: var(--superunico-shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--superunico-transition);
    }
    
    .nav-menu.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        color: var(--gray-900);
        padding: var(--space-2) 0;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .section-title {
        font-size: var(--font-size-4xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tiers-container {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .trust-badges {
        justify-content: center;
        gap: var(--space-2);
    }
    
    .trust-badge {
        font-size: var(--font-size-xs);
        padding: var(--space-1) var(--space-2);
    }
    
    .mega-cta {
        min-width: auto;
        width: 100%;
    }
    
    .urgency-banner {
        margin-top: var(--space-6);
        padding: var(--space-3) var(--space-4);
    }
    
    .urgency-banner p {
        font-size: var(--font-size-sm);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    section {
        padding: var(--space-16) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .cta-content h2 {
        font-size: var(--font-size-3xl);
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
* {
    -webkit-tap-highlight-color: transparent;
}

.hero-background,
.cta-background,
.floating-coins {
    will-change: transform;
}

.phone-mockup,
.floating-shape,
.coin {
    will-change: transform;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .tier-emblem-image,
    .floating-shape,
    .coin,
    .urgency-banner {
        animation: none !important;
    }
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--superunico-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Focus states */
.cta-button:focus,
.nav-link:focus,
button:focus,
a:focus {
    outline: 2px solid var(--superunico-primary);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .floating-shape,
    .cta-background,
    .floating-coins {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
}