/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #049fd9;
    --primary-dark: #0377a8;
    --accent: #00bceb;
    --accent-2: #6abf4b;
    --bg: #ffffff;
    --bg-alt: #f5f7fa;
    --bg-card: #ffffff;
    --bg-card-alt: #f0f4f8;
    --text: #1a2433;
    --text-muted: #58697a;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(4, 159, 217, 0.3);
    --gradient-1: linear-gradient(135deg, #049fd9, #00bceb);
    --gradient-2: linear-gradient(135deg, #049fd9, #6abf4b);
    --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e8f4fd 50%, #f5f7fa 100%);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
    font-family: 'CiscoSans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 1024px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(4, 159, 217, 0.3); }
    50% { box-shadow: 0 0 40px rgba(4, 159, 217, 0.6); }
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); }
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--h); }
}

@keyframes barPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes drawLine {
    from { height: 0; }
    to { height: 100%; }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.15); }
    50% { transform: rotate(0deg) scale(1.1); }
    75% { transform: rotate(-10deg) scale(1.15); }
    100% { transform: rotate(0deg) scale(1); }
}

@keyframes textReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0% 0 0); }
}

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

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--gradient-1); z-index: 9999;
    width: 0%; transition: width 0.1s linear;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide-in-left variant */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}
.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide-in-right variant */
.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}
.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale-in variant */
.animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}
.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--border);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--text); }
.nav-divider { width: 1px; height: 24px; background: var(--border); }
.nav-title { font-weight: 600; font-size: 0.95rem; letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
    transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gradient-1);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--gradient-1) !important; color: white !important;
    padding: 8px 20px !important; border-radius: 50px !important;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(4, 159, 217, 0.4); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; transition: var(--transition); cursor: pointer;
    border: none; font-family: inherit;
}
.btn-primary {
    background: var(--gradient-1); color: white;
    box-shadow: 0 4px 15px rgba(4, 159, 217, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(4, 159, 217, 0.5);
}
.btn-secondary {
    background: var(--bg); color: var(--text);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.btn-secondary:hover {
    background: var(--bg-alt);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.btn-glow { animation: glow 3s ease-in-out infinite; }
.btn-large { padding: 18px 36px; font-size: 1.05rem; }

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 0 80px;
    position: relative; overflow: hidden;
    background: var(--gradient-hero);
}
.hero-inner {
    display: flex; align-items: center; gap: 60px;
    width: 100%;
}
.hero-bg-animation {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
    position: absolute; left: var(--x); top: var(--y);
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--primary); opacity: 0;
    animation: pulse 4s var(--delay) infinite;
}
.grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(4, 159, 217, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 159, 217, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content {
    flex: 1; max-width: 600px; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 50px;
    background: rgba(4, 159, 217, 0.08);
    border: 1px solid rgba(4, 159, 217, 0.15);
    font-size: 0.85rem; font-weight: 500; color: var(--primary);
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800; line-height: 1.1; margin-bottom: 20px;
    letter-spacing: -0.02em; color: var(--text);
}
.hero-subtitle {
    font-size: 1.15rem; color: var(--text-muted);
    margin-bottom: 32px; line-height: 1.7; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex; align-items: center; gap: 32px;
    padding: 24px 0; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
    font-size: 2rem; font-weight: 800; color: var(--text);
    display: inline;
}
.stat-plus, .stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual {
    flex: 0 0 460px; display: flex; justify-content: center; align-items: center;
    position: relative; z-index: 2;
}
.device-mockup { position: relative; }
.mockup-screen {
    width: 380px; background: var(--bg);
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(4, 159, 217, 0.06);
}
.mockup-header {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: #e0e4e8; border: 1px solid #d0d4d8;
}
.mockup-dots span:first-child { background: #ff5f57; border-color: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; border-color: #ffbd2e; }
.mockup-dots span:last-child { background: #28c840; border-color: #28c840; }
.mockup-url { font-size: 0.75rem; color: var(--text-muted); }
.mockup-content { padding: 24px; }

/* ===== Control Center Dashboard Mockup ===== */
.cc-dashboard { width: 460px; }
.cc-dashboard-img {
    width: 100%; overflow: hidden;
}
.cc-dashboard-img img {
    width: 100%; height: auto; display: block;
}

/* Floating Cards */
.floating-card {
    position: absolute; display: flex; align-items: center; gap: 10px;
    padding: 12px 18px; border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    font-size: 0.85rem; font-weight: 500; color: var(--text);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}
.floating-card i { color: var(--primary); font-size: 1.1rem; }
.card-1 { top: -10px; right: -20px; animation-delay: 0s; }
.card-2 { bottom: 100px; left: -30px; animation-delay: 2s; }
.card-3 { bottom: -10px; right: 40px; animation-delay: 4s; }


/* ===== Section Headers ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(4, 159, 217, 0.08); border: 1px solid rgba(4, 159, 217, 0.15);
    font-size: 0.8rem; font-weight: 600; color: var(--primary);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; color: var(--text);
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== Features Section ===== */
.features { padding: 100px 0; background: var(--bg); }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
    padding: 32px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: var(--transition); position: relative; overflow: hidden;
    box-shadow: var(--shadow);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gradient-1);
    transform: scaleX(0); transition: transform 0.4s ease;
    transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}
.feature-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(4, 159, 217, 0.08); display: flex;
    align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary); margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== How It Works ===== */
.how-it-works { padding: 100px 0; background: var(--bg-alt); }
.steps-container { position: relative; max-width: 800px; margin: 0 auto; }
.step-line {
    position: absolute; left: 40px; top: 0; bottom: 0;
    width: 2px; background: var(--border);
}
.step {
    display: flex; align-items: flex-start; gap: 24px;
    padding: 32px 0; position: relative;
}
.step-number {
    font-size: 2.5rem; font-weight: 800; color: rgba(4, 159, 217, 0.2);
    min-width: 80px; text-align: center; line-height: 1;
}
.step-content { flex: 1; }
.step-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-content p { color: var(--text-muted); line-height: 1.7; }
.step-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(4, 159, 217, 0.08); border: 1px solid rgba(4, 159, 217, 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--primary); flex-shrink: 0;
}

