/* 
    Modern Overhaul CSS for ElseWare
    Author: Antigravity
    Philosophy: Minimalist, Premium, Zen Transitions
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: rgba(63, 180, 152, 1);
    --primary-glow: rgba(63, 180, 152, 0.15);
    --secondary: rgba(8, 56, 96, 1);
    --secondary-hover: rgba(8, 56, 96, 0.9);
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 10px 40px rgba(63, 180, 152, 0.2);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --spine-width: 100px;
    --nav-height: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Force hide preloader to ensure content loads instantly */
.preloader {
    display: none !important;
}

/* --- Layout Utils --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

section {
    padding: 100px 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* --- Navbar --- */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Force hide preloader to ensure content loads instantly */
.preloader {
  display: none !important;
}

/*================================================
Default CSS
=================================================*/
.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary);
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Dropdown Menus --- */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    list-style: none;
    z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--primary-glow);
    color: var(--primary);
    padding-left: 28px;
}

/* --- Hero Section --- */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 80% 20%, var(--primary-glow) 0%, transparent 40%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Variant for reversed layout (image left, text right) */
.hero-grid-reverse {
    grid-template-columns: 1fr 1.2fr;
}


.hero-content span {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    transition: var(--transition-slow);
    position: relative;
    z-index: 2;
}

.glow-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.glow-wrapper::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: var(--primary);
    filter: blur(50px);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 1; /* Still behind image due to z-index: 2 on img */
}

.glow-wrapper:hover::after {
    opacity: 0.3;
}

.hero-image:hover img {
    transform: translateY(-10px);
}

/* --- Cards & Widgets --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.guides .card-grid .modern-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 420px;
    width: 100%;
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.modern-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: var(--primary);
    filter: blur(40px);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
    border-radius: 26px;
}

.modern-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.modern-card:hover::before {
    opacity: 0.25;
}

.blog-card:hover { border-color: var(--primary); }
.blog-card:hover::before { opacity: 0 !important; }

.modern-card.no-glow:hover::before {
    opacity: 0 !important;
}

/* --- Horizontal Scroll Utility --- */
.scroll-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 32px;
    padding: 10px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-grid::-webkit-scrollbar {
    height: 6px;
}

.scroll-grid::-webkit-scrollbar-track {
    background: var(--bg-alt);
    border-radius: 10px;
}

.scroll-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.scroll-grid > * {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .scroll-grid > * {
        flex: 0 0 280px;
    }
}

/* --- Specific Card Hover: Fill with Primary Color --- */
.modern-card.fill-hover:hover {
    transition: background 0.3s ease, border-color 0.3s ease;
    background: var(--primary) !important;
    border-color: var(--primary);
}

.modern-card.fill-hover:hover h1,
.modern-card.fill-hover:hover h2,
.modern-card.fill-hover:hover h3,
.modern-card.fill-hover:hover h4,
.modern-card.fill-hover:hover p,
.modern-card.fill-hover:hover li,
.modern-card.fill-hover:hover i,
.modern-card.fill-hover:hover a,
.modern-card.fill-hover:hover .feature-item,
.modern-card.fill-hover:hover .feature-item i {
    color: var(--white) !important;
}

.modern-card.fill-hover:hover .btn-primary {
    background: var(--white) !important;
    color: var(--primary) !important;
    border: 1px solid var(--white) !important;
}

.modern-card.fill-hover:hover .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modern-card.active-accent {
    background: var(--secondary);
    color: var(--white);
}

.section-dot-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.section-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.section-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.section-dot:hover::after,
.section-dot.active::after {
    opacity: 1;
    right: 25px;
}

.section-dot:hover,
.section-dot.active {
    background: var(--primary);
    transform: scale(1.4);
    border-color: var(--primary-glow);
}

.software-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .section-dot-nav { display: none; }
}

.requirement-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.req-item {
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.req-item h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Features List --- */
.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* --- Blog Cards --- */
.blog-card {
    padding: 0;
}

.blog-img-wrapper {
    height: 240px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: none; /* Ensure no zoom/transform */
}

.blog-body {
    padding: 30px;
}

.blog-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.blog-btn:hover {
    gap: 8px;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary);
    box-shadow: 0 10px 20px rgba(8, 56, 96, 0.2);
}

/* --- Video Section --- */
.video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

video {
    width: 100%;
    display: block;
}

/* --- Footer --- */
.footer-modern {
    background: var(--bg-alt);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .section-dot-nav { display: none; }
}

