/* ============================================================
   LÜM — Estilos Principales
   Paleta: Navy #2B3D55 | Gold #E09B00 | Blue #2c4772 | Green #58B29A
   ============================================================ */

/* ===== Variables ===== */
:root {
    --navy: #2B3D55;
    --navy-dark: #1e2d40;
    --navy-light: #3a5070;
    --gold: #E09B00;
    --gold-light: #f0b020;
    --gold-dark: #c08800;
    --blue: #2c4772;
    --green: #58B29A;
    --green-light: #6ec9b0;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --gray-100: #f1f3f7;
    --gray-200: #e2e6ed;
    --gray-400: #9aa3b0;
    --gray-600: #5a6475;
    --gray-800: #2d3340;
    --text-primary: #1a2332;
    --text-secondary: #4a5568;
    --text-light: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.6);
    
    --shadow-sm: 0 2px 8px rgba(43,61,85,0.08);
    --shadow-md: 0 8px 24px rgba(43,61,85,0.12);
    --shadow-lg: 0 16px 48px rgba(43,61,85,0.16);
    --shadow-gold: 0 8px 32px rgba(224,155,0,0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(224,155,0,0.4);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

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

/* ===== Typography Helpers ===== */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }

/* ===== Header ===== */
#header {
    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 var(--gray-200);
    transition: var(--transition);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
}

.logo img {
    height: 44px;
    width: auto;
}

nav .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

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

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

.lang-switch {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.lang-switch:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
}

.mobile-nav ul li a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s;
}

.mobile-nav ul li a:hover {
    color: var(--gold);
}

/* ===== Section Base ===== */
.section {
    padding: 100px 0;
}

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

.section-navy {
    background: var(--navy);
    color: var(--white);
}

.section-gray {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(224,155,0,0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(224,155,0,0.3);
    border-radius: var(--radius-full);
    padding: 0.4rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-tag-gold {
    background: rgba(224,155,0,0.2);
    color: var(--gold-light);
    border-color: rgba(224,155,0,0.4);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-desc,
.section-navy .section-desc {
    color: var(--text-light);
}

.cta-center {
    text-align: center;
    margin-top: 3.5rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f8 100%);
}

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

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

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44,71,114,0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224,155,0,0.25) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float2 25s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(88,178,154,0.2) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: float3 30s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(43,61,85,0.08);
    border: 1px solid rgba(43,61,85,0.15);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

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

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

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--navy-dark);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item i {
    color: var(--green);
    font-size: 1rem;
}

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

.phone-mockup {
    position: relative;
    width: 280px;
    margin: 0 auto;
}

.phone-screen {
    background: var(--navy-dark);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(43,61,85,0.3), 0 0 0 8px rgba(43,61,85,0.1);
    aspect-ratio: 9/19;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    animation: badge-float 3s ease-in-out infinite;
}

.phone-badge i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.phone-badge div {
    display: flex;
    flex-direction: column;
}

.phone-badge strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
}

.phone-badge span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.phone-badge-1 {
    top: 15%;
    right: -60px;
    animation-delay: 0s;
}

.phone-badge-2 {
    bottom: 20%;
    left: -60px;
    animation-delay: 1.5s;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mascot-container {
    position: absolute;
    bottom: -20px;
    right: -40px;
    width: 120px;
}

.mascot {
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(43,61,85,0.2));
    animation: mascot-bounce 4s ease-in-out infinite;
}

