/* 
    MediClean Pro V3 - Quantum Essence Design System
    Theme: Modern Medical Intelligence & Seamless Professionalism
    Standards: WCAG 2.2 AAA + Premium Aesthetics
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* --- AURA NORDIC ERGONOMIC PALETTE --- */
    --v3-primary: #0071af;
    /* Royal Blue from Logo */
    --v3-primary-glow: rgba(0, 113, 175, 0.25);
    --v3-deep: #00486b;
    /* Dark Navy from Logo */
    --v3-surface: #f8fafc;
    --v3-card: #ffffff;
    --v3-text: #0f172a;
    --v3-text-muted: #475569;
    --v3-border: rgba(15, 23, 42, 0.08);
    --v3-glass: rgba(255, 255, 255, 0.75);

    /* --- ARCHITECTURAL GRADIENTS --- */
    --v3-gradient-aura: linear-gradient(135deg, #0071af 0%, #00486b 100%);
    --v3-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* --- SOFT SHADOWS --- */
    --v3-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --v3-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --v3-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --v3-shadow-glow: 0 0 25px var(--v3-primary-glow);

    /* --- ANIMATION --- */
    --v3-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --v3-transition: 0.3s var(--v3-ease);

    /* --- LEGACY COMPATIBILITY --- */
    --brand-light: var(--v3-primary);
    --brand-deep: var(--v3-deep);
    --brand-accent: var(--v3-primary);

    /* --- COMMON THEME MAPPINGS --- */
    --bg-body: var(--v3-surface);
    --bg-surface: var(--v3-card);
    --bg-surface-subtle: var(--v3-surface);
    --border-light: var(--v3-border);
    --text-primary: var(--v3-text);
    --text-secondary: var(--v3-text-muted);
    --text-accent: var(--v3-primary);
}

[data-theme="dark"] {
    --v3-surface: #0f172a;
    /* Nordic Slate Primary */
    --v3-card: #1e293b;
    /* Elevated Surface */
    --v3-text: #f1f5f9;
    /* Reduced Glare White */
    --v3-text-muted: #94a3b8;
    --v3-border: rgba(255, 255, 255, 0.06);
    --v3-glass: rgba(15, 23, 42, 0.85);
    --v3-primary: #79bcdc;
    /* Light Blue for high contrast in Dark Mode */
    --v3-primary-glow: rgba(121, 188, 220, 0.15);
    --v3-gradient-aura: linear-gradient(135deg, #79bcdc 0%, #0071af 100%);
}

/* --- WCAG 2.2 AAA ACCESSIBILITY --- */
:focus-visible {
    outline: 4px solid var(--v3-primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v3-primary);
    color: white;
    padding: 1rem 2rem;
    z-index: 9999;
    border-radius: 0 0 16px 16px;
    font-weight: 700;
    transition: top 0.3s var(--v3-ease);
}

.skip-link:focus {
    top: 0;
}

/* --- RESET & FOUNDATION --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--v3-surface);
    color: var(--v3-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--v3-gradient-aura);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --- THE V3 "AURA" BACKGROUND --- */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--v3-primary-glow) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

/* --- NAVIGATION (FLOATING ISLAND V3) --- */
header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(95%, 1200px);
    height: 72px;
    background: var(--v3-glass);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--v3-border);
    border-radius: 24px;
    z-index: 5000;
    transition: all 0.5s var(--v3-ease);
    display: flex;
    align-items: center;
    box-shadow: var(--v3-shadow-lg);
}

header.scrolled {
    top: 0.5rem;
    height: 64px;
    border-radius: 16px;
    background: var(--v3-card);
    width: min(90%, 1100px);
}

.nav-flex {
    width: 100%;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: var(--v3-transition);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    transition: var(--v3-transition);
}

@media (max-width: 1240px) {
    .nav-links {
        gap: 1rem;
    }
}

