/* ========================================
   TAMS VIP - Fintech Website Styles
   Modern, Clean, Premium Design
   ======================================== */

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

:root {
    /* Brand Colors - Luxurious VIP Card Theme */
    --primary-dark: #0D0D0D;
    --secondary-dark: #1A1A1A;
    --tertiary-dark: #2A2A2A;
    --accent-gold: #C9A961;
    --accent-gold-light: #E5C87A;
    --accent-gold-dark: #A88B4A;
    --vip-black: #1C1C1C;
    --primary-navy: #1E40AF;
    --primary-blue: #3B82F6;
    --primary-emerald: #10B981;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #1A1A1A;
    --gray-100: #2A2A2A;
    --gray-200: #3A3A3A;
    --gray-300: #545454;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #D4D4D4;
    --gray-800: #E5E5E5;
    --gray-900: #FFFFFF;
    
    /* Gradients - Luxurious Metallic Gold */
    --gradient-primary: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    --gradient-gold: linear-gradient(135deg, #A88B4A 0%, #C9A961 25%, #E5C87A 50%, #C9A961 75%, #A88B4A 100%);
    --gradient-gold-card: linear-gradient(180deg, #C9A961 0%, #BFA76F 100%);
    --gradient-emerald: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    --gradient-card: linear-gradient(180deg, #C9A961 0%, #BFA76F 100%);
    --gradient-vip-border: linear-gradient(90deg, #C9A961 0%, #E5C87A 50%, #C9A961 100%);
    --gradient-gold-shine: linear-gradient(135deg, #A88B4A 0%, #C9A961 20%, #E5C87A 40%, #F5D992 50%, #E5C87A 60%, #C9A961 80%, #A88B4A 100%);
    
    /* Shadows - Luxurious Gold Glow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 8px 25px rgba(201, 169, 97, 0.4);
    --shadow-gold-strong: 0 0 40px rgba(229, 200, 122, 0.6), 0 0 80px rgba(201, 169, 97, 0.4);
    --glow-gold: 0 0 20px rgba(229, 200, 122, 0.5), 0 0 40px rgba(201, 169, 97, 0.3);
    --sparkle-gold: 0 0 10px rgba(245, 217, 146, 0.8), 0 0 20px rgba(229, 200, 122, 0.6);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--primary-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* ============ Buttons ============ */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0D0D0D;
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--accent-gold-light);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold-light);
    border-color: var(--accent-gold);
    border-width: 2px;
}

.btn-outline:hover {
    background: rgba(201, 169, 97, 0.1);
    color: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    box-shadow: var(--glow-gold);
}

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

.btn-outline-white:hover {
    background: var(--accent-gold);
    color: #2D2D2D;
    border-color: var(--accent-gold);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ============ Navigation ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 1000;
    transition: all var(--transition-base);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-size: 1.5rem;
    font-weight: 800;
}

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

.logo-vip {
    background: var(--gradient-gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(0 0 8px rgba(229, 200, 122, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .nav-actions .btn-secondary {
        display: none;
    }
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229, 200, 122, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-gold);
    color: #0D0D0D;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-gold-light);
    box-shadow: var(--glow-gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    background: var(--gradient-gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(229, 200, 122, 0.4));
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 540px;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
}

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

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

.card-mockup {
    position: relative;
    z-index: 10;
}

.vip-card {
    width: 400px;
    height: 250px;
    background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 50%, #1A1A1A 100%);
    border-radius: 1rem;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 8px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(90deg, #A88B4A 0%, #C9A961 25%, #E5C87A 50%, #C9A961 75%, #A88B4A 100%);
    pointer-events: none;
}

.vip-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(90deg, #A88B4A 0%, #C9A961 25%, #E5C87A 50%, #C9A961 75%, #A88B4A 100%);
    pointer-events: none;
}

.card-chip {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #A88B4A 0%, #C9A961 50%, #E5C87A 50%, #C9A961 50%, #A88B4A 100%);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(245, 217, 146, 0.3);
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 25px;
    border: 2px solid rgba(168, 139, 74, 0.6);
    border-radius: 3px;
}

.card-nfc {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.card-content {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-crown {
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 15px rgba(229, 200, 122, 0.3));
}

.card-logo {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(180deg, #A88B4A 0%, #C9A961 20%, #E5C87A 40%, #F5D992 50%, #E5C87A 60%, #C9A961 80%, #A88B4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(229, 200, 122, 0.4));
    letter-spacing: 0.2em;
    position: relative;
    text-align: center;
}

.card-logo span {
    background: linear-gradient(180deg, #A88B4A 0%, #C9A961 20%, #E5C87A 40%, #F5D992 50%, #E5C87A 60%, #C9A961 80%, #A88B4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-number {
    font-size: 1.25rem;
    font-weight: 500;
    background: linear-gradient(90deg, #A88B4A 0%, #C9A961 25%, #E5C87A 50%, #C9A961 75%, #A88B4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-top: 1.5rem;
    margin-bottom: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-info {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder,
.card-balance {
    background: linear-gradient(90deg, #A88B4A 0%, #C9A961 50%, #A88B4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.card-holder {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-balance {
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

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

.float-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.float-3 {
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

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

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .vip-card {
        width: 100%;
        max-width: 400px;
    }
}

/* ============ Section Styles ============ */
section {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 97, 0.15);
    color: var(--accent-gold-light);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.2);
}

.section-badge.gold {
    background: var(--gradient-gold);
    color: #0D0D0D;
    border: 1px solid var(--accent-gold-light);
    box-shadow: var(--glow-gold);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============ How It Works Section ============ */
.section-how {
    background: var(--secondary-dark);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    grid-column: span 1;
    text-align: center;
    position: relative;
}

.step-item:nth-child(even) {
    grid-column: span 2;
}

.step-connector {
    grid-column: span 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--accent-gold-dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #C9A961 0%, #E5C87A 50%, #F5D992 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(229, 200, 122, 0.5), 0 4px 12px rgba(201, 169, 97, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid #F5D992;
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #C9A961 0%, #E5C87A 50%, #F5D992 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.step-icon svg {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.step-number {
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(90deg, #C9A961 0%, #E5C87A 50%, #F5D992 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(229, 200, 122, 0.4));
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (max-width: 968px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-item,
    .step-item:nth-child(even) {
        grid-column: span 1;
    }
    
    .step-connector {
        display: none;
    }
}

/* ============ Benefits Section ============ */
.section-benefits {
    background: var(--primary-dark);
}

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

.benefit-card {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C9A961 0%, #E5C87A 50%, #F5D992 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(229, 200, 122, 0.5), 0 4px 12px rgba(201, 169, 97, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid #F5D992;
    position: relative;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #C9A961 0%, #E5C87A 50%, #F5D992 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.benefit-icon svg {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.benefit-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============ Rewards Section ============ */
.section-rewards {
    background: var(--secondary-dark);
}

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

.rewards-card {
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-gold-strong);
    color: var(--accent-gold-light);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(#0D0D0D, #1A1A1A),
        var(--gradient-vip-border);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.rewards-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rewards-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C9A961 0%, #E5C87A 50%, #F5D992 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(229, 200, 122, 0.5), 0 4px 12px rgba(201, 169, 97, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid #F5D992;
}

.rewards-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.rewards-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold-light);
}

.rewards-points {
    text-align: center;
    margin-bottom: 2rem;
}

.points-earned {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(229, 200, 122, 0.5));
}

.points-label {
    font-size: 1rem;
    opacity: 0.9;
}

.rewards-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 8px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
    box-shadow: 0 0 15px rgba(229, 200, 122, 0.6);
}

.progress-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.rewards-perks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(45, 45, 45, 0.3);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
}

.rewards-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--secondary-dark);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

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

@media (max-width: 968px) {
    .rewards-content {
        grid-template-columns: 1fr;
    }
}

/* ============ Priority Boarding Section ============ */
.section-priority {
    background: var(--primary-dark);
    color: var(--white);
}

.section-priority .section-title,
.section-priority .section-description {
    color: var(--white);
}

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

.priority-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.priority-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: #0D0D0D;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: var(--glow-gold);
    border: 1px solid var(--accent-gold-light);
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.priority-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.priority-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.priority-illustration {
    position: relative;
}

.priority-lane {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.lane-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lane-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lane-text {
    flex: 1;
}

.lane-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.lane-subtitle {
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.lane-visual {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.lane-benefits {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.lane-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 968px) {
    .priority-content {
        grid-template-columns: 1fr;
    }
}

/* ============ Mobile App Section ============ */
.section-app {
    background: var(--secondary-dark);
}

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

.app-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
}

.phone-mockup {
    width: 300px;
    height: auto;
    position: relative;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4)) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.phone-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2.5rem;
}

.phone-1 {
    transform: translateY(0);
}

.phone-2 {
    transform: translateY(3rem);
}

.app-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.app-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.app-feature-text p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.app-download {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: #1A1A1A;
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.app-store-btn:hover {
    background: var(--accent-gold);
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.5);
}

.app-store-btn:hover svg path {
    fill: #1A1A1A;
}

.app-store-btn svg {
    flex-shrink: 0;
}

.app-store-btn svg path {
    transition: fill var(--transition-base);
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-store-label {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.app-store-name {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

@media (max-width: 968px) {
    .app-content {
        grid-template-columns: 1fr;
    }
    
    .app-phones {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .app-features-list {
        grid-template-columns: 1fr;
    }
}

/* ============ Security Section ============ */
.section-security {
    background: var(--primary-dark);
}

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

.security-badge-item {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-dark);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
}

.security-badge-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.security-badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.security-badge-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.security-badge-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

.testimonial-card {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    color: #0D0D0D;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--glow-gold);
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

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

/* ============ CTA Section ============ */
.section-cta {
    background: var(--secondary-dark);
}

.cta-card {
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    padding: 4rem;
    border-radius: var(--radius-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: var(--shadow-gold-strong);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(#0D0D0D, #1A1A1A),
        var(--gradient-vip-border);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(229, 200, 122, 0.4));
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--accent-gold-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

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

@media (max-width: 968px) {
    .cta-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============ Footer ============ */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-emerald);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-top: 1rem;
    transition: all var(--transition-base);
}

.footer-whatsapp-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

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

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--gray-400);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============ Utilities ============ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============ Responsive Utilities ============ */
@media (max-width: 640px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 641px) {
    .show-mobile {
        display: none !important;
    }
}

/* ============ Get Card Page Styles ============ */
.hero-card-page {
    padding: 8rem 0 4rem;
    min-height: 40vh;
}

.card-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.section-form {
    padding: 4rem 0;
    background: var(--primary-dark);
}

.form-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

.form-sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

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

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

.benefit-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.benefit-text-small h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.benefit-text-small p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.card-preview {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
}

.form-container {
    max-width: 700px;
}

.form-card {
    background: var(--secondary-dark);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-100);
    border-radius: 0.5rem;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group select {
    cursor: pointer;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem 0;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-gold {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-gold:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.section-support {
    padding: 4rem 0;
    background: var(--secondary-dark);
}

.support-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.support-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.support-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.support-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--primary-dark);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}

.support-item svg {
    flex-shrink: 0;
}

.support-item span {
    font-weight: 500;
}

@media (max-width: 968px) {
    .page-main-title {
        font-size: 2.5rem;
    }
    
    .form-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-sidebar {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .support-contacts {
        flex-direction: column;
    }
    
    .support-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-card-page {
        padding: 6rem 0 3rem;
    }
    
    .page-main-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 1.25rem;
    }
    
    .benefit-list {
        gap: 1rem;
    }
    
    .card-preview {
        display: none;
    }
}

/* ============ Legal Pages Styles ============ */
.section-legal {
    padding: 4rem 0;
    background: var(--primary-dark);
}

.legal-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 6rem;
    background: var(--secondary-dark);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
}

.legal-toc h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.legal-toc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-toc ul li a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9375rem;
    display: block;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.legal-toc ul li a:hover {
    color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.1);
}

.legal-body {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 3rem;
    scroll-margin-top: 6rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-position: inside;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section ul li strong {
    color: var(--white);
}

.contact-info {
    background: var(--secondary-dark);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.legal-footer-note {
    background: var(--gradient-gold);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 3rem;
}

.legal-footer-note p {
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 0;
}

.legal-footer-note strong {
    font-weight: 700;
}

@media (max-width: 968px) {
    .legal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-toc {
        position: static;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .section-legal {
        padding: 3rem 0;
    }
    
    .legal-toc {
        padding: 1.25rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.375rem;
    }
}
