/* ============================================
   LOOPMOOD - ULTRA PREMIUM EDITION
   Diseño Espectacular con Colores Gen Z
   ============================================ */

/* ============================================
   IMPORTS & FONTS
   ============================================ */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ============================================
   CSS VARIABLES - GEN Z PALETTE
   ============================================ */
:root {
    /* Gen Z Colors */
    --neon-green: #00ff88;
    --electric-purple: #9333ea;
    --hot-pink: #ff006e;
    --fire-orange: #ff6b35;
    --cyber-cyan: #00d9ff;
    --deep-black: #0a0a0a;
    --pure-white: #ffffff;
    
    /* Neutrals */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #9333ea 0%, #ff006e 50%, #ff6b35 100%);
    --gradient-success: linear-gradient(135deg, #00ff88 0%, #00d9ff 100%);
    --gradient-fire: linear-gradient(135deg, #ff6b35 0%, #ff006e 100%);
    --gradient-premium: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', var(--font-primary);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.24);
    --shadow-neon: 0 0 30px rgba(0, 255, 136, 0.6);
    --shadow-purple: 0 0 40px rgba(147, 51, 234, 0.5);
    --shadow-pink: 0 0 35px rgba(255, 0, 110, 0.5);
    
    /* Spacing */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 3rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.0625rem;
    color: var(--gray-700);
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
}

a {
    color: var(--electric-purple);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--hot-pink);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--pure-white);
}

.section-light {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--pure-white) 100%);
}

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

.text-white {
    color: var(--pure-white);
}

.text-light {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-success);
    transition: var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-hero);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: var(--shadow-purple);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(147, 51, 234, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--electric-purple);
    border-radius: 2px;
    transition: var(--transition-base);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(147, 51, 234, 0.8), 0 0 60px rgba(255, 0, 110, 0.4);
    }
}

.btn-outline-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-warning {
    background: var(--gradient-fire);
    color: white;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

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

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

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--neon-green);
    top: -200px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--cyber-cyan);
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--hot-pink);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 450px;
    }
    
    .hero-img {
        height: 400px;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .card-text strong {
        font-size: 0.8125rem;
    }
    
    .card-text span {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .hero-img {
        height: 300px;
        object-fit: cover;
    }
    
    .floating-card {
        padding: 0.5rem 0.75rem;
    }
    
    .card-1 {
        top: 5%;
        left: -5%;
    }
    
    .card-2 {
        top: 40%;
        right: -10%;
    }
    
    .card-3 {
        bottom: 10%;
        left: 2%;
    }
    
    .image-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
    
    .badge-icon {
        font-size: 1.25rem;
    }
}

.hero-content {
    color: white;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    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-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatars {
    display: flex;
    margin-left: -10px;
}

.avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    transition: var(--transition-base);
}

.avatars img:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
}

.social-text {
    color: white;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.social-text strong {
    display: block;
    font-size: 1.125rem;
}

.social-text span {
    opacity: 0.9;
    font-size: 0.875rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 5;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: -15%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: -4s;
}

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

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

.card-text strong {
    display: block;
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.card-text span {
    color: var(--electric-purple);
    font-weight: 700;
    font-size: 1.125rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.image-badge span:last-child {
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    font-size: 0.9375rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.8;
    z-index: 10;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 3px solid white;
    border-radius: 20px;
    position: relative;
    margin: 0 auto 0.5rem;
}

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

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Continue in next part... */

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: white;
    padding: 3rem 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-purple);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 600;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--gray-900);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 2px solid var(--neon-green);
}

.badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   PROCESS FLOW
   ============================================ */
.how-it-works {
    overflow: hidden;
}

.process-flow {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.process-step.step-reverse {
    grid-template-columns: 1fr 200px;
}

@media (max-width: 768px) {
    .process-step,
    .process-step.step-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step.step-reverse .step-visual {
        order: -1;
    }
}

.step-visual {
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon-wrapper {
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--neon-green);
}

.step-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 3px dashed var(--electric-purple);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.step-content h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.step-content p {
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.step-features i {
    color: var(--neon-green);
    font-size: 1.125rem;
}

/* Checklist Box */
.checklist-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid var(--neon-green);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.checklist-box h4 {
    color: var(--gray-900);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-box h4 i {
    color: var(--neon-green);
}

.checklist-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.6;
}

.checklist-items i {
    color: var(--neon-green);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--electric-purple);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition-base);
}

.link-arrow:hover {
    gap: 0.75rem;
    color: var(--hot-pink);
}

/* Factors Grid */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (max-width: 640px) {
    .factors-grid {
        grid-template-columns: 1fr;
    }
}

.factor-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid var(--gray-100);
}

.factor-card:hover {
    transform: translateY(-5px);
    border-color: var(--electric-purple);
    box-shadow: var(--shadow-lg);
}

.factor-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.25rem;
}

