/* ============================================
   DAILYFUNDZBOOST - Main Stylesheet
   Mobile-First Android Optimized DARK THEME
   ============================================ */

/* CSS Variables - PERMANENT DARK THEME */
:root {
    /* Brand Colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    
    /* Dark Theme Colors */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-input: #1e293b;
    --bg-hover: #334155;
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    /* Border Colors */
    --border-color: #334155;
    --border-light: #475569;
    
    /* Legacy variable mapping (for compatibility) */
    --secondary: #1e293b;
    --dark: #f8fafc;
    --darker: #f8fafc;
    --light: #0f172a;
    --gray-100: #1e293b;
    --gray-200: #334155;
    --gray-300: #475569;
    --gray-400: #64748b;
    --gray-500: #94a3b8;
    --gray-600: #cbd5e1;
    --gray-700: #e2e8f0;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    
    /* Design Tokens */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #334155;
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-header-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.pwa-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
    transform: scale(1.1);
}

.wallet-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
}

.user-menu {
    position: relative;
}

.user-btn {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.user-btn:hover {
    border-color: var(--primary);
    background: var(--light);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--light);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--gray-600);
}

.user-dropdown a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.user-dropdown hr {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 5px 0;
}

.logout-link {
    color: var(--danger) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--light);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    padding: 12px;
    border-radius: var(--border-radius-sm);
    color: var(--gray-600);
}

.mobile-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

.btn-light {
    background: var(--light);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--gray-200);
}