/* ===== Industry Use Cases ===== */
.use-cases { padding: 100px 0; background: var(--bg); }
.use-cases-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.use-case-card {
    padding: 28px 20px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border);
    text-align: center; transition: var(--transition);
    box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.use-case-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gradient-1);
    transform: scaleX(0); transition: transform 0.4s ease;
    transform-origin: left;
}
.use-case-card:hover::before { transform: scaleX(1); }
.use-case-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}
.use-case-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(4, 159, 217, 0.08); display: flex;
    align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary); margin: 0 auto 16px;
}
.use-case-card:hover .use-case-icon {
    animation: iconSpin 0.6s ease;
}
.use-case-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.use-case-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ===== Kit Contents ===== */
.kit-contents { padding: 100px 0; background: var(--bg); }
.kit-layout { display: flex; align-items: center; gap: 60px; }
.kit-visual { flex: 1; }
.kit-box {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.kit-item {
    padding: 28px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; text-align: center; transition: var(--transition);
    box-shadow: var(--shadow);
}
.kit-item:hover {
    transform: translateY(-4px); border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}
.kit-item i { font-size: 2rem; color: var(--primary); }
.kit-item span { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.kit-info { flex: 1; }
.kit-info h2 { font-size: 2rem; font-weight: 800; margin: 12px 0 16px; color: var(--text); }
.kit-info > p { color: var(--text-muted); margin-bottom: 24px; }
.kit-list { list-style: none; margin-bottom: 32px; }
.kit-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 8px 0; color: var(--text); font-size: 0.95rem;
}
.kit-list li i { color: var(--accent-2); margin-top: 4px; }

/* ===== Providers Section ===== */
.providers { padding: 100px 0; background: var(--bg-alt); }
.provider-filters {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border);
    background: var(--bg); color: var(--text-muted); font-size: 0.85rem;
    font-weight: 500; cursor: pointer; transition: var(--transition);
    font-family: inherit;
}
.filter-btn:hover { border-color: var(--primary); color: var(--text); }
.filter-btn.active {
    background: var(--gradient-1); border-color: transparent;
    color: white; box-shadow: 0 4px 15px rgba(4, 159, 217, 0.3);
}
.providers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.provider-card {
    padding: 24px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border);
    text-align: center; transition: var(--transition);
    box-shadow: var(--shadow);
}
.provider-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}
.provider-card.hidden { display: none; }
.provider-logo-area {
    width: 150px; height: 75px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; overflow: hidden;
}
.provider-logo-area svg {
    width: 44px; height: 44px; border-radius: 8px;
}
.provider-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.provider-location {
    display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px;
}
.provider-location i { margin-right: 4px; }
.provider-select {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 600; color: var(--primary);
    transition: var(--transition);
}
.provider-select:hover { gap: 10px; }

