/* ============================================
   MyEnergyProvider.com - Main Stylesheet
   Optimized for Mobile & Desktop
   ============================================ */

:root {
    --primary-bg: #0a0a0f;
    --secondary-bg: #12121a;
    --tertiary-bg: #1a1a25;
    --accent-cyan: #00f5ff;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-green: #22c55e;
    --accent-orange: #f97316;
    --accent-yellow: #eab308;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.1);
    --glow-cyan: 0 0 30px rgba(0, 245, 255, 0.5);
    --glow-purple: 0 0 30px rgba(168, 85, 247, 0.5);
    
    /* Provider Colors */
    --duke-color: #00629B;
    --southern-color: #CC092F;
    --dominion-color: #1C4EA3;
    --exelon-color: #00274C;
    --nextera-color: #6EB43F;
    --aep-color: #E31937;
    --xcel-color: #005776;
    --entergy-color: #003DA5;
    --pge-color: #006BA6;
    --coned-color: #00A9CE;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Background Animations
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    animation: bgRotate 30s linear infinite;
}

@keyframes bgRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(even) {
    background: var(--accent-purple);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    background: var(--accent-pink);
    animation-duration: 25s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(0);
        opacity: 0;
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 5%;
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)); }
}

.logo-icon {
    width: clamp(35px, 8vw, 45px);
    height: clamp(35px, 8vw, 45px);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-icon svg {
    width: 60%;
    height: 60%;
    fill: var(--primary-bg);
}

.nav-links {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-cyan);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--primary-bg);
    transition: all 0.3s ease;
    animation: ctaPulse 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.4); }
    50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.6); }
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.8);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
    animation: mobileNavIn 0.3s ease;
}

@keyframes mobileNavIn {
    from { opacity: 0; transform: translateX(-100%); }
    to { opacity: 1; transform: translateX(0); }
}

.mobile-nav a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent-cyan);
    padding-left: 15px;
}

.mobile-nav-cta {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    padding: 18px 30px;
    border-radius: 50px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--primary-bg) !important;
}

/* ============================================
   Main Content Area
   ============================================ */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 60px 5%;
    position: relative;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: var(--accent-cyan);
    margin-bottom: 25px;
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 5s linear infinite;
    background-size: 200% auto;
}

@keyframes titleShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--primary-bg);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    animation: btnPrimary 3s ease-in-out infinite;
}

@keyframes btnPrimary {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 245, 255, 0.5); }
    50% { box-shadow: 0 0 50px rgba(168, 85, 247, 0.7); }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    padding: 14px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--accent-cyan);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(300px, 40vw, 450px);
    height: clamp(300px, 40vw, 450px);
    z-index: 1;
}

.energy-orb {
    width: 100%;
    height: 100%;
    position: relative;
    animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    box-shadow: 0 0 80px var(--accent-cyan), 0 0 150px var(--accent-purple);
    animation: coreGlow 2s ease-in-out infinite;
}

@keyframes coreGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.orb-ring:nth-child(2) { animation-delay: 1s; }
.orb-ring:nth-child(3) { animation-delay: 2s; }

@keyframes ringExpand {
    0% { width: 40%; height: 40%; opacity: 1; }
    100% { width: 100%; height: 100%; opacity: 0; }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 245, 255, 0.02) 50%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.8), rgba(26, 26, 37, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.2);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   How It Works
   ============================================ */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 30px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-bg);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 15px auto 25px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: stepIconPulse 3s ease-in-out infinite;
}

@keyframes stepIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.3); }
    50% { box-shadow: 0 0 0 20px rgba(0, 245, 255, 0); }
}

.step-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--accent-cyan);
}

.step-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Providers Grid
   ============================================ */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.provider-card {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--provider-color, var(--accent-cyan));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.provider-card:hover::before {
    transform: scaleX(1);
}

.provider-card:hover {
    transform: translateY(-12px);
    border-color: var(--provider-color, var(--accent-cyan));
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--provider-shadow, rgba(0, 245, 255, 0.2));
}

.provider-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--provider-color, var(--accent-cyan)), rgba(255, 255, 255, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.provider-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.provider-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.provider-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--provider-color, var(--accent-cyan));
    font-weight: 600;
    transition: all 0.3s ease;
}

.provider-btn:hover {
    gap: 15px;
}

/* Provider Color Classes */
.provider-duke { --provider-color: var(--duke-color); --provider-shadow: rgba(0, 98, 155, 0.3); }
.provider-southern { --provider-color: var(--southern-color); --provider-shadow: rgba(204, 9, 47, 0.3); }
.provider-dominion { --provider-color: var(--dominion-color); --provider-shadow: rgba(28, 78, 163, 0.3); }
.provider-exelon { --provider-color: var(--exelon-color); --provider-shadow: rgba(0, 39, 76, 0.3); }
.provider-nextera { --provider-color: var(--nextera-color); --provider-shadow: rgba(110, 180, 63, 0.3); }
.provider-aep { --provider-color: var(--aep-color); --provider-shadow: rgba(227, 25, 55, 0.3); }
.provider-xcel { --provider-color: var(--xcel-color); --provider-shadow: rgba(0, 87, 118, 0.3); }
.provider-entergy { --provider-color: var(--entergy-color); --provider-shadow: rgba(0, 61, 165, 0.3); }
.provider-pge { --provider-color: var(--pge-color); --provider-shadow: rgba(0, 107, 166, 0.3); }
.provider-coned { --provider-color: var(--coned-color); --provider-shadow: rgba(0, 169, 206, 0.3); }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(168, 85, 247, 0.05));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300f5ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 20px rgba(0, 245, 255, 0.5); }
    50% { transform: scale(1.05); text-shadow: 0 0 40px rgba(0, 245, 255, 0.8); }
}