.btn-success {
    background: var(--success);
    color: var(--light);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    z-index: 1;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

/* ============================================
   ENHANCED LANDING PAGE STYLES
   ============================================ */

/* Hero Container & Layout */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-badge.pulse {
    animation: pulse 2s infinite;
}

.hero-badge.new {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border-color: var(--success);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Hero Title & Description */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-description .highlight {
    color: var(--primary-light);
    font-weight: 600;
}

/* Hero Buttons */
.btn-xl {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.glow-btn {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.glow-btn:hover {
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.6);
    transform: translateY(-3px);
}

/* Hero Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--dark);
    margin-left: -10px;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-avatars .more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: -10px;
    border: 3px solid var(--dark);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.trust-text .stars {
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
}

.phone-frame {
    position: absolute;
    inset: 0;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 3px solid #333;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.card-1 {
    top: 60px;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: -40px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-2 {
    animation: float2 6s ease-in-out infinite;
}

@keyframes float2 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 10px)); }
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-box .stat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
    margin-bottom: 5px;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* Logos Section */
.logos-section {
    padding: 60px 20px;
    background: var(--light);
    text-align: center;
}

.logos-title {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #1e293b;
    border-radius: 50px;
    color: var(--gray-400);
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.platform-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.platform-logo i {
    font-size: 1.2rem;
}

.platform-logo:has(.fa-instagram) i { color: #E1306C; }
.platform-logo:has(.fa-tiktok) i { color: #000; }
.platform-logo:has(.fa-youtube) i { color: #FF0000; }
.platform-logo:has(.fa-facebook) i { color: #1877F2; }
.platform-logo:has(.fa-twitter) i { color: #1DA1F2; }
.platform-logo:has(.fa-telegram) i { color: #0088cc; }
.platform-logo:has(.fa-spotify) i { color: #1DB954; }
.platform-logo:has(.fa-whatsapp) i { color: #25D366; }

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

/* Service Categories Grid */
.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-header {
    padding: 25px;
    text-align: center;
    position: relative;
    color: white;
}

.category-header.instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.category-header.tiktok {
    background: linear-gradient(135deg, #000000, #25F4EE);
}

.category-header.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.category-header.numbers {
    background: linear-gradient(135deg, #10b981, #059669);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon i {
    font-size: 1.8rem;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-body {
    padding: 20px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-item:last-child {
    border-bottom: none;
}

.service-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.service-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.service-item .price {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.category-card .btn-block {
    margin: 15px 20px 20px;
    width: calc(100% - 40px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Platforms Section */
.platforms-section {
    padding: 80px 20px;
    background: var(--light);
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    min-width: 150px;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.platform-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.platform-card span {
    font-weight: 600;
    color: var(--gray-700);
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 100%;
    height: 150px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray-500);
}

/* Services Preview */
.services-preview {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--light), var(--gray-100));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.service-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.15);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-img {
    height: 180px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-platform {
    position: absolute;
    top: 160px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    padding: 8px;
    border: 3px solid var(--gray-100);
}

.service-platform img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    padding: 30px 20px 10px;
    font-size: 1.2rem;
}

.service-card > p {
    padding: 0 20px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.service-price {
    padding: 15px 20px;
}

.service-price .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.service-price .per {
    color: var(--gray-500);
}

.service-card .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* How It Works */
.how-it-works {
    padding: 100px 20px;
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-img {
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray-500);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-card span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cta-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.contact-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 60px 20px 20px;
    border-top: 1px solid var(--gray-800);
    color: var(--light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--gray-500);
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-300);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: var(--gray-600);
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ============================================
   ALERTS / MESSAGES
   ============================================ */
.messages-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert {
    padding: 15px 40px 15px 20px;
    border-radius: var(--border-radius-sm);
    position: relative;
    animation: slideIn 0.3s ease;
    min-width: 300px;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.alert-success { background: var(--success); color: white; }
.alert-error, .alert-danger { background: var(--danger); color: white; }
.alert-warning { background: var(--warning); color: var(--dark); }
.alert-info { background: var(--info); color: white; }

.alert button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}

.alert button:hover {
    opacity: 1;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    min-height: calc(100vh - 70px);
}

.page-header {
    background: linear-gradient(135deg, var(--gray-100), var(--light));
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.page-header p {
    color: var(--gray-600);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-300);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: var(--border-radius-sm);
    color: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-control::placeholder {
    color: #64748b;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-text {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 5px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: #1e293b;
    border-radius: var(--border-radius);
    border: 1px solid #334155;
    overflow: hidden;
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid #334155;
    background: #0f172a;
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 20px;
    border-top: 1px solid #334155;
    background: #0f172a;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--gray-500); }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin-top: 40px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-right .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1, .hero-title {
        font-size: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        display: none;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .platform-logos {
        gap: 15px;
    }
    
    .platform-logo {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .service-categories {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        gap: 20px;
    }
    
    .platform-card {
        min-width: 100px;
        padding: 20px;
    }
    
    .platform-card img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ============================================
   PWA INSTALL PROMPT
   ============================================ */
.pwa-install-prompt {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.pwa-prompt-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.pwa-text {
    flex: 1;
}

.pwa-text strong {
    display: block;
    margin-bottom: 3px;
}

.pwa-text small {
    color: var(--gray-500);
}

.pwa-close {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.pwa-close:hover {
    color: var(--light);
}

@media (max-width: 480px) {
    .pwa-install-prompt {
        left: 15px;
        right: 15px;
        transform: none;
        bottom: 80px;
    }
    
    .pwa-prompt-content {
        flex-wrap: wrap;
    }
    
    .pwa-text {
        flex: 1 1 60%;
    }
}

/* ============================================
   MOBILE APP STYLES
   ============================================ */

/* iOS-style safe areas */
@supports (padding-top: env(safe-area-inset-top)) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Bottom Navigation Bar (Mobile Only) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--light);
    border-top: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--gray-500);
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.bottom-nav-item i {
    font-size: 1.3rem;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.active i {
    transform: scale(1.1);
}

.bottom-nav-item:active {
    background: var(--gray-100);
    transform: scale(0.95);
}

/* App-style header for mobile */
.app-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    padding-top: calc(15px + env(safe-area-inset-top, 0px));
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.app-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.app-header-balance {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Mobile-specific media queries */
@media (max-width: 768px) {
    /* Show bottom nav and app header */
    .bottom-nav {
        display: block;
    }
    
    .app-header {
        display: block;
    }
    
    /* Hide desktop navbar on mobile when logged in */
    body.logged-in .navbar {
        display: none;
    }
    
    /* Adjust body padding for mobile */
    body.logged-in {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    
    /* Full-width cards on mobile */
    .card {
        border-radius: 16px;
        margin: 0 -5px;
    }
    
    /* App-style stat cards */
    .stat-card {
        border-radius: 16px;
        padding: 20px;
    }
    
    /* Touch-friendly buttons */
    .btn {
        min-height: 48px;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    .btn-sm {
        min-height: 40px;
    }
    
    /* App-style form inputs */
    .form-control {
        min-height: 48px;
        border-radius: 12px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    select.form-control {
        font-size: 16px;
    }
    
    /* Dashboard mobile adjustments */
    .dashboard {
        padding: 80px 15px 100px;
    }
    
    .dashboard-header h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    /* Action cards - horizontal scroll on mobile */
    .actions-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .actions-grid::-webkit-scrollbar {
        display: none;
    }
    
    .action-card {
        flex: 0 0 140px;
        scroll-snap-align: start;
    }
    
    /* Quick actions grid */
    .quick-actions h2 {
        font-size: 1.1rem;
    }
    
    /* Dashboard grid - stack on mobile */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Orders page mobile */
    .orders-grid {
        gap: 12px;
    }
    
    .order-card {
        border-radius: 16px;
    }
    
    /* Services page mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-card {
        border-radius: 16px;
    }
    
    /* Calculator mobile */
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .calculator-card {
        margin: 15px 0;
        border-radius: 16px;
    }
    
    /* Support page mobile */
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ticket grid mobile */
    .ticket-grid {
        grid-template-columns: 1fr;
    }
    
    /* Page container padding */
    .page-container {
        padding: 15px;
        padding-bottom: 100px;
    }
    
    /* Pull-to-refresh indicator space */
    .pull-indicator {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-400);
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-nav-item {
        padding: 6px 8px;
        font-size: 0.65rem;
    }
    
    .bottom-nav-item i {
        font-size: 1.1rem;
    }
}

/* App-like transitions */
.page-transition {
    animation: pageSlideIn 0.3s ease-out;
}

@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch feedback */
.touchable {
    transition: transform 0.1s ease, opacity 0.1s ease;
}

.touchable:active {
    transform: scale(0.97);
    opacity: 0.9;
}

/* iOS-style switches */
.switch {
    position: relative;
    width: 51px;
    height: 31px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-300);
    border-radius: 31px;
    transition: 0.3s;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 27px;
    width: 27px;
    left: 2px;
    bottom: 2px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.switch input:checked + .switch-slider {
    background: var(--primary);
}

.switch input:checked + .switch-slider:before {
    transform: translateX(20px);
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.fab:active {
    transform: scale(0.9);
}

@media (min-width: 769px) {
    .fab {
        display: none;
    }
}

/* Loading skeleton for app feel */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty state for mobile */
.empty-state-mobile {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-mobile i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-state-mobile h3 {
    color: var(--gray-600);
    margin-bottom: 10px;
}

.empty-state-mobile p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* Swipe actions hint */
.swipe-hint {
    color: var(--gray-400);
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
}

/* Status pill badges */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pill.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status-pill.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status-pill.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.status-pill.info {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