/* ===== Enrollment CTA ===== */
.enroll-section { padding: 100px 0; background: var(--bg); }
.enroll-card {
    display: flex; align-items: center; gap: 60px;
    padding: 60px; border-radius: 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    border: 1px solid rgba(4, 159, 217, 0.12);
    position: relative; overflow: hidden;
    box-shadow: 0 8px 32px rgba(4, 159, 217, 0.06);
}
.enroll-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(4, 159, 217, 0.06), transparent 60%);
}
.enroll-content { flex: 1; position: relative; z-index: 2; }
.enroll-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.enroll-content > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.enroll-features { display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.enroll-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 500; color: var(--text);
}
.enroll-feature i { color: var(--accent-2); }
.enroll-visual { flex: 0 0 320px; position: relative; z-index: 2; display: flex; justify-content: center; }
.orbit-container {
    width: 280px; height: 280px; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.orbit-center {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--gradient-1); display: flex;
    align-items: center; justify-content: center;
    font-size: 2rem; color: white; box-shadow: 0 0 40px rgba(4, 159, 217, 0.25);
}
.orbit {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1px dashed rgba(4, 159, 217, 0.2);
}
.orbit-1 { --orbit-radius: 90px; animation: none; }
.orbit-2 { inset: -20px; --orbit-radius: 110px; }
.orbit-3 { inset: -40px; --orbit-radius: 130px; }
.orbit-dot {
    position: absolute; top: 50%; left: 0;
    width: 40px; height: 40px; margin: -20px;
    border-radius: 50%; background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--primary);
    animation: orbit 12s linear infinite;
    box-shadow: var(--shadow);
}
.orbit-2 .orbit-dot { animation-duration: 18s; animation-direction: reverse; }
.orbit-3 .orbit-dot { animation-duration: 24s; }

/* ===== Footer ===== */
.footer {
    padding: 48px 0 24px; background: #1a2433;
    border-top: 1px solid var(--border);
    color: #e0e4e8;
}
.footer-content {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 32px;
}
.footer-brand p { color: #8b949e; font-size: 0.85rem; margin-top: 12px; max-width: 300px; }
.footer .nav-logo { color: #e0e4e8; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 0.85rem; color: #8b949e;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: #8b949e; }

/* ===== Card Tilt Effect ===== */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease;
}
.tilt-card .feature-icon,
.tilt-card h3,
.tilt-card p {
    transform: translateZ(20px);
}

/* ===== Icon Bounce on Hover ===== */
.feature-card:hover .feature-icon {
    animation: iconSpin 0.6s ease;
}

/* ===== Ripple Button Effect ===== */
.btn {
    position: relative; overflow: hidden;
}
.btn .ripple-effect {
    position: absolute; border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: ripple 0.6s ease-out forwards;
    pointer-events: none;
}

/* ===== Step Line Draw ===== */
.step-line-fill {
    position: absolute; left: 40px; top: 0;
    width: 2px; background: var(--gradient-1);
    height: 0; transition: height 1.5s ease;
    z-index: 1;
}
.step-line-fill.visible {
    height: 100%;
}

/* ===== Typing Cursor ===== */
.typing-cursor {
    display: inline-block;
    width: 3px; height: 1em;
    background: var(--primary);
    margin-left: 4px;
    animation: pulse 1s step-end infinite;
    vertical-align: text-bottom;
}

/* ===== Navbar Slide Down ===== */
.navbar {
    animation: slideDown 0.8s ease;
}

/* ===== Provider Card Stagger ===== */
.provider-card {
    transition: var(--transition), opacity 0.5s ease, transform 0.5s ease;
}

/* ===== Floating Label Tags ===== */
.hero-badge {
    animation: slideDown 1s ease 0.2s both;
}

/* ===== Smooth Section Transitions ===== */
section {
    position: relative;
}

/* ===== Kit Item Hover Rotate ===== */
.kit-item:hover i {
    animation: iconSpin 0.6s ease;
}

/* ===== Enroll Feature Stagger ===== */
.enroll-feature {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.enroll-card.visible .enroll-feature:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
.enroll-card.visible .enroll-feature:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
.enroll-card.visible .enroll-feature:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.6s; }

/* ===== Counter Glow ===== */
.stat-number {
    transition: color 0.3s ease;
}
.stat:hover .stat-number {
    color: var(--primary);
}

/* Desktop only — no responsive breakpoints */