/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

:root {
    --black: #000000;
    --gray-dark: #1a1a1a;
    --gray-medium: #808080;
    --gray-light: #b3b3b3;
    --white: #ffffff;
    --accent-red: #c1272d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ==========================================
   PREMIUM GLASS CARDS - iOS Style
   ========================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glass-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 2px 2px rgba(255, 255, 255, 0.18);
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 4rem;
}

.header-glass {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.header-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
}

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

.header-nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.header-nav a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gray-light);
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--white);
}

.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--white);
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

.header-cta svg {
    transition: transform 0.3s ease;
}

.header-cta:hover svg {
    transform: translateX(3px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 8rem 4rem 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    font-weight: 300;
}

/* ==========================================
   PHILOSOPHY SECTION - Premium Glass Card
   ========================================== */

.philosophy {
    background-color: var(--black);
    padding: 8rem 4rem;
}

.philosophy-container {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 5rem 4.5rem;
    text-align: center;
    box-shadow: 
        0 20px 70px rgba(0, 0, 0, 0.5),
        inset 0 2px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.philosophy-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.6),
        inset 0 2px 2px rgba(255, 255, 255, 0.15);
}

.philosophy-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: var(--white);
}

.philosophy-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    margin: 0 auto 3rem;
    border-radius: 3px;
    box-shadow: 
        0 0 40px rgba(193, 39, 45, 0.8),
        0 0 80px rgba(255, 68, 68, 0.4);
}

.philosophy-text {
    font-size: clamp(1.125rem, 1.6vw, 1.375rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto;
}

/* ==========================================
   SERVICES SECTION - iOS Card Grid
   ========================================== */

.services {
    background-color: var(--black);
    padding: 8rem 4rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-icon-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.service-icon svg {
    stroke: rgba(255, 255, 255, 0.95);
}

.service-number {
    font-size: 3.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    line-height: 1;
}

.service-title {
    font-size: clamp(1.625rem, 2.1vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--white);
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

/* ==========================================
   PROCESS SECTION - Premium Steps
   ========================================== */

.process {
    background-color: var(--black);
    padding: 8rem 4rem;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.75rem, 4.5vw, 4.25rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-subtitle {
    font-size: clamp(1.125rem, 1.5vw, 1.3rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step-number {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.process-step:hover .process-step-number {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.08);
}

.process-step h3 {
    font-size: clamp(1.625rem, 2.1vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1.3;
}

.process-step p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

/* ==========================================
   CONTACT SECTION - Keep Layout, Premium Style
   ========================================== */

.contact-section {
    background-color: var(--black);
    padding: 8rem 4rem;
}

.contact-container,
.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-left,
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    width: fit-content;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-badge svg {
    width: 20px;
    height: 20px;
}

.contact-title {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 0;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 0;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 2rem 2.25rem;
    cursor: pointer;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 0.375rem;
}

.contact-info-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.contact-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-arrow {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.contact-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.contact-right {
    display: flex;
    align-items: flex-start;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 2.75rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 2px rgba(255, 255, 255, 0.1);
}

.form-group {
    width: 100%;
}

.glass-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    resize: vertical;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.glass-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.05);
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--white);
    border: none;
    border-radius: 18px;
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.form-submit:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

.form-submit:active {
    transform: translateY(-1px);
}

/* ==========================================
   FOOTER - Clean & Minimal
   ========================================== */

.footer {
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 4rem 2.5rem;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.org-number {
    margin-top: 1.75rem !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .header {
        padding: 0 2rem;
    }

    .header-glass {
        max-width: 100%;
    }
    
    .header-nav {
        gap: 1.5rem;
    }
    
    .hero-container {
        padding: 6rem 2rem 4rem;
    }
    
    .services-container,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        top: 10px;
        padding: 0 1rem;
    }

    .header-glass {
        padding: 0.75rem 1.25rem;
    }
    
    .header-nav {
        gap: 1rem;
    }
    
    .header-nav a {
        font-size: 0.95rem;
    }

    /* REMOVE ARROW ON MOBILE */
    .header-cta {
        display: none !important;
    }
    
    .hero-container {
        padding: 5rem 1.5rem 3rem;
    }
    
    .philosophy,
    .services,
    .process,
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-card {
        padding: 3rem 2rem;
    }

    /* SERVICES: 3 columns on mobile - side by side */
    .services-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem !important;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .service-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-number {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1.125rem !important;
    }

    .service-description {
        font-size: 0.9rem;
    }

    /* PROCESS: 3 columns on mobile - side by side */
    .process-steps {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem !important;
    }

    .process-step {
        padding: 1.75rem 1.25rem;
    }

    .process-step-number {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .process-step h3 {
        font-size: 1.125rem !important;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    /* CONTACT: Keep stacked (1 column is better here) */
    .contact-info-section {
        gap: 1rem;
    }

    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-container {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .header-nav a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .header-nav {
        gap: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .philosophy-card {
        padding: 2.5rem 1.5rem;
    }

    .philosophy-title {
        font-size: 2rem !important;
    }

    /* SERVICES: 3 columns - slightly smaller on tiny phones */
    .services-container {
        gap: 0.6rem !important;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-number {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1rem !important;
    }

    .service-description {
        font-size: 0.85rem;
    }

    /* PROCESS: 3 columns - slightly smaller on tiny phones */
    .process-steps {
        gap: 0.6rem !important;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .process-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .process-step h3 {
        font-size: 1rem !important;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }
}
