/* ========================================
   CSS VARIABLES - Theme Colors
======================================== */
:root {
    /* Theme Colors */
    --primary-cyan: #0ccce9;
    --primary-purple: #4943c4;
    --gradient-primary: linear-gradient(135deg, #0ccce9 0%, #4943c4 100%);
    --gradient-reverse: linear-gradient(135deg, #4943c4 0%, #0ccce9 100%);

    /* Accent Colors */
    --cyan-light: #5dd9ec;
    --cyan-dark: #0aacca;
    --purple-light: #6b65d8;
    --purple-dark: #3a35a0;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #0ccce9;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(12, 204, 233, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

code {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875em;
    color: var(--primary-purple);
    border: 1px solid var(--gray-200);
}

code.highlight {
    background: linear-gradient(135deg, rgba(12, 204, 233, 0.1), rgba(73, 67, 196, 0.1));
    border-color: var(--primary-cyan);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-cyan);
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-purple);
}

/* ========================================
   TOP NAVIGATION
======================================== */
.top-nav {
    background: var(--gray-900);
    padding: 0.75rem 0;
    border-bottom: 2px solid var(--primary-cyan);
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-sequre {
    color: var(--white);
}

.logo-247 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.network-badges {
    display: flex;
    gap: 1rem;
}

.network-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(12, 204, 233, 0.3);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: help;
    transition: all var(--transition-base);
}

.network-badge:hover {
    background: rgba(12, 204, 233, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.network-badge i {
    color: var(--primary-cyan);
}

.network-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: var(--gray-900);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 400;
    width: 250px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    border: 1px solid var(--primary-cyan);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
}

.network-badge:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* ========================================
   MAIN HEADER
======================================== */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links li a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-cyan);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

/* ========================================
   HERO BANNER
======================================== */
.hero-banner {
    position: relative;
    padding: 8rem 0 6rem;
    /* background: var(--gradient-primary); */
    background: url(/assets/image/download-banner.jpg);
    background-size: cover;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.hero-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    color: var(--white);
}

/* ========================================
   MAIN CONTENT
======================================== */
.main-content {
    position: relative;
}

.installation-section {
    padding: 5rem 0;
    position: relative;
}

.installation-section.alternate {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ========================================
   INFO CARD
======================================== */
.info-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--gray-200);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
}

.info-card-header i {
    font-size: 1.5rem;
}

.info-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.info-card-body {
    padding: 2rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.requirement-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}

.requirement-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.requirement-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.requirement-content p,
.requirement-content a {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

/* ========================================
   STEP CARDS
======================================== */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.step-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-cyan);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.step-content {
    padding: 2.5rem 2rem 2rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.step-header i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
    flex: 1;
}

.step-badge {
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(12, 204, 233, 0.1), rgba(73, 67, 196, 0.1));
    color: var(--primary-purple);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    border: 1px solid var(--primary-cyan);
}

.step-body {
    margin-left: 2.5rem;
}

.step-action,
.step-action-group {
    margin-bottom: 1.5rem;
}

.step-action-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.download-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.download-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.download-button.secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.download-button.secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.download-loader {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(12, 204, 233, 0.05), rgba(73, 67, 196, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(12, 204, 233, 0.2);
    border-top-color: var(--primary-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.step-list {
    margin: 0 0 1.5rem 0;
    padding-left: 1.5rem;
}

.step-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.step-list li strong {
    color: var(--gray-900);
}

.step-list li ul {
    margin-top: 0.5rem;
}

.step-note,
.step-warning,
.step-success {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.step-note {
    background: linear-gradient(135deg, rgba(12, 204, 233, 0.05), rgba(73, 67, 196, 0.05));
    border: 1px solid rgba(12, 204, 233, 0.3);
}

.step-note i {
    color: var(--primary-cyan);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-note p {
    margin: 0;
    color: var(--gray-700);
}

.step-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.step-warning i {
    color: var(--warning);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-warning p {
    margin: 0;
    color: var(--gray-700);
}

.warning-text {
    color: var(--warning);
    font-size: 0.875rem;
    font-weight: 600;
}

.step-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.step-success i {
    color: var(--success);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-success p {
    margin: 0;
    color: var(--gray-700);
}

/* ========================================
   FOOTER
======================================== */
.main-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--primary-cyan);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--primary-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(12, 204, 233, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.newsletter-form {
    margin-top: 1rem;
}

.input-group {
    display: flex;
    margin-bottom: 1rem;
}

.input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    color: var(--white);
    font-size: 0.9375rem;
}

.input-group input::placeholder {
    color: var(--gray-500);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

.input-group button {
    padding: 0.875rem 1.25rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-base);
}

.input-group button:hover {
    box-shadow: var(--shadow-glow);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-400);
}

.footer-bottom p {
    margin: 0;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    z-index: 1000;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .network-badges {
        gap: 0.5rem;
    }

    .network-badge span {
        display: none;
    }

    .network-badge {
        padding: 0.5rem;
    }
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .step-body {
        margin-left: 0;
    }

    .step-action-group {
        flex-direction: column;
    }

    .download-button {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 0.5rem 0;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .network-badges {
        display: none;
    }

    .hero-banner {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .installation-section {
        padding: 3rem 0;
    }

    .section-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .info-card-header {
        padding: 1rem 1.25rem;
    }

    .info-card-body {
        padding: 1.25rem;
    }

    .step-content {
        padding: 2rem 1.25rem 1.5rem;
    }

    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .hero-banner {

        background: url(/assets/image/download-banner-mobile.png);
        background-size: cover;
    }
}