.cta-phone svg {
    width: clamp(35px, 8vw, 45px);
    height: clamp(35px, 8vw, 45px);
    fill: var(--accent-cyan);
    animation: phoneRing 1s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.cta-email {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============================================
   Provider Page Styles
   ============================================ */
.provider-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 5%;
}

.provider-hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--provider-color, var(--accent-cyan));
}

.provider-hero-content .tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.provider-logo-circle {
    width: clamp(180px, 30vw, 260px);
    height: clamp(180px, 30vw, 260px);
    background: linear-gradient(135deg, var(--provider-color, var(--accent-cyan)), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    animation: logoCirclePulse 3s ease-in-out infinite;
    box-shadow: 0 0 80px var(--provider-shadow, rgba(0, 245, 255, 0.5));
}

@keyframes logoCirclePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.provider-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 5%;
}

.info-card {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--provider-color, var(--accent-cyan));
    transform: translateY(-5px);
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--provider-color, var(--accent-cyan));
}

.info-card p,
.info-card ul {
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card li:last-child {
    border-bottom: none;
}

.provider-cta-box {
    background: linear-gradient(135deg, var(--provider-color, var(--accent-cyan)), rgba(0, 0, 0, 0.5));
    border-radius: 25px;
    padding: clamp(40px, 8vw, 60px);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.provider-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ctaShine 10s linear infinite;
}

@keyframes ctaShine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.provider-cta-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.provider-cta-box p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.provider-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 35px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.provider-cta-phone:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

/* ============================================
   About, Services, FAQ, Contact Pages
   ============================================ */
.page-hero {
    text-align: center;
    padding: 50px 5% 70px;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.feature-card {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--accent-cyan);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-card ul {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.feature-card li {
    padding: 6px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 18px;
    padding: 35px;
    max-width: 1000px;
    margin: 50px auto;
}

.disclaimer-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-purple);
    margin-bottom: 12px;
}

.disclaimer-box p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-card {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 245, 255, 0.2);
}

.contact-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: contactIconPulse 3s ease-in-out infinite;
}

@keyframes contactIconPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 245, 255, 0.4); }
    50% { box-shadow: 0 0 60px rgba(168, 85, 247, 0.6); }
}

.contact-card-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-bg);
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.contact-card a {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--accent-cyan);
    display: block;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-card a:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.contact-hours {
    text-align: center;
    padding: 50px 5%;
}

.contact-hours h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-hours p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* FAQ */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 5% 70px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-cyan);
}

.faq-question {
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Legal Pages */
.legal-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 5%;
}

.legal-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content .last-updated {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin: 35px 0 18px;
    color: var(--accent-cyan);
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 18px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--secondary-bg);
    padding: 70px 5% 25px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-links a:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.social-links a:hover svg {
    fill: var(--primary-bg);
}

.footer-column h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-cyan);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* ============================================
   Popup Styles
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
    animation: overlayIn 0.3s ease;
}

@keyframes overlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-container {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, var(--secondary-bg), var(--tertiary-bg));
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    animation: popupBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

@keyframes popupBounce {
    0% { transform: scale(0.5) translateY(100px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.popup-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--popup-color, var(--accent-cyan)) 0%, transparent 50%);
    opacity: 0.1;
    animation: popupGlowRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes popupGlowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.popup-header {
    background: linear-gradient(135deg, var(--popup-color, var(--accent-cyan)), rgba(0, 0, 0, 0.3));
    padding: 28px 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-close svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    animation: popupIconPulse 1.5s ease-in-out infinite;
}

@keyframes popupIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 255, 255, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 0 50px rgba(255, 255, 255, 0.5); }
}

.popup-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    animation: phoneShake 0.5s ease-in-out infinite;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.popup-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    text-align: center;
    margin-bottom: 5px;
}

.popup-header p {
    text-align: center;
    opacity: 0.9;
    font-size: 0.95rem;
}

.popup-content {
    padding: 30px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.popup-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--popup-color, var(--accent-cyan));
}

.popup-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.popup-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.3rem, 4vw, 1.7rem);
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--popup-color, var(--accent-cyan)), var(--accent-purple));
    padding: 16px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: popupPhonePulse 2s ease-in-out infinite;
}

@keyframes popupPhonePulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4); transform: scale(1); }
    50% { box-shadow: 0 15px 60px rgba(168, 85, 247, 0.6); transform: scale(1.02); }
}

.popup-phone:hover {
    transform: scale(1.05);
}

.popup-phone svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.popup-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.popup-feature svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-green);
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .provider-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 60px 5%;
    }

    .hero {
        padding: 40px 5%;
        min-height: auto;
    }

    .providers-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .provider-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .navbar {
        padding: 12px 4%;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .popup-container {
        border-radius: 20px;
    }

    .popup-header {
        padding: 25px 20px;
    }

    .popup-content {
        padding: 25px 20px;
    }

    .popup-phone {
        padding: 14px 24px;
        font-size: 1.2rem;
    }

    .popup-features {
        gap: 15px;
    }

    .provider-cta-box {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .provider-cta-phone {
        padding: 15px 25px;
        font-size: 1.2rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .provider-card:hover,
    .stat-card:hover,
    .step-card:hover,
    .feature-card:hover,
    .contact-card:hover,
    .faq-item:hover,
    .info-card:hover {
        transform: none;
    }

    .provider-card:active,
    .stat-card:active,
    .step-card:active {
        transform: scale(0.98);
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