/* --- NAV RIGHT & AUTH BUTTONS --- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.auth-buttons-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 10;
}

.btn-compact {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 12px;
}

/* --- MOBILE SPECIFIC FIXES --- */
.mobile-auth-links {
    display: none;
}

.mobile-auth-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--v3-text);
    text-decoration: none;
    padding: 0.5rem 0;
}

.mobile-auth-link.logout {
    color: #ef4444;
}

.mobile-auth-divider {
    height: 1px;
    background: var(--v3-border);
    width: 100%;
    margin-bottom: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--v3-text);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    transition: var(--v3-transition);
    text-decoration: none;
    white-space: nowrap;
}

.nav-item>a:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--v3-primary);
}

/* --- DROPDOWNS --- */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--v3-card);
    min-width: 240px;
    border-radius: 20px;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    border: 1px solid var(--v3-border);
    box-shadow: var(--v3-shadow-lg);
    transition: all 0.3s var(--v3-ease);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 10px;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    color: var(--v3-text);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    display: block;
}

.dropdown-content a:hover {
    background: var(--v3-surface);
    color: var(--v3-primary);
    padding-left: 1.25rem;
}

/* --- MOBILE TOGGLE REPAIR --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 7000;
    /* Must be above header (5000) and link drawer (6000) */
    width: 44px;
    height: 44px;
    touch-action: manipulation;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.3s var(--v3-ease);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--v3-transition);
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Ensure global z-index sanity */
.v3-ai-badge {
    z-index: 10;
}

/* --- HERO SECTION RE-IMAGINED --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4) 0%, var(--v3-surface) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--v3-text);
    margin-bottom: 2rem;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .hero-content h1 {
    color: var(--v3-text);
}

/* --- V3 CARDS (BEYOND SIMPLE GLASS) --- */
.card {
    background: var(--v3-card);
    border: 1px solid var(--v3-border);
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.6s var(--v3-ease);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--v3-shadow-lg), var(--v3-shadow-glow);
    border-color: var(--v3-primary);
}

.card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: var(--v3-transition);
}

.card:hover .card-img {
    transform: scale(1.05);
}

/* --- BUTTONS (MODERN NEOMORPHIC/3D) --- */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s var(--v3-ease);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--v3-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
    background: var(--v3-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: var(--v3-glass);
    color: var(--v3-text);
    border: 1px solid var(--v3-border);
}

.btn-secondary:hover {
    background: var(--v3-surface);
    transform: translateY(-3px);
}