.factor-card h5 {
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.factor-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Example Box */
.example-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid var(--cyber-cyan);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.example-box h4 {
    color: var(--gray-900);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.example-table {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.example-row:last-child {
    border-bottom: none;
}

.example-row.total {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-top: 2px solid var(--cyber-cyan);
}

.example-row .item {
    color: var(--gray-700);
    font-weight: 600;
}

.example-row .points {
    color: var(--cyber-cyan);
    font-weight: 900;
    font-size: 1.125rem;
}

.example-row.total .item,
.example-row.total .points {
    font-size: 1.25rem;
}

/* Info Box Mini */
.info-box-mini {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.info-box-mini i {
    width: 35px;
    height: 35px;
    background: var(--fire-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-box-mini strong {
    color: var(--gray-900);
}

.info-box-mini small {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid var(--gray-100);
}

.payment-option:hover {
    transform: translateX(5px);
    border-color: var(--electric-purple);
    box-shadow: var(--shadow-md);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.option-content strong {
    display: block;
    color: var(--gray-900);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.option-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Tip Box Mini */
.tip-box-mini {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-left: 4px solid var(--electric-purple);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.tip-box-mini i {
    width: 35px;
    height: 35px;
    background: var(--electric-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.tip-box-mini strong {
    color: var(--gray-900);
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--electric-purple);
    margin: 2rem 0;
    animation: bounce 2s ease-in-out infinite;
}

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

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    border: 3px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-recommended {
    border-color: var(--neon-green);
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.3);
}

.card-recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-premium {
    border-color: var(--fire-orange);
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-success);
    color: var(--deep-black);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-neon);
}

.badge-fire {
    background: var(--gradient-fire);
    color: white;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-purple);
}

.card-header h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--gray-600);
    margin: 0;
}

.card-pricing {
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.price-row.featured {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid var(--neon-green);
}

.range {
    color: var(--gray-700);
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--electric-purple);
}

.save {
    display: block;
    font-size: 0.875rem;
    color: var(--neon-green);
    font-weight: 700;
    margin-top: 0.25rem;
}

.breakdown {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-weight: 500;
}

.card-features i {
    color: var(--neon-green);
    font-size: 1.125rem;
}

.card-features i.fa-info-circle {
    color: var(--cyber-cyan);
}

.card-features i.fa-bolt,
.card-features i.fa-clock,
.card-features i.fa-dollar-sign,
.card-features i.fa-calendar-times,
.card-features i.fa-running {
    color: var(--fire-orange);
}

.pricing-tip {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 5px solid var(--fire-orange);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: var(--fire-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-content {
    color: var(--gray-800);
    line-height: 1.7;
}

.tip-content strong {
    color: var(--gray-900);
}

/* ============================================
   POINTS SYSTEM
   ============================================ */
.points-system {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .points-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.points-display {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--electric-purple);
    margin-bottom: 2rem;
}

.points-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.points-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.points-value .number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.points-value .label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
}

.points-status {
    color: var(--gray-600);
    font-weight: 600;
}

.points-calculator {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.points-calculator h4 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.calc-example {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.item-name {
    font-weight: 600;
    color: var(--gray-700);
}

.item-points {
    font-weight: 900;
    color: var(--neon-green);
    font-size: 1.125rem;
}

.calc-total {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem;
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 700;
}

.total-points {
    font-size: 1.5rem;
    font-weight: 900;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.feature-box {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.feature-text strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Continue in next part (Business Model, Memberships, Footer)... */

/* ============================================
   BUSINESS MODEL
   ============================================ */
.business-model {
    position: relative;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.model-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.model-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--electric-purple);
    box-shadow: var(--shadow-2xl);
}

.model-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.model-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.breakdown-section {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.breakdown-section h3 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.breakdown-intro {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.breakdown-bar {
    display: flex;
    height: 80px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.bar-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    cursor: pointer;
}

.bar-segment:hover {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.seg-1 {
    background: linear-gradient(135deg, #9333ea 0%, #b366ff 100%);
}

.seg-2 {
    background: linear-gradient(135deg, #ff006e 0%, #ff3388 100%);
}

.seg-3 {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
}

.seg-4 {
    background: linear-gradient(135deg, #00d9ff 0%, #33e5ff 100%);
}

.seg-percent {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.seg-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breakdown-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    background: var(--gray-50);
}

.detail-content strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.detail-content p {
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   MEMBERSHIPS PREVIEW
   ============================================ */
.memberships-preview {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    position: relative;
    overflow: hidden;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.membership-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9375rem;
    margin: 0;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .membership-cards {
        grid-template-columns: 1fr;
    }
}

.mem-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    border: 3px solid transparent;
}

.mem-card:hover {
    transform: translateY(-10px) rotate(-2deg);
}

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

.card-silver {
    border-color: var(--cyber-cyan);
    transform: scale(1.05);
}

.card-silver:hover {
    transform: scale(1.05) translateY(-10px) rotate(-2deg);
}

.card-gold {
    border-color: var(--fire-orange);
}

.card-tier {
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.card-silver .card-tier {
    color: var(--cyber-cyan);
}

.card-gold .card-tier {
    color: var(--fire-orange);
}

.card-price {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.card-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
}

.card-feature {
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

.stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
}

.author strong {
    display: block;
    color: var(--gray-900);
    font-size: 1rem;
}

.author span {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
}

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

.cta-shapes {
    position: absolute;
    inset: 0;
}

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

.cta-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
}

.cta-shape.shape-2 {
    width: 600px;
    height: 600px;
    bottom: -250px;
    right: -150px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
}

.badge-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--neon-green);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--gray-900);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--gray-700);
    transition: var(--transition-base);
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--electric-purple);
    padding-left: 0.5rem;
}

.footer-col i {
    color: var(--neon-green);
    margin-top: 0.25rem;
}

.footer-col li div {
    flex: 1;
}

.footer-col strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.footer-col small {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    border: 3px solid var(--neon-green);
    box-shadow: var(--shadow-md);
}

.social-links a:hover {
    background: var(--gradient-success);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: var(--shadow-neon);
}

.social-links i {
    color: var(--electric-purple);
    font-size: 1.25rem;
    margin: 0;
}

.social-links a:hover i {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--gray-600);
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9375rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
    }
    
    .card-recommended {
        transform: scale(1);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ============================================
   UTILITIES & HELPERS
   ============================================ */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */