﻿/* ==========================================================================
   BETPRO THEME - Premium Modern Design System
   Complete Rewrite with Enhanced UI/UX
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Primary Brand Colors - Premium Gold */
    --primary: #D4AF37;
    --primary-light: #F4C430;
    --primary-dark: #B8860B;
    --primary-darker: #8B6508;
    --primary-glow: rgba(212, 175, 55, 0.5);
    --primary-rgb: 212, 175, 55;
    
    /* Secondary Colors - Deep Black/Onyx */
    --secondary: #1a1a1a;
    --secondary-light: #333333;
    --secondary-dark: #000000;
    --secondary-glow: rgba(0, 0, 0, 0.4);
    --secondary-rgb: 0, 0, 0;
    
    /* Accent Colors - Rich Palette */
    --accent-gold: #FFD700;
    --accent-gold-light: #FFE74C;
    --accent-gold-dark: #DAA520;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-pink: #ff006e;
    --accent-blue: #0066ff;
    --accent-orange: #ff6b35;
    
    /* Success/Warning/Error Colors */
    --success: #D4AF37;
    --warning: #ffa500;
    --error: #ff3860;
    --info: #D4AF37;
    
    /* Neutral Colors - Light Mode (Premium Whites) */
    --bg-primary: #ffffff;
    --bg-secondary: #f7f9fc;
    --bg-tertiary: #f0f4f8;
    --bg-card: #ffffff;
    --bg-card-hover: #fafbfd;
    --bg-overlay: rgba(255, 255, 255, 0.95);
    
    /* Neutral Colors - Dark Sections (Rich Blacks) */
    --bg-dark: #050505;
    --bg-dark-secondary: #0a0a0a;
    --bg-dark-tertiary: #141414;
    --bg-dark-card: rgba(255, 255, 255, 0.03);
    --bg-dark-overlay: rgba(0, 0, 0, 0.95);
    
    /* Text Colors - Enhanced Contrast */
    --text-primary: #0a0a0a;
    --text-secondary: #333333;
    --text-tertiary: #5d6779;
    --text-muted: #8590a3;
    --text-white: #ffffff;
    --text-dark-primary: #ffffff;
    --text-dark-secondary: #d4af37;
    --text-dark-tertiary: #9ca3af;
    --text-dark-muted: #6b7280;
    
    /* Border Colors - Refined */
    --border-light: #e5e9f0;
    --border-medium: #d0d7de;
    --border-dark: rgba(212, 175, 55, 0.2);
    --border-darker: rgba(212, 175, 55, 0.1);
    --border-glow: rgba(212, 175, 55, 0.4);
    --border-glow-secondary: rgba(0, 0, 0, 0.4);
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --gradient-primary-hover: linear-gradient(135deg, #F4C430 0%, #D4AF37 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    
    /* Shadows - Enhanced Depth */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 50px rgba(212, 175, 55, 0.2);
    --shadow-glow-strong: 0 8px 40px rgba(212, 175, 55, 0.35);
    --shadow-glow-secondary: 0 0 50px rgba(0, 0, 0, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Card Shadows - Layered Depth */
    --card-shadow-hover: 0 15px 35px -5px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 208, 132, 0.1);
    --card-shadow-active: 0 5px 15px -3px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Consolas', monospace;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius - More Refined */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions - Smoother Animations */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Z-Index Layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 500;
    --z-modal-backdrop: 900;
    --z-modal: 1000;
    --z-toast: 1100;
    
    /* Backdrop Blur */
    --blur-sm: blur(8px);
    --blur-md: blur(16px);
    --blur-lg: blur(24px);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.12), rgba(0, 195, 255, 0.08));
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    border: 1px solid rgba(0, 208, 132, 0.3);
    backdrop-filter: var(--blur-sm);
    box-shadow: 0 2px 10px rgba(0, 208, 132, 0.1);
    transition: var(--transition-base);
}

.section-tag:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.2);
    transform: translateY(-1px);
}

/* Dark Section Headers */
.phi-heading-black h2 { 
    color: #1a202c; 
}

.phi-heading-black p { 
    color: #4a5568; 
}

.phi-heading-black .section-tag {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15), rgba(0, 195, 255, 0.1));
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: #00a068;
    box-shadow: 0 4px 20px rgba(0, 208, 132, 0.15);
}

/* Light Section Headers */
.phi-heading-white h2 { color: #ffffff; }
.phi-heading-white p { color: rgba(255, 255, 255, 0.7); }
.phi-heading-white .highlight { color: #00d084; }
.phi-heading-black .highlight { color: #00d084; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary-hover);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition-base);
}

.btn-outline-small:hover {
    background: var(--primary);
    color: #fff;
}

/* Glowing Button */
.btn-glow {
    position: relative;
    overflow: visible;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    background-size: 400% 400%;
    border-radius: var(--radius-full);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
    animation: glowRotate 4s ease-in-out infinite;
}

.btn-glow:hover::after {
    opacity: 0.9;
    filter: blur(25px);
}

@keyframes glowRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-pulse {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.navbar .logo img,
.custom-logo {
    max-width: 150px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-tertiary);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: var(--text-primary);
    background: transparent;
    border: none;
    position: relative;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.hamburger:hover {
    background: var(--bg-secondary);
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger.active .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   BETTING MARKETS SECTION
   ========================================================================== */
.betting-markets {
    background: var(--bg-primary);
}

.markets-grid {
    display: grid;
    gap: 40px;
}

.market-category {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.category-header i,
.category-header svg {
    font-size: 2.5rem;
    color: var(--primary);
}

.category-header h3 {
    font-size: 2rem;
    margin: 0;
}

.sports-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sport-card {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.sport-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
}

.sport-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(5, 150, 105, 0.04));
    border-color: rgba(16, 185, 129, 0.2);
}

.sport-card i,
.sport-card svg {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.sport-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.sport-card p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.sport-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sport-tags span {
    background: rgba(16, 185, 129, 0.08);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--text-secondary);
}

.market-category.casino {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.04), rgba(5, 150, 105, 0.03));
}

.category-intro {
    color: var(--text-tertiary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.providers-section {
    margin-bottom: 30px;
}

.providers-section h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.provider-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-weight: 500;
    color: var(--text-primary);
}

.casino-games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.casino-game {
    background: var(--bg-secondary);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
    color: var(--text-primary);
}

.casino-game:hover {
    background: var(--bg-tertiary);
    transform: translateY(-3px);
}

.casino-game i,
.casino-game svg {
    color: var(--primary);
}

/* Betting Markets - Responsive */
@media (max-width: 1024px) {
    .market-category {
        padding: 30px;
    }
    
    .category-header h3 {
        font-size: 1.6rem;
    }
    
    .sports-list {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .betting-markets {
        padding: 60px 0;
    }
    
    .market-category {
        padding: 25px 20px;
    }
    
    .category-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .category-header i,
    .category-header svg {
        font-size: 1.8rem;
    }
    
    .category-header h3 {
        font-size: 1.4rem;
    }
    
    .sports-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sport-card {
        padding: 20px;
    }
    
    .sport-card.featured {
        grid-column: auto;
    }
    
    .sport-card i,
    .sport-card svg {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .sport-card h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    
    .sport-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .sport-tags {
        gap: 8px;
    }
    
    .sport-tags span {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .category-intro {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .providers-section {
        margin-bottom: 20px;
    }
    
    .providers-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .providers-grid {
        gap: 8px;
    }
    
    .provider-badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .casino-games-grid {
        gap: 10px;
    }
    
    .casino-game {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .market-category {
        padding: 20px 15px;
    }
    
    .category-header h3 {
        font-size: 1.25rem;
    }
    
    .sport-card {
        padding: 18px 15px;
    }
    
    .provider-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .casino-game {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .casino-game svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison {
    background: var(--bg-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-dark-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-white);
}

.comparison-table th {
    background: rgba(0, 255, 136, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th.highlight-col {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.comparison-table td.highlight-col {
    background: rgba(0, 255, 136, 0.05);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table i.yes { color: #00ff88; }
.comparison-table i.no { color: #ff4444; }
.comparison-table i.warn { color: #ffa500; }

.comparison-note {
    background: var(--bg-dark-card);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.comparison-note i,
.comparison-note svg {
    color: #00d4ff;
    font-size: 1.5rem;
}

.comparison-note p {
    color: var(--text-dark-muted);
    margin: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-card > p {
    color: var(--text-tertiary);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.8;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.author strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.author span {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing {
    background: #050508;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-dark-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    text-align: center;
    position: relative;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid #00ff88;
    transform: scale(1.03);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #000;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
}

.card-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.currency {
    font-size: 1rem;
    color: var(--text-dark-muted);
    font-weight: 400;
}

.features-list {
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--text-dark-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list li i,
.features-list li svg {
    color: #00ff88;
    margin-top: 4px;
}

/* ==========================================================================
   RISKS SECTION
   ========================================================================== */
.risks-section {
    background: var(--bg-secondary);
}

.risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.risk-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.risk-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.risk-card i,
.risk-card svg {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.risk-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.risk-card p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin: 0;
}

.disclaimer-box {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.disclaimer-box i,
.disclaimer-box svg {
    font-size: 2.5rem;
    color: var(--accent-gold);
    min-width: 40px;
}

.disclaimer-box h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.disclaimer-box p {
    color: var(--text-tertiary);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
    background: #050508;
}

.faq-search-wrapper {
    max-width: 600px;
    margin: 0 auto 30px;
}

.faq-search {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-search svg:first-child {
    position: absolute;
    left: 20px;
    color: var(--text-tertiary);
}

.faq-search input {
    width: 100%;
    padding: 18px 50px;
    background: var(--bg-dark-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition-base);
}

.faq-search input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.faq-search input::placeholder {
    color: var(--text-dark-muted);
}

.search-clear {
    position: absolute;
    right: 20px;
    color: var(--text-tertiary);
    cursor: pointer;
    opacity: 0;
    transition: var(--transition-base);
}

.search-clear.visible {
    opacity: 1;
}

.search-clear:hover {
    color: var(--primary);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.faq-category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-dark-muted);
    font-size: 0.9rem;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-category:hover {
    border-color: #00ff88;
    color: #00ff88;
}

.faq-category.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    border-color: #00ff88;
    color: #00ff88;
}

.faq-category svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-results-info {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark-card);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-dark);
    transition: var(--transition-base);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item.active {
    border-color: #00ff88;
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.1);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 25px;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 212, 255, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.faq-icon i,
.faq-icon svg {
    font-size: 1.1rem;
    color: #00ff88;
}

.faq-item.active .faq-icon {
    background: #00ff88;
}

.faq-item.active .faq-icon i,
.faq-item.active .faq-icon svg {
    color: #000;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.faq-toggle i,
.faq-toggle svg {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    transition: var(--transition-base);
}

.faq-item.active .faq-toggle {
    background: #00ff88;
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i,
.faq-item.active .faq-toggle svg {
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 85px;
}

.faq-answer p {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    margin: 0 0 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
    color: var(--text-dark-secondary);
}

.faq-answer ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--text-white);
}

.faq-no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.faq-no-results.visible {
    display: block;
}

.faq-no-results i,
.faq-no-results svg {
    font-size: 3rem;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.faq-no-results h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.faq-no-results p {
    color: var(--text-tertiary);
    margin-bottom: 25px;
}

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 900px;
    margin: 50px auto 0;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius-xl);
}

.faq-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-cta-content > i,
.faq-cta-content > svg {
    font-size: 2.5rem;
    color: var(--primary);
}

.faq-cta-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.faq-cta-content p {
    color: var(--text-tertiary);
    margin: 0;
}

/* ==========================================================================
   ACCOUNT AVAILABLE SECTION
   ========================================================================== */
.account-available-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.account-available-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(5, 150, 105, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.account-available-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Account Types Showcase */
.account-types-showcase {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.showcase-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.showcase-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.showcase-header h3 {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.showcase-header p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0;
}

/* Account Options */
.account-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    position: relative;
}

.account-option:hover {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.03);
    transform: translateX(5px);
}

.account-option.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.05));
    border-color: var(--primary);
}

.account-option.featured:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.08));
}

.option-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon.client {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
}

.option-icon.dealer {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.option-icon.master {
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: white;
}

.option-content {
    flex: 1;
}

.option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.option-header h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
}

.option-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.option-content > p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.option-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg-primary);
    padding: 4px 10px;
    border-radius: 20px;
}

.option-features span svg {
    color: var(--primary);
}

.option-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.option-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Contact Showcase */
.contact-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-card-mini:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.card-flag {
    font-size: 2rem;
    line-height: 1;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-country {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.card-number {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #25D366;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card-action {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.contact-card-mini:hover .card-action {
    transform: scale(1.1);
}

/* Features Box */
.features-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.features-box h3 {
    font-size: 1rem;
    margin: 0 0 15px 0;
    color: var(--text-primary);
}

.features-box .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item-small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-item-small svg {
    color: var(--primary);
    min-width: 16px;
}

/* Get Account Button */
.get-account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.get-account-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.get-account-btn svg:last-child {
    transition: transform 0.3s ease;
}

.get-account-btn:hover svg:last-child {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
    .account-available-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .account-types-showcase {
        padding: 20px;
    }
    
    .account-option {
        flex-wrap: wrap;
        padding: 15px;
    }
    
    .option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .option-btn {
        margin-left: auto;
        margin-top: 10px;
    }
    
    .features-box .features-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RECENT ARTICLES SECTION
   ========================================================================== */
.recent-articles {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.recent-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 208, 132, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 195, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Article Card */
.article-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-darker);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    backdrop-filter: var(--blur-sm);
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-dark);
    box-shadow: var(--card-shadow-hover);
}

/* Featured Article - Takes full width */
.article-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.article-card.featured .article-card-image {
    height: 100%;
    min-height: 400px;
}

.article-card.featured .article-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Article Image */
.article-card-image {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 16/10;
    background: var(--bg-dark-tertiary);
}

.article-card.featured .article-card-image {
    aspect-ratio: auto;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(10, 14, 26, 0.4) 50%,
        rgba(10, 14, 26, 0.9) 100%
    );
    transition: var(--transition-smooth);
}

.article-card:hover .article-card-overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 208, 132, 0.15) 50%,
        rgba(10, 14, 26, 0.95) 100%
    );
}

/* No Image Placeholder */
.article-card-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark-tertiary));
}

.placeholder-icon {
    color: var(--text-dark-muted);
    opacity: 0.5;
    transition: var(--transition-base);
}

.article-card:hover .placeholder-icon {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.1);
}

/* Article Content */
.article-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Article Meta */
.article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article-category {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15), rgba(0, 195, 255, 0.1));
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 208, 132, 0.3);
    transition: var(--transition-base);
    text-decoration: none;
}

.article-category:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.article-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark-muted);
    font-size: 0.85rem;
}