@media (max-width: 992px) {
    /* Force hero grids to stack — !important overrides inline styles */
    .hero-grid,
    .hero-grid-reverse {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .hero-grid > .hero-image,
    .hero-grid > .glow-wrapper,
    .hero-grid-reverse > .hero-image,
    .hero-grid-reverse > .glow-wrapper {
        order: -1;
        margin-bottom: 0;
    }

    /* Show mobile toggle, hide desktop nav */
    .mobile-menu-toggle { display: block !important; }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 40px;
        transition: left 0.4s ease;
        z-index: 999;
        gap: 24px;
        box-shadow: 10px 0 30px rgba(0,0,0,0.05);
        overflow-y: auto;
    }

    .nav-links.active { left: 0; }

    .nav-item-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: block;
    }

    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    section { padding: 60px 0; }

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

    .software-section { min-height: auto; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .card-grid { grid-template-columns: 1fr; }
    .requirement-list { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .page-banner { padding: 140px 0 60px; }
    .hero { padding: 140px 0 60px; }
}

/* --- Cookie Notice & Modal --- */
.cookie-notice { position: fixed; right: 24px; bottom: 24px; z-index: 9999; display: none; }
.cookie-notice__card { 
    width: 360px; background: #fff; border-radius: 20px; padding: 24px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05);
}
.cookie-notice__title { font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.cookie-notice__text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.cookie-notice__text a { color: var(--primary); font-weight: 600; text-decoration: none; }

.cookie-btn { 
    width: 100%; border: 0; border-radius: 12px; padding: 12px; cursor: pointer; 
    font-weight: 600; font-size: 0.9rem; transition: 0.3s;
}
.cookie-btn--primary { background: var(--primary); color: #fff; }
.cookie-btn--primary:hover { background: var(--secondary); }
.cookie-btn--link { background: transparent; color: var(--primary); text-decoration: underline; margin-top: 8px; display: block; text-align: center; }

.cookie-overlay { 
    position: fixed; inset: 0; background: rgba(8, 56, 96, 0.4); 
    backdrop-filter: blur(8px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 24px; 
}
.cookie-modal { 
    width: min(800px, 100%); max-height: 90vh; overflow: auto; background: #fff; 
    border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); padding: 40px;
}
.cookie-modal h2 { margin-bottom: 24px; }
.pref-item { border-bottom: 1px solid var(--border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.pref-item:last-child { border-bottom: none; }
.pref-info h4 { margin-bottom: 4px; }
.pref-info p { font-size: 0.85rem; }

/* --- Page Banner & Breadcrumbs --- */
.page-banner {
    padding: 180px 0 100px;
    background: var(--bg-alt);
    text-align: center;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin-top: 15px;
    color: var(--text-muted);
    font-weight: 500;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb li { display: flex; align-items: center; gap: 12px; }

/* --- FAQ Accordion --- */
.faq-item-modern {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item-modern:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary);
    user-select: none;
}

.faq-item-modern.active {
    border-color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item-modern.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px;
    opacity: 1;
}

.faq-item-modern.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* --- Contact Form --- */
.contact-form-container {
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .contact-form-container { padding: 40px 24px; }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* --- Phone & Pricing Tables --- */
.phone-table, .pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.phone-table th, .pricing-table th {
    background: var(--bg-alt);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
}

.phone-table td, .pricing-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
}

.phone-table tr:last-child td, .pricing-table tr:last-child td {
    border-bottom: none;
}

.phone-table a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* --- Support Cards --- */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .support-grid { grid-template-columns: 1fr; }
}

.support-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.support-card i.support-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.support-card h3 { margin-bottom: 12px; font-size: 1.25rem; }

.support-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

/* --- XS Responsiveness Overrides (iPhone SE, etc.) --- */
@media (max-width: 576px) {
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.2rem !important; }
    p { font-size: 0.95rem !important; }
    
    .container { padding: 0 16px !important; }
    section { padding: 40px 0 !important; }
    .page-banner, .hero { padding: 120px 0 40px !important; }
    
    .modern-card, .support-card, .contact-form-container {
        padding: 24px 16px !important;
    }

    /* Table Stacking Pattern */
    .phone-table, .pricing-table {
        border: none !important;
        background: transparent !important;
    }

    .phone-table thead, .pricing-table thead {
        display: none; /* Hide headers */
    }

    .phone-table tr, .pricing-table tr {
        display: block;
        background: var(--white);
        margin-bottom: 20px;
        border-radius: 16px;
        padding: 16px;
        border: 1px solid var(--border);
        box-shadow: var(--card-shadow);
    }

    .phone-table td, .pricing-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        font-size: 0.9rem;
    }

    .phone-table td:last-child, .pricing-table td:last-child {
        border-bottom: none !important;
    }

    .phone-table td::before, .pricing-table td::before {
        content: attr(data-label);
        font-weight: 700;
        text-align: left;
        color: var(--secondary);
        margin-right: 15px;
    }
    
    .pricing-table td strong {
        font-size: 0.95rem;
    }

    .form-control {
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
    }
}