@keyframes mascot-bounce {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

/* ===== Social Proof ===== */
.social-proof {
    background: var(--navy);
    padding: 3rem 0;
}

.proof-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
    padding: 1rem 3rem;
    flex: 1;
    min-width: 200px;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-number span {
    font-size: 1.5rem;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    max-width: 160px;
    margin: 0 auto;
}

.proof-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ===== Feature Blocks ===== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

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

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

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

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.feature-icon-wrap i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-list li i {
    color: var(--green);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-visual {
    position: relative;
}

.img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.img-card:hover {
    transform: translateY(-8px);
}

.img-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.img-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.img-grid-2 .img-card img {
    height: 320px;
    object-fit: cover;
    object-position: top center;
}

/* ===== Steps ===== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.step-card-featured {
    background: rgba(224,155,0,0.1);
    border-color: rgba(224,155,0,0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

.step-card-featured .step-number {
    color: rgba(224,155,0,0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-card-featured .step-icon {
    background: rgba(224,155,0,0.2);
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.step-card-featured .step-icon i {
    color: var(--gold-light);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    margin-top: 1.5rem;
    padding: 1rem 1rem 0;
    border-radius: var(--radius-md);
}

.step-visual img {
    width: 100%;
    max-width: 145px;
    height: 275px;
    display: block;
    flex-shrink: 0;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
}

/* ===== Rewards ===== */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.reward-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--blue));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.reward-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

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

.reward-featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.reward-featured::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(1);
}

.reward-badge-top {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
}

.reward-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.reward-featured .reward-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.reward-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.reward-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.reward-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.reward-cost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(43,61,85,0.06);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.reward-featured .reward-cost {
    background: rgba(224,155,0,0.1);
    color: var(--gold-dark);
}

.reward-cost i {
    color: var(--gold);
}

/* ===== Business Cards ===== */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.biz-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.biz-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(224,155,0,0.3);
}