.article-date svg {
    opacity: 0.7;
}

/* Article Title */
.article-card-title {
    margin: 0;
    line-height: 1.4;
}

.article-card-title a {
    color: var(--text-dark-primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card.featured .article-card-title a {
    font-size: 1.8rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.article-card-title a:hover {
    color: var(--primary-light);
}

/* Article Excerpt */
.article-card-excerpt {
    color: var(--text-dark-tertiary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 8px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Article Footer */
.article-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-darker);
}

.article-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark-muted);
    font-size: 0.85rem;
}

.article-read-time svg {
    opacity: 0.7;
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.article-read-more:hover {
    color: var(--primary-light);
    gap: 10px;
}

.article-read-more svg {
    transition: var(--transition-base);
}

.article-read-more:hover svg {
    transform: translateX(3px);
}

/* Articles CTA */
.articles-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.articles-cta .btn-outline {
    color: var(--primary-light);
    border-color: var(--primary);
}

.articles-cta .btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .article-card.featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }
    
    .article-card.featured .article-card-image {
        min-height: 300px;
    }
    
    .article-card.featured .article-card-content {
        padding: 30px;
    }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card-content {
        padding: 20px;
    }
    
    .article-card.featured .article-card-content {
        padding: 25px;
    }
    
    .article-card.featured .article-card-image {
        min-height: 250px;
    }
    
    .article-card-title a {
        font-size: 1.1rem;
    }
    
    .article-card.featured .article-card-title a {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer,
.site-footer {
    background: #0f172a;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-grid,
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-logo img,
.footer-brand .custom-logo-link img {
    max-width: 150px;
    height: auto;
    max-height: 50px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h2 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: var(--transition-base);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.payment-methods i,
.payment-methods svg {
    color: var(--primary);
}

.footer-toggle {
    display: none;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.copyright small {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Link Button Secondary */
a.btn-secondary {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET (1024px and below)
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Testimonials Tablet */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing Tablet */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Risks Tablet */
    .risks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Account Available Tablet */
    .account-available-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Recent Articles Tablet */
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .article-card.featured {
        grid-column: 1 / -1;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    
    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 105px 32px 45px;
        transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 1px solid var(--border-light);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -12px 0 45px rgba(0, 0, 0, 0.12);
    }

    .nav-links.active { right: 0; }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(35px);
        transition: all 0.35s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }

    .nav-links a:not(.btn-primary) {
        display: flex;
        align-items: center;
        padding: 20px 0;
        font-size: 1.12rem;
        font-weight: 500;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a:not(.btn-primary)::after { display: none; }

    .nav-links a:not(.btn-primary)::before {
        content: '';
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
        margin-right: 0;
        transition: all 0.35s ease;
    }

    .nav-links a:not(.btn-primary):hover,
    .nav-links a:not(.btn-primary):active {
        color: var(--primary);
        padding-left: 18px;
    }

    .nav-links a:not(.btn-primary):hover::before,
    .nav-links a:not(.btn-primary):active::before {
        width: 22px;
        margin-right: 14px;
    }

    .nav-links .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin-top: 28px;
        padding: 18px 26px;
        font-size: 1.02rem;
        text-align: center;
        border-radius: var(--radius-lg);
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 105px;
        background: linear-gradient(to top, var(--bg-primary), transparent);
        pointer-events: none;
    }

    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .pricing-card.popular { transform: scale(1); }

    .pricing-card.popular:hover { transform: translateY(-10px); }
    
    /* Footer Mobile */
    .site-footer .footer-grid,
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        text-align: center;
        padding-bottom: 25px;
        border-bottom: 1px solid var(--border-dark);
        margin-bottom: 0;
    }
    
    .social-links { justify-content: center; }
    
    .footer-collapsible {
        border-bottom: 1px solid var(--border-dark);
        padding-bottom: 0;
    }
    
    .footer-collapsible:last-child { border-bottom: none; }
    
    .footer-collapsible h2 { display: none; }
    
    .footer-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 0;
        background: transparent;
        border: none;
        color: var(--text-white);
        font-size: 1.1rem;
        font-weight: 600;
        font-family: var(--font-main);
        cursor: pointer;
        transition: var(--transition-base);
    }
    
    .footer-toggle:hover { color: var(--primary); }
    
    .footer-toggle-icon {
        transition: transform 0.3s ease;
        color: var(--text-muted);
    }
    
    .footer-toggle[aria-expanded="true"] .footer-toggle-icon {
        transform: rotate(180deg);
        color: var(--primary);
    }
    
    .footer-collapse-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }
    
    .footer-collapsible.open .footer-collapse-content {
        max-height: 400px;
        padding-bottom: 15px;
    }
    
    .disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .cta-content h2 { font-size: 1.8rem; }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* FAQ Mobile */
    .faq-categories { gap: 8px; }
    
    .faq-category {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .faq-category span { display: none; }
    
    .faq-category svg {
        width: 22px;
        height: 22px;
    }
    
    .faq-question {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .faq-question h3 { font-size: 0.95rem; }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .faq-item.active .faq-answer { padding: 0 15px 20px 67px; }
    
    .faq-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .faq-cta-content { flex-direction: column; }
    
    /* Testimonials Section Mobile */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-card > p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .author {
        gap: 12px;
        padding-top: 15px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .author strong {
        font-size: 0.95rem;
    }
    
    .author span {
        font-size: 0.8rem;
    }
    
    /* Pricing Section Mobile */
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .card-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .card-header h3 {
        font-size: 1.25rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    /* Risks Section Mobile */
    .risks-section {
        padding: 60px 0;
    }
    
    .risks-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .risk-card {
        padding: 25px 20px;
    }
    
    .risk-card i,
    .risk-card svg {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .risk-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .risk-card p {
        font-size: 0.9rem;
    }
    
    .disclaimer-box {
        padding: 25px 20px;
    }
    
    .disclaimer-box i,
    .disclaimer-box svg {
        font-size: 2rem;
        min-width: 30px;
    }
    
    .disclaimer-box h3 {
        font-size: 1.1rem;
    }
    
    .disclaimer-box p {
        font-size: 0.9rem;
    }
    
    /* Account Available Section Mobile */
    .account-available-section {
        padding: 60px 0;
    }
    
    .account-available-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .account-types-showcase {
        padding: 25px 20px;
    }
    
    .showcase-header {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .showcase-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .showcase-header h3 {
        font-size: 1.1rem;
    }
    
    .showcase-header p {
        font-size: 0.85rem;
    }
    
    .account-option {
        padding: 15px;
        gap: 12px;
    }
    
    .option-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
    
    .option-header h3 {
        font-size: 0.95rem;
    }
    
    .option-price {
        font-size: 0.85rem;
    }
    
    .option-content > p {
        font-size: 0.8rem;
    }
    
    .option-features {
        gap: 6px;
    }
    
    .option-features span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .option-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .contact-card-mini {
        padding: 15px;
        gap: 12px;
    }
    
    /* Recent Articles Section Mobile */
    .recent-articles {
        padding: 60px 0;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card.featured {
        grid-column: auto;
        display: flex;
        flex-direction: column;
    }
    
    .article-card.featured .article-card-image {
        min-height: 200px;
        aspect-ratio: 16/10;
    }
    
    .article-card.featured .article-card-content {
        padding: 25px 20px;
    }
    
    .article-card-content {
        padding: 20px;
        gap: 10px;
    }
    
    .article-card-title a {
        font-size: 1.1rem;
    }
    
    .article-category {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .article-date {
        font-size: 0.8rem;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
    }
    
    /* Comparison Section Mobile */
    .comparison {
        padding: 60px 0;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-note {
        padding: 20px;
        gap: 12px;
    }
    
    .comparison-note i,
    .comparison-note svg {
        font-size: 1.2rem;
    }
    
    .comparison-note p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - SMALL MOBILE (480px and below)
   ========================================================================== */
@media (max-width: 480px) {
    .section { padding: 60px 0; }
    
    .section-header h2 { font-size: 1.6rem; }
    
    .pricing-card { padding: 25px; }
    
    .sport-card.featured { grid-column: auto; }

    .nav-links {
        width: 100%;
        max-width: 100%;
        right: -100%;
        border-left: none;
        padding: 90px 25px 40px;
    }

    .nav-links a:not(.btn-primary) {
        padding: 16px 0;
        font-size: 1rem;
    }

    .nav-links .btn-primary {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* Testimonials Small Mobile */
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-card > p {
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    /* Pricing Small Mobile */
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price {
        font-size: 1.9rem;
    }
    
    .card-header h3 {
        font-size: 1.15rem;
    }
    
    /* Risks Small Mobile */
    .risk-card {
        padding: 20px 15px;
    }
    
    .disclaimer-box {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Account Available Small Mobile */
    .account-types-showcase {
        padding: 20px 15px;
    }
    
    .account-option {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .option-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .option-features {
        justify-content: center;
    }
    
    /* Recent Articles Small Mobile */
    .article-card-content {
        padding: 18px 15px;
    }
    
    .article-card-title a {
        font-size: 1rem;
    }
    
    .article-card.featured .article-card-content {
        padding: 20px 15px;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.hidden { display: none; }
.visible { display: block; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.phi--whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    gap: 15px;
}

.phi--whatsapp-float-btn {
    position: relative;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 
        0 8px 30px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.5);
    transition: var(--transition-smooth);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.phi--whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
    transition: var(--transition-base);
}

.phi--whatsapp-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 40px rgba(37, 211, 102, 0.5),
        0 0 0 8px rgba(37, 211, 102, 0.1);
}

.phi--whatsapp-float-btn:hover::before {
    opacity: 0.8;
    filter: blur(20px);
}

.phi--whatsapp-float-btn:active {
    transform: scale(1.05) rotate(5deg);
}

/* WhatsApp Badge (notification) */
.phi--whatsapp-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #ff3860, #ff006e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(255, 56, 96, 0.4);
    animation: badgeBounce 1.5s ease-in-out infinite;
}

/* WhatsApp Tooltip */
.phi--whatsapp-tooltip {
    background: white;
    color: #128C7E;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(37, 211, 102, 0.2);
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: var(--transition-smooth);
    position: relative;
}

.phi--whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent white;
}

.phi--whatsapp-float:hover .phi--whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 
            0 8px 30px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 
            0 8px 30px rgba(37, 211, 102, 0.4),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .phi--whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .phi--whatsapp-float-btn {
        width: 58px;
        height: 58px;
    }
    
    .phi--whatsapp-float-btn svg {
        width: 26px;
        height: 26px;
    }
    
    .phi--whatsapp-badge {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        border-width: 2px;
    }
    
    .phi--whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .phi--whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .phi--whatsapp-float-btn {
        width: 54px;
        height: 54px;
    }
    
    .phi--whatsapp-float-btn svg {
        width: 24px;
        height: 24px;
    }
}