/* --- V3 AI STATUS PILL & GLOSSARY --- */
.v3-ai-badge {
    background: rgba(14, 165, 233, 0.1);
    color: var(--v3-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.v3-ai-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--v3-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--v3-primary);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* --- GRID SYSTEM --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* --- FAQ --- */
.faq-item {
    background: var(--v3-card);
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid var(--v3-border);
    transition: var(--v3-transition);
}

.faq-item[open] {
    border-color: var(--v3-primary);
    box-shadow: var(--v3-shadow-md);
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.faq-item summary::after {
    content: '→';
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(90deg);
}

/* --- FOOTER (HIGH CONTRAST PREMIUM) --- */
footer {
    background: #020617;
    color: white;
    padding: 120px 0 60px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 20%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    filter: blur(100px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
}

.footer-links a {
    color: #e2e8f0;
    /* Lightened for AAA contrast (7:1+) on #020617 */
    text-decoration: none;
    display: block;
    margin-bottom: 1.25rem;
    transition: var(--v3-transition);
    min-height: 44px;
    /* WCAG Target Size */
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--v3-primary);
    padding-left: 8px;
}

.footer-col h4 {
    margin-bottom: 2rem;
    color: white;
    font-size: 1.25rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 100;
}

.footer-bottom p {
    pointer-events: auto !important;
}

.footer-bottom a {
    color: white !important;
    font-weight: 500;
    text-decoration: underline !important;
    cursor: pointer !important;
    transition: color 0.2s ease;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 101 !important;
    display: inline !important;
}

.footer-bottom a:hover {
    color: var(--v3-primary);
    text-decoration: underline;
}

/* --- COMPATIBILITY LAYER FOR LEGACY MODULES --- */
:root {
    --bg-body: var(--v3-surface);
    --bg-surface: var(--v3-card);
    --bg-surface-subtle: rgba(14, 165, 233, 0.05);
    --text-main: var(--v3-text);
    --text-secondary: var(--v3-text-muted);
    --text-muted: var(--v3-text-muted);
    --border-subtle: var(--v3-border);
    --border-light: var(--v3-border);
    --text-accent: var(--v3-primary);
    --brand-gradient: var(--v3-gradient-aura);
    --shadow-card: var(--v3-shadow-md);
    --shadow-xl: var(--v3-shadow-lg);
    --shadow-float: var(--v3-shadow-lg);
}

[data-theme="dark"] {
    --bg-body: var(--v3-surface);
    --bg-surface: var(--v3-card);
    --text-main: var(--v3-text);
    --text-secondary: var(--v3-text-muted);
    --border-subtle: var(--v3-border);
}

/* --- RESPONSIVE --- */
/* --- RESPONSIVE OPTIMIZATIONS --- */
@media (max-width: 1100px) {
    .mobile-toggle {
        display: flex;
    }

    header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 64px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    header.scrolled {
        top: 0;
        width: 100%;
        border-radius: 0;
    }

    .nav-flex {
        padding: 0 0.75rem;
    }

    .logo img {
        height: 24px;
        max-width: 140px;
        object-fit: contain;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--v3-card);
        backdrop-filter: blur(32px) saturate(200%);
        -webkit-backdrop-filter: blur(32px) saturate(200%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 6000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        left: auto;
        margin: 0;
        overflow-y: auto;
        gap: 0.25rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--v3-border);
    }

    .nav-item>a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
        width: 100%;
    }

    /* Mobile Dropdown Logic */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(14, 165, 233, 0.03);
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 1rem 1.5rem;
        margin-top: 0;
        min-width: 0;
        width: 100%;
        display: none !important;
    }

    .nav-item.active .dropdown-content {
        display: flex !important;
    }

    .mobile-auth-links {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem 0;
        margin-top: 1rem;
    }

    .auth-buttons-group {
        display: none;
        /* Hidden on mobile header, shown in side menu */
    }

    #auth-action {
        display: none;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand,
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding-top: 80px;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .v3-ai-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 1101px) {
    .mobile-toggle {
        display: none !important;
    }
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--v3-ease);
}

.reveal.active,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility: Show immediately if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* --- UTILITIES --- */
.v3-gradient-aura {
    background: var(--v3-gradient-aura);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* --- AUTH LAYOUT & CARDS --- */
.auth-main-container {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 4rem 2rem;
}

.auth-card-v3 {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    padding: 3rem;
    background: var(--v3-card);
    border: 1px solid var(--v3-border);
    border-radius: 32px;
    box-shadow: var(--v3-shadow-lg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

@media (max-width: 768px) {
    .auth-main-container {
        padding: 2rem 1rem;
    }

    .auth-card-v3 {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .auth-card-v3 h1 {
        font-size: 1.75rem;
    }
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--v3-card);
    color: var(--v3-primary);
    border: 1px solid var(--v3-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--v3-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--v3-ease);
    z-index: 4000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--v3-primary);
    color: white;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* 📲 PREMIUM PWA INSTALL BUTTON */
.floating-install-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slide-in-left 0.8s ease-out;
}

.floating-install-btn button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--v3-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 72, 107, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-install-btn button:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--brand-deep);
    box-shadow: 0 15px 40px rgba(0, 72, 107, 0.6);
}

.floating-install-btn .icon {
    font-size: 1.2rem;
}

@keyframes slide-in-left {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .floating-install-btn {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}