.biz-icon {
    width: 52px;
    height: 52px;
    background: rgba(224,155,0,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.biz-icon i {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.biz-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.biz-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Investment ===== */
.inv-thesis {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.inv-thesis-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.inv-thesis-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.inv-thesis-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inv-thesis-icon-gold {
    background: var(--gold);
}

.inv-thesis-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.inv-thesis-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.inv-thesis-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.inv-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.inv-metric {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
}

.inv-metric:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.inv-metric-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.inv-metric-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.inv-metric h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.inv-metric p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.inv-cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inv-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224,155,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.inv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(224,155,0,0.2);
    border: 1px solid rgba(224,155,0,0.4);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.inv-cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.inv-cta-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.inv-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Privacy ===== */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.privacy-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.privacy-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(88,178,154,0.4);
}

.privacy-icon {
    width: 56px;
    height: 56px;
    background: rgba(88,178,154,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.privacy-icon i {
    font-size: 1.4rem;
    color: var(--green-light);
}

.privacy-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.privacy-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.privacy-flow {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}

.privacy-flow h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.flow-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy-light), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.flow-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.flow-step span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    max-width: 80px;
}

.flow-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 1.25rem;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.875rem;
}

.faq-item h3 i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Final CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(224,155,0,0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.final-mascot {
    width: 120px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
    animation: mascot-bounce 4s ease-in-out infinite;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.final-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.final-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.final-trust i {
    color: var(--green-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 32px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links-col ul li a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links-col ul li a:hover {
    color: var(--gold-light);
}

.footer-contact {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-contact a {
    color: var(--gold-light);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.75rem !important;
    opacity: 0.6;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .phone-mockup {
        width: 220px;
    }
    
    .phone-badge-1 {
        right: -20px;
    }
    
    .phone-badge-2 {
        left: -20px;
    }
    
    .mascot-container {
        right: 0;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-block-reverse {
        direction: ltr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }
    
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .biz-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inv-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav, .header-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .proof-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .proof-divider {
        width: 60px;
        height: 1px;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .biz-grid {
        grid-template-columns: 1fr;
    }
    
    .inv-metrics {
        grid-template-columns: 1fr 1fr;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .inv-cta-box {
        padding: 2rem;
    }
    
    .inv-thesis-item {
        flex-direction: column;
    }
    
    .img-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .img-grid-2 .img-card img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .phone-mockup {
        width: 180px;
    }
    
    .phone-badge {
        display: none;
    }
    
    .inv-metrics {
        grid-template-columns: 1fr;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .final-trust {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== App Platforms Section ===== */
.section-app {
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf8f0 100%);
}

.app-platforms {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 920px;
    margin: 0 auto;
}

.app-platform-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0,0,0,0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-platform-card-featured {
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(224,155,0,0.18);
}

.app-new-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 1.1rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.app-platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-platform-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.app-platform-icon-green {
    background: rgba(37,211,102,0.12);
    color: #25d366;
}

.app-platform-icon-navy {
    background: rgba(43,61,85,0.1);
    color: var(--navy);
}

.app-platform-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--navy-dark);
}

.app-platform-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.app-platform-card .feature-list {
    margin: 0;
    flex: 1;
}

.app-platforms-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 4rem;
    min-width: 60px;
}

.app-platforms-divider > span {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.app-platforms-divider > p {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin: 0;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.25rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.btn-store:hover {
    background: var(--navy);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-store i {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.btn-store span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-size: 0.95rem;
}

.btn-store small {
    font-size: 0.68rem;
    font-weight: 400;
    opacity: 0.75;
}

.app-store-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.trust-item-app {
    color: var(--gold-dark) !important;
}

.trust-item-app i {
    color: var(--gold) !important;
}

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

    .app-platforms-divider {
        flex-direction: row;
        padding-top: 0;
        padding: 0.25rem 0;
    }

    .app-platforms-divider > p {
        writing-mode: horizontal-tb;
        transform: none;
    }
}

/* ===== Mascot Brand Section ===== */
.mascot-brand {
    background: linear-gradient(135deg, #f8f9fc 0%, #fff9f0 100%);
}

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

.mascot-brand-visual {
    display: flex;
    justify-content: center;
}

.mascot-brand-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(43,61,85,0.18);
    max-width: 420px;
    width: 100%;
}

.mascot-brand-img {
    width: 100%;
    height: auto;
    display: block;
}

.mascot-brand-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mascot-brand-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.05rem;
}

.mascot-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 0.5rem 0 1rem;
}

.mascot-pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.mascot-pillar:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.mascot-pillar i {
    color: var(--gold);
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* ===== Earn / Acumula Section ===== */
.section-earn {
    background: var(--white);
}

.earn-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.earn-main {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
}

.earn-main-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.earn-main-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.earn-main-content p {
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.earn-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.earn-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.11);
    color: rgba(255,255,255,0.9);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.earn-channel-email {
    background: rgba(224,155,0,0.22);
    color: var(--gold-light);
}

.earn-email-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.earn-email-callout > i {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.earn-email-callout strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.earn-email-callout p {
    font-size: 0.85rem;
    opacity: 0.82;
    margin: 0;
    line-height: 1.55;
}

.earn-email-link {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
}

.earn-email-link:hover {
    text-decoration: underline;
}

.earn-extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.earn-extra-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.earn-extra-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.earn-extra-img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 0;
    background: var(--gray-100);
}

.earn-extra-img img {
    width: 100%;
    max-width: 195px;
    height: 370px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.earn-extra-card:hover .earn-extra-img img {
    transform: scale(1.04);
}

.earn-extra-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.earn-extra-icon {
    width: 40px;
    height: 40px;
    background: rgba(224,155,0,0.1);
    color: var(--gold-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.earn-extra-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0;
}

.earn-extra-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.earn-extra-badge {
    display: inline-block;
    background: rgba(224,155,0,0.12);
    color: var(--gold-dark);
    border: 1px solid rgba(224,155,0,0.3);
    border-radius: var(--radius-full);
    padding: 0.2rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    align-self: flex-start;
    margin-top: auto;
}

.earn-badge-fire {
    background: rgba(255,100,0,0.08);
    color: #c44d00;
    border-color: rgba(255,100,0,0.2);
}

.earn-games-block {
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf8f0 100%);
    border-radius: var(--radius-xl);
    padding: 2rem 2rem 2rem;
    border: 1px solid rgba(43,61,85,0.08);
}

.earn-games-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.earn-games-header .earn-extra-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
}

.earn-games-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 0.3rem;
}

.earn-games-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.app-only-badge {
    display: inline-block;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 0.15rem 0.65rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 0.4rem;
}

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

.game-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.game-img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 1rem 0;
    background: var(--off-white);
}

.game-img img {
    width: 100%;
    max-width: 165px;
    height: 310px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.game-card:hover .game-img img {
    transform: scale(1.06);
}

.game-card span {
    display: block;
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-dark);
}

/* ===== Analytics Section ===== */
.analytics-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.analytics-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.2s;
}

.analytics-card:hover {
    box-shadow: var(--shadow-md);
}

.analytics-card-reverse {
    grid-template-columns: 1fr auto;
}

.analytics-card-reverse .analytics-card-img {
    order: 2;
}

.analytics-card-reverse .analytics-card-info {
    order: 1;
}

.analytics-card-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 260px;
    flex-shrink: 0;
}

.analytics-card-img img {
    width: 100%;
    height: auto;
    max-height: 490px;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
}

.analytics-card-img-duo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
    overflow: visible;
    box-shadow: none;
}

.analytics-card-img-duo img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.duo-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.analytics-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.analytics-icon {
    width: 48px;
    height: 48px;
    background: rgba(224,155,0,0.1);
    color: var(--gold-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.analytics-card-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0;
}

.analytics-card-info p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
    margin: 0;
}

.ai-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 0.1rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.analytics-card-ai {
    background: linear-gradient(135deg, #f8f9ff 0%, #f2f4ff 100%);
    border-color: rgba(102,126,234,0.12);
}

.export-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    margin-top: 2.5rem;
}

.export-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #6fcf97;
    flex-shrink: 0;
}

.export-banner-content {
    flex: 1;
}

.export-banner-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.export-banner-content p {
    opacity: 0.85;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.export-banner-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(111,207,151,0.2);
    border: 1px solid rgba(111,207,151,0.4);
    color: #a8f0c6;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===== Empresas Teaser ===== */
.biz-teaser-section {
    background: var(--off-white);
}

.biz-teaser-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 3.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.biz-teaser-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.biz-teaser-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.biz-teaser-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
}

.biz-mini-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.1rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy-dark);
    transition: all 0.2s;
}

.biz-mini-card:hover {
    border-color: var(--gold);
    background: rgba(224,155,0,0.05);
    transform: translateY(-2px);
}

.biz-mini-card i {
    font-size: 1.3rem;
    color: var(--gold-dark);
}

/* ===== Rewards tangible ===== */
.reward-tangible {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
    border: 2px solid rgba(224,155,0,0.25);
}

.reward-tangible .reward-icon {
    color: var(--gold);
}

/* ===== Responsive additions ===== */
@media (max-width: 900px) {
    .mascot-brand-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mascot-brand-visual {
        max-width: 360px;
        margin: 0 auto;
    }

    .earn-extras-grid {
        grid-template-columns: 1fr;
    }

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

    .analytics-card,
    .analytics-card-reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
    }

    .analytics-card-img:not(.analytics-card-img-duo) {
        width: auto;
        max-width: 260px;
        margin: 0 auto;
    }

    .analytics-card-reverse .analytics-card-img {
        order: 0;
    }

    .analytics-card-reverse .analytics-card-info {
        order: 0;
    }

    .biz-teaser-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .export-banner {
        flex-direction: column;
        text-align: center;
    }

    .export-banner-cta {
        align-self: center;
    }
}

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

    .mascot-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .earn-main {
        flex-direction: column;
        text-align: center;
    }

    .earn-main-icon {
        margin: 0 auto;
    }

    .analytics-card-img-duo {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .duo-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ===== Selection ===== */
::selection {
    background: var(--gold);
    color: var(--white);
}
