/**
 * Centro Cyber Security
 * Stylesheet
 *
 * Professional design for Italian government-affiliated cyber security organization
 */

/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Institutional & Trustworthy */
    --navy-primary: #001F54;
    --navy-dark: #001238;
    --navy-light: #003875;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E9ECEF;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;

    /* Italian Flag Accents */
    --italian-green: #009246;
    --italian-red: #CE2B37;
    --gold: #FFD700;

    /* Functional Colors */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Merriweather', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 31, 84, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 31, 84, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 31, 84, 0.16);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    line-height: 1.2;
}

a {
    color: var(--navy-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--italian-green);
}

/* ===== Header ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    width: 60px;
    height: 60px;
    color: var(--navy-primary);
    filter: drop-shadow(0 3px 8px rgba(0, 31, 84, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-icon {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 6px 16px rgba(0, 31, 84, 0.4)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy-primary);
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav a:hover {
    background: var(--off-white);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #001238 0%, var(--navy-primary) 50%, #001238 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--italian-green) 0%, var(--white) 50%, var(--italian-red) 100%);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 146, 70, 0.05) 0%, transparent 50%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gold);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 20px 10px rgba(255, 215, 0, 0); }
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    color: var(--navy-primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-guarantees {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 146, 70, 0.3);
}

.guarantee-icon {
    font-size: 1.3rem;
    color: var(--italian-green);
    font-weight: bold;
    background: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.italian-flag-accent {
    width: 100px;
    height: 6px;
    background: linear-gradient(to right, var(--italian-green) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--italian-red) 66.66%);
    margin: 0 auto var(--spacing-md);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3), 0 0 20px rgba(0, 146, 70, 0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--italian-green) 0%, #007A3A 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 146, 70, 0.4), 0 0 40px rgba(0, 146, 70, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #007A3A 0%, #005A2A 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 146, 70, 0.5), 0 0 60px rgba(0, 146, 70, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

/* ===== About Section ===== */
.about {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    border-top: 3px solid var(--gold);
    box-shadow: inset 0 10px 30px rgba(0, 31, 84, 0.03);
}

.about-content h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--navy-primary);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--italian-green), var(--gold), var(--italian-red));
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    color: var(--gray-dark);
    line-height: 1.8;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.detail-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.detail-icon {
    width: 32px;
    height: 32px;
    color: var(--navy-primary);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: var(--navy-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.05rem;
}

.detail-item p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 31, 84, 0.1), 0 0 30px rgba(255, 215, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.badge:hover::before {
    opacity: 1;
}

.badge:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 31, 84, 0.15), 0 0 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.badge svg {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 4px 8px rgba(0, 31, 84, 0.2));
    transition: transform 0.4s ease;
}

.badge:hover svg {
    transform: scale(1.1) rotateY(5deg);
}

.badge span {
    font-size: 0.9rem;
    color: var(--navy-primary);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.step {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 31, 84, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--italian-green), var(--gold), var(--italian-red));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    border-color: var(--navy-primary);
    box-shadow: 0 8px 24px rgba(0, 31, 84, 0.12), 0 0 40px rgba(0, 146, 70, 0.08);
    transform: translateY(-6px) scale(1.02);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 16px rgba(0, 31, 84, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 3px solid var(--gold);
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0.3;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--navy-primary);
}

.step p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    background: var(--off-white);
    border-left: 4px solid var(--navy-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.disclaimer svg {
    width: 24px;
    height: 24px;
    color: var(--navy-primary);
    flex-shrink: 0;
}

.disclaimer p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ===== Form Section ===== */
.form-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 31, 84, 0.15), 0 0 60px rgba(0, 146, 70, 0.05);
    border: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--italian-green), var(--gold), var(--italian-red));
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.form-header p {
    color: var(--gray-medium);
    font-size: 1rem;
}

.case-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--navy-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(0, 31, 84, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: var(--spacing-sm) 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: var(--white);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--navy-primary);
    border-color: var(--navy-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
}

.checkbox-text {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy-link {
    color: var(--navy-light);
    text-decoration: underline;
}

.form-captcha {
    background: var(--off-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: var(--navy-primary);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-md);
}

.submit-button svg {
    width: 20px;
    height: 20px;
}

.submit-button:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:active {
    transform: translateY(0);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero-guarantees {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .nav {
        display: none;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .about-details {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: var(--spacing-md);
    }

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

@media (max-width: 480px) {
    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .form-wrapper {
        padding: var(--spacing-md);
    }
}

/* ===== Smooth Scroll ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Loading States ===== */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== Success Message ===== */
.success-message {
    background: var(--success);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: var(--spacing-md);
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
