/* DocuSort Homepage - Main Stylesheet */

/* =============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================= */
:root {
    /* Primary Colors */
    --primary-color: #2196F3;
    --primary-dark: #1976D2;
    --primary-light: #42A5F5;
    --secondary-color: #404040;
    --accent-color: #FF9800;
    --accent-warm: #FFB852;
    --accent-bright: #FF5926;
    --success-color: #10B981;
    
    /* Background Colors */
    --background-color: #fff;
    --surface-color: #f5f5f5;
    
    /* Text Colors */
    --text-primary: #282828;
    --text-secondary: #404040;
    --text-light: #94a3b8;
    
    /* Border & Shadow Colors */
    --border-color: #e2e8f0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2196F3, #1976D2);
    --gradient-secondary: linear-gradient(135deg, #FF9800, #FF5926);
    --gradient-warm: linear-gradient(135deg, #FFB852, #FF9800);
    --gradient-dark: linear-gradient(135deg, #404040, #282828);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.4s ease;
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* =============================================
   LAYOUT COMPONENTS
   ============================================= */
.container {
    max-width: 1400px; /* Erweitert von 1200px */
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
}

/* Responsive Containers für verschiedene Bereiche */
.wide-container {
    max-width: 1600px; /* Für noch breitere Bereiche */
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.narrow-container {
    max-width: 1000px; /* Für Text-fokussierte Bereiche */
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Section spacing */
section {
    padding: 80px 0;
}

/* Responsive Layout für sehr große Bildschirme */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 3rem;
    }
    
    .wide-container {
        max-width: 1800px;
        padding: 0 3rem;
    }
    
    section {
        padding: 100px 0;
    }
}

@media (min-width: 2000px) {
    .container {
        max-width: 1800px;
        padding: 0 4rem;
    }
    
    .wide-container {
        max-width: 2000px;
        padding: 0 4rem;
    }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary, 
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--surface-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1400px; /* Erweitert von 1200px */
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Navigation für große Bildschirme */
@media (min-width: 1600px) {
    .nav-container {
        max-width: 1600px;
        padding: 0 3rem;
        height: 80px;
    }
    
    .nav-logo {
        font-size: 1.75rem;
    }
}

@media (min-width: 2000px) {
    .nav-container {
        max-width: 1800px;
        padding: 0 4rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-cta {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    transition: var(--transition-normal) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='a' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M10 0H0v10' fill='none' stroke='rgba(255,255,255,0.1)'/%3E%3C/pattern%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M0 0h100v100H0z'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    max-width: 1400px; /* Erweitert von 1200px */
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Hero für große Bildschirme */
@media (min-width: 1600px) {
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-container {
        max-width: 1600px;
        padding: 0 3rem;
        gap: 6rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
}

@media (min-width: 2000px) {
    .hero {
        padding: 160px 0 120px;
    }
    
    .hero-container {
        max-width: 1800px;
        padding: 0 4rem;
        gap: 8rem;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.secondary-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    border: 1px solid #cbd5e0;
}

.platform-info i {
    color: #0078d4;
    font-size: 1.1rem;
}

/* Hero mockup */
.hero-mockup {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    overflow: hidden;
}

.hero-mockup i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.1;
}

/* Scan animation */
.scan-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(400px);
        opacity: 0;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in,
.fade-in-left,
.fade-in-right,
.scale-in {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    transform: translateY(20px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.scale-in {
    transform: scale(0.8);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: none;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 768px) {
    .container,
    .hero-container,
    .nav-container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-content p {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .hero-buttons {
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
        justify-content: center;
    }

    .platform-info {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin: 0.8rem 0;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }

    .hero-mockup {
        max-width: 100%;
        height: 300px;
        padding: 2rem;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-container,
    .nav-container {
        padding: 0 0.75rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 2rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-content p {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .nav-logo img {
        width: 20px;
        height: 20px;
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-flex;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline-flex;
    }

    .desktop-only {
        display: none;
    }
}

/* Text alignment utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Spacing utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    padding: 100px 0;
    background: var(--surface-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Testimonials für große Bildschirme */
@media (min-width: 1600px) {
    .testimonials {
        padding: 120px 0;
    }
    
    .testimonials h2 {
        font-size: 3.5rem;
        margin-bottom: 5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
        max-width: 1200px;
    }
    
    .testimonial-card {
        padding: 3rem;
    }
}

@media (min-width: 2000px) {
    .testimonials {
        padding: 140px 0;
    }
    
    .testimonials h2 {
        font-size: 4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 4rem;
        max-width: 1400px;
    }
    
    .testimonial-card {
        padding: 3.5rem;
    }
}

/* =============================================
   ADDITIONAL MODULES SECTION
   ============================================= */
.additional-modules {
    padding: 100px 0;
    background: white;
}

.additional-modules h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
}

.module-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Modules für große Bildschirme */
@media (min-width: 1600px) {
    .additional-modules {
        padding: 120px 0;
    }
    
    .additional-modules h2 {
        font-size: 3.5rem;
    }
    
    .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2.5rem;
        margin-top: 4rem;
    }
    
    .module-card {
        padding: 3rem;
    }
}

@media (min-width: 2000px) {
    .additional-modules {
        padding: 140px 0;
    }
    
    .additional-modules h2 {
        font-size: 4rem;
    }
    
    .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
    }
    
    .module-card {
        padding: 3.5rem;
    }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive CTA für große Bildschirme */
@media (min-width: 1600px) {
    .cta {
        padding: 120px 0;
    }
    
    .cta h2 {
        font-size: 3.5rem;
    }
    
    .cta p {
        font-size: 1.4rem;
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        gap: 1.5rem;
    }
}

@media (min-width: 2000px) {
    .cta {
        padding: 140px 0;
    }
    
    .cta h2 {
        font-size: 4rem;
    }
    
    .cta p {
        font-size: 1.5rem;
    }
}
.footer {
    background: #282828;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Footer große Bildschirme */
@media (min-width: 1600px) {
    .footer {
        padding: 5rem 0 3rem;
    }
    
    .footer-content {
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-logo {
        font-size: 1.75rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section p {
        font-size: 1.1rem;
    }
}

@media (min-width: 2000px) {
    .footer {
        padding: 6rem 0 4rem;
    }
    
    .footer-content {
        gap: 4rem;
    }
}

/* =============================================
   PRICING OVERVIEW SECTION
   ============================================= */
.pricing-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-overview h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.special-offer {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.special-offer h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.pricing-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-overview-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-overview-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-overview-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-overview-card .price {
    margin-bottom: 1rem;
}

.pricing-overview-card .price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-overview-card .price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.pricing-overview-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.key-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.key-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.key-features li i {
    margin-right: 0.5rem;
    color: var(--success-color);
    width: 16px;
}

.key-features li i.upgrade {
    color: var(--primary-color);
}

.pricing-overview-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.pricing-overview-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-overview h2 {
        font-size: 2rem;
    }
    
    .pricing-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-overview-card.featured {
        transform: none;
    }
    
    .pricing-overview-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
