/* EPG Nexus Landing Page Theme */
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #007bff;
    --accent2: #6f42c1;
    --success: #28a745;
    --text: #333;
    --text-light: #666;
    --bg: #f8f9fa;
    --card-bg: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg); color: var(--text); line-height: 1.6;
}

/* Nav */
.nav {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 30px; display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 100;
}
.nav .logo { font-size: 22px; font-weight: 800; color: white; text-decoration: none; }
.nav .logo span { color: var(--accent); }
.nav-links a {
    color: rgba(255,255,255,0.8); text-decoration: none; margin-left: 20px;
    font-size: 14px; font-weight: 500; transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-links .btn-nav {
    background: var(--accent); color: white; padding: 8px 20px; border-radius: 6px;
    font-weight: 600; margin-left: 20px;
}
.nav-links .btn-nav:hover { background: #0056b3; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white; padding: 80px 30px 60px; text-align: center;
}
.hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 15px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 700px; margin: 0 auto 30px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-btn {
    padding: 14px 35px; border-radius: 8px; font-size: 16px; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
}
.hero-btn-primary { background: var(--accent); color: white; }
.hero-btn-primary:hover { background: #0056b3; transform: translateY(-2px); }
.hero-btn-secondary { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.3); }
.hero-btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* Stats bar */
.stats-bar {
    background: var(--card-bg); padding: 30px; text-align: center;
    border-bottom: 1px solid #eee;
}
.stats-bar .stat {
    display: inline-block; margin: 0 30px;
}
.stats-bar .stat-value { font-size: 28px; font-weight: 800; color: var(--accent); }
.stats-bar .stat-label { font-size: 14px; color: var(--text-light); }

/* Sections */
.section { padding: 60px 30px; max-width: 1100px; margin: 0 auto; }
.section h2 { font-size: 32px; text-align: center; margin-bottom: 40px; color: var(--primary); }
.section h2 span { color: var(--accent); }

/* Features grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-card {
    background: var(--card-bg); border-radius: 12px; padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center; transition: all 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.feature-icon { font-size: 36px; margin-bottom: 15px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
.feature-card p { font-size: 14px; color: var(--text-light); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 20px; }
.pricing-card {
    background: var(--card-bg); border-radius: 12px; padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center;
    border: 2px solid transparent; transition: all 0.2s; position: relative;
}
.pricing-card:hover { border-color: var(--accent); }
.pricing-card.featured {
    border-color: var(--accent); transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,123,255,0.15);
}
.pricing-card.featured .badge {
    background: var(--accent); color: white; padding: 4px 15px; border-radius: 12px;
    font-size: 12px; font-weight: 700; display: inline-block; margin-bottom: 10px;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 5px; }
.pricing-card .price { font-size: 36px; font-weight: 800; color: var(--accent); margin: 10px 0; }
.pricing-card .price span { font-size: 14px; color: var(--text-light); font-weight: 400; }
.pricing-card ul { list-style: none; text-align: left; margin: 20px 0; }
.pricing-card ul li { padding: 6px 0; font-size: 14px; color: var(--text-light); }
.pricing-card ul li::before { content: "✓ "; color: var(--success); font-weight: 700; }
.pricing-btn {
    display: block; padding: 12px; border-radius: 8px; font-size: 15px; font-weight: 700;
    text-decoration: none; background: var(--accent); color: white; margin-top: 15px;
    transition: all 0.2s;
}
.pricing-btn:hover { background: #0056b3; }
.pricing-btn.outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.pricing-btn.outline:hover { background: var(--accent); color: white; }

/* Disclaimer */
.disclaimer {
    background: #fff3cd; border: 1px solid #ffc107; border-radius: 8px;
    padding: 20px 25px; margin: 40px 0; font-size: 14px; color: #856404;
    line-height: 1.8;
}
.disclaimer strong { color: #533f03; }

/* Countries */
.country-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.country-tag {
    background: var(--card-bg); border: 1px solid #e0e0e0; border-radius: 6px;
    padding: 6px 14px; font-size: 13px; color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary); color: rgba(255,255,255,0.6); padding: 40px 30px;
    text-align: center; font-size: 13px; margin-top: 60px;
}
.footer a { color: rgba(255,255,255,0.8); text-decoration: none; margin: 0 10px; }
.footer a:hover { color: #fff; }
.footer .legal { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer .legal a { color: rgba(255,255,255,0.5); }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .features { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .section { padding: 40px 20px; }
}
