/**
 * 🚀 BINARY WIN - Landing Page ULTRA MODERNA
 * Design completamente novo, clean, responsivo e profissional
 */

/* ==========================================
   VARIÁVEIS CSS - Paleta Limpa
   ========================================== */
:root {
    /* Cores Principais */
    --cyan: #00d4ff;
    --purple: #7c3aed;
    --green: #38ef7d;
    --gold: #ffd700;

    /* Backgrounds */
    --bg-page: #050812;
    --bg-nav: rgba(10, 14, 26, 0.95);
    --bg-card: rgba(15, 20, 35, 0.7);
    --bg-card-hover: rgba(20, 25, 45, 0.9);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Borders & Shadows */
    --border: rgba(0, 212, 255, 0.1);
    --glow-cyan: 0 0 30px rgba(0, 212, 255, 0.4);
    --glow-purple: 0 0 30px rgba(124, 58, 237, 0.4);
}

/* ==========================================
   RESET GLOBAL
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================
   PARTICLES BACKGROUND
   ========================================== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
}

/* ==========================================
   NAVEGAÇÃO
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    flex-shrink: 0;
    max-width: calc(100% - 50px);
}

/* Logo compacta na navegação usa a classe size-compact (50px) */

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
}

.btn-license-highlight {
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

.btn-license-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.btn-login {
    border: 2px solid var(--cyan);
    color: var(--cyan) !important;
    background: transparent !important;
}

.btn-login:hover {
    background: var(--cyan) !important;
    color: white !important;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 2px solid var(--cyan);
    border-radius: 8px;
    color: var(--cyan);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 38px;
}

.mobile-menu-btn:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 73px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 73px);
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
}

.btn-license-mobile,
.btn-login-mobile {
    text-align: center;
    margin-top: 0.5rem;
}

.btn-license-mobile {
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    color: white !important;
    box-shadow: var(--glow-cyan);
}

.btn-login-mobile {
    border: 2px solid var(--cyan);
    color: var(--cyan) !important;
    background: transparent;
}

/* ==========================================
   HERO SECTION - NOVO DESIGN
   ========================================== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 1rem 3rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    max-width: 90%;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    padding: 0 0.5rem;
    word-wrap: break-word;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    color: white;
    border: none;
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.65rem;
    margin-top: 0.4rem;
    line-height: 1.3;
}

/* ==========================================
   SEÇÕES - NOVO LAYOUT
   ========================================== */
section {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0 1rem;
}

/* ==========================================
   FEATURES - Cards Modernos
   ========================================== */
.features {
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03));
}

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

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan);
    background: var(--bg-card-hover);
    box-shadow: var(--glow-cyan);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    box-shadow: var(--glow-cyan);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* ==========================================
   STRATEGIES - Cards com Badge
   ========================================== */
.strategies {
    background: rgba(0, 212, 255, 0.02);
}

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

.strategy-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.strategy-card.featured {
    border-color: var(--cyan);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.featured-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--glow-cyan);
}

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

.strategy-header i {
    font-size: 2.25rem;
    color: var(--cyan);
}

.strategy-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.strategy-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.strategy-features {
    list-style: none;
}

.strategy-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

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

/* ==========================================
   STATS - Grid Compacto
   ========================================== */
.stats-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(0, 212, 255, 0.08));
    padding: 4rem 0;
}

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

.stat-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ==========================================
   PRICING - Moderno e Limpo
   ========================================== */
.pricing-section {
    padding: 5rem 0;
}

.referral-input-section-compact {
    margin-bottom: 3rem;
}

.referral-compact-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    max-width: 600px;
    margin: 0 auto;
}

.referral-compact-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--cyan);
}

.referral-compact-header i {
    font-size: 1.5rem;
}

.referral-compact-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.referral-input-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.referral-input-group input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.875rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.referral-input-group input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.btn-apply-referral {
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-apply-referral:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.referral-status {
    margin-top: 1rem;
    padding: 0.875rem;
    border-radius: 10px;
    font-size: 0.875rem;
}

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

.pricing-card-compact {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card-compact.featured {
    border-color: var(--cyan);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
}

.pricing-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--green), #11998e);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.8125rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.pricing-price .currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-right: 0.25rem;
}

.pricing-price .amount {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cyan);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-billing,
.plan-billing-small {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-features-compact {
    list-style: none;
    padding: 2rem;
}

.pricing-features-compact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text-secondary);
}

.pricing-features-compact i {
    color: var(--green);
    font-size: 1rem;
}

.btn-buy-license-compact {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    padding: 1.125rem;
    background: linear-gradient(135deg, var(--purple), #9333ea);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-license-compact.featured {
    background: linear-gradient(135deg, var(--cyan), #0099cc);
}

.btn-buy-license-compact:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.affiliate-info-compact {
    background: rgba(56, 239, 125, 0.08);
    border: 1px solid rgba(56, 239, 125, 0.3);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.affiliate-info-compact i {
    color: var(--green);
    font-size: 1.5rem;
}

.affiliate-info-compact strong {
    color: var(--green);
}

/* ==========================================
   CTA - Call to Action
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08));
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.6);
}

/* ==========================================
   FOOTER - Limpo e Moderno
   ========================================== */
.footer {
    background: rgba(5, 8, 18, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

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

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.5rem;
}

.footer-logo .topwin-logo-header {
    width: 50px;
    height: 50px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 350px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    text-align: center;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--cyan);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.footer-contact i {
    color: var(--cyan);
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--cyan);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--glow-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--cyan);
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (min-width: 640px) {
    /* Navigation */
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-logo {
        gap: 0.6rem;
        font-size: 1.1rem;
        max-width: none;
    }

    /* Referral Box */
    .referral-compact-box {
        padding: 2rem;
    }

    .referral-input-group {
        gap: 0.75rem;
    }

    .referral-input-group input {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .btn-apply-referral {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Sections */
    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    /* Grids */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* ==========================================
   RESPONSIVE - DESKTOP
   ========================================== */
@media (min-width: 768px) {
    /* Navigation */
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    /* Hero */
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Sections */
    section {
        padding: 5rem 0;
    }

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

    .section-title {
        font-size: 2.75rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .strategies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-brand p {
        margin: 0;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .cta-content h2 {
        font-size: 3.25rem;
    }
}
