/* --- GLOBAL TOKENS & RESET --- */
:root {
    --bg-body: #FAF8F5;
    --bg-section-alt: #F1F5F9;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --accent-emerald: #10B981;
    --accent-emerald-light: #ECFDF5;
    --border-color: #E2E8F0;
    --font-main: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   1. HERO SECTION
   ========================================== */
.hero {
    padding: 120px 24px 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-emerald-light);
    color: #065F46;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-badge i {
    color: var(--accent-emerald);
}

.hero h1 {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text-main);
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--text-muted);
    font-weight: 700;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--text-main);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #1E293B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--accent-emerald);
    font-size: 1.1rem;
}


/* ==========================================
   2. PRODUCT SHOWCASE SECTION
   ========================================== */
.showcase-section {
    padding: 100px 24px;
    background-color: var(--bg-section-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    justify-content: center;
}

.showcase-container {
    width: 100%;
    max-width: 1240px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 52px;
    align-items: center;
}

.product-preview {
    position: relative;
    z-index: 1;
    width: 100%;
}

.product-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 85%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(99, 102, 241, 0.12) 50%, rgba(0, 0, 0, 0) 100%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.browser {
    background: #0F172A;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.28);
    overflow: hidden;
    width: 100%;
}

.browser-header {
    background: #1E293B;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.close {
    background-color: #EF4444;
}

.dot.minimize {
    background-color: #F59E0B;
}

.dot.maximize {
    background-color: #10B981;
}

.browser-address {
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    color: #64748B;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h3 {
    color: #F8FAFC;
    font-size: 1.2rem;
    font-weight: 700;
}

.status {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-emerald);
}

.appointment {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar.blue {
    background: #6366F1;
}

.avatar.green {
    background: var(--accent-emerald);
}

.appointment-info {
    flex-grow: 1;
}

.appointment-info strong {
    color: #F1F5F9;
    font-size: 0.95rem;
    display: block;
}

.appointment-info p {
    color: #94A3B8;
    font-size: 0.825rem;
}

.time-badge {
    color: #CBD5E1;
    font-size: 0.825rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 12px;
    border-radius: 6px;
}

.ai-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
}

.ai-icon-wrapper {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-emerald);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.ai-header strong {
    color: #34D399;
    font-size: 0.88rem;
}

.ai-tag {
    background: rgba(16, 185, 129, 0.2);
    color: #A7F3D0;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.ai-message {
    color: #E2E8F0;
    font-size: 0.875rem;
    line-height: 1.45;
    transition: opacity 0.3s ease;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-emerald);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.showcase-content h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 18px;
}

.highlight-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 28px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-list i {
    color: var(--accent-emerald);
    font-size: 1.2rem;
    margin-top: 2px;
}

.benefit-list strong {
    color: var(--text-main);
    font-size: 0.95rem;
    display: block;
}

.benefit-list p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   ADVANTAGES SECTION
   ========================================================================== */

.advantages-section {
    padding: 100px 24px;
    background-color: var(--bg-body, #FAF8F5);
    display: flex;
    justify-content: center;
    width: 100%;
}

.advantages-container {
    width: 100%;
    max-width: 1240px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    color: var(--accent-emerald, #10B981);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main, #0F172A);
    line-height: 1.15;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.advantage-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color, #E2E8F0);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}

.highlight {
    color: var(--text-muted);
    font-weight: 700;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-emerald, #10B981);
    background: var(--accent-emerald-light, #ECFDF5);
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    letter-spacing: -0.02em;
}

.advantage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main, #0F172A);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantage-card p {
    font-size: 0.95rem;
    color: var(--text-muted, #64748B);
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.how-it-works-section {
    padding: 100px 24px;
    background-color: var(--bg-section-alt);
    border-top: 1px solid var(--border-color, #E2E8F0);
    border-bottom: 1px solid var(--border-color, #E2E8F0);
    display: flex;
    justify-content: center;
    width: 100%;
}

.how-container {
    width: 100%;
    max-width: 1240px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.step-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color, #E2E8F0);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--text-main, #0F172A);
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main, #0F172A);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.35;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted, #64748B);
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: 100px 24px;
    background-color: var(--text-main, #0F172A);
    color: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: #F8FAFC;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: #94A3B8;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-section .btn-primary {
    background-color: var(--accent-emerald, #10B981);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-section .btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.45);
}

.cta-section .btn-primary i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.cta-section .btn-primary:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.footer-section {
    padding: 40px 24px;
    background-color: #0B1120;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-container {
    width: 100%;
    max-width: 1240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.15rem;
    color: #F8FAFC;
    letter-spacing: -0.03em;
}

.footer-copyright {
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   NAVIGATION BAR & ACTION CONTROLS
   ========================================================================== */

.navbar-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 248, 245, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color, #E2E8F0);
    padding: 16px 24px;
    transition: all 0.25s ease;
}

.navbar-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main, #0F172A);
    letter-spacing: -0.03em;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted, #64748B);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-main, #0F172A);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher Styling */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-switcher a {
    transition: opacity 0.2s ease;
}

.lang-switcher a:hover {
    opacity: 1 !important;
}

.btn-primary-sm {
    background-color: var(--text-main, #0F172A);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.btn-primary-sm:hover {
    background-color: #334155;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main, #0F172A);
    cursor: pointer;
}

/* Responsive Navbar & Action Controls */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide the CTA demo button on mobile screens */
    .navbar-actions .btn-primary-sm {
        display: none !important;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FAF8F5;
        border-bottom: 1px solid #E2E8F0;
        padding: 20px 24px;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.25s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .navbar-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SCROLL EFFECTS & TRANSITIONS
   ========================================================================== */

.navbar-header.navbar-scrolled {
    background-color: rgba(250, 248, 245, 0.95);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border-bottom-color: rgba(226, 232, 240, 0.8);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   FIXED FULLSCREEN VIDEO MODAL OVERLAY
   ========================================================================== */

.video-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #0F172A;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.video-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- LANGUAGE SWITCHER DISPLAY RULES --- */

/* By default (Desktop / Large Screens) */
.mobile-lang-switcher {
    display: none !important;
    /* Hide mobile switcher on desktop */
}

.desktop-lang-switcher {
    display: inline-flex !important;
    /* Show desktop switcher in navbar actions */
}

/* Mobile Screens */
@media (max-width: 768px) {
    .desktop-lang-switcher {
        display: none !important;
        /* Hide desktop switcher on mobile */
    }

    .mobile-lang-switcher {
        display: flex !important;
        /* Show mobile switcher inside dropdown menu */
        padding-top: 10px;
        border-top: 1px solid var(--border-color, #E2E8F0);
    }
}

@media (max-width: 768px) {
    /* Push the toggle button all the way to the right */
    .mobile-menu-toggle {
        display: block;
        margin-left: auto; /* Force right alignment */
    }

    /* Keep brand on the far left */
    .navbar-brand {
        margin-right: auto;
    }
}
