/* ============================================
   NEWDIA 스타일시트
   ============================================ */

/* Variables */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #999999;
    --gray-600: #666666;
    --gray-800: #333333;
    --accent: #a9db2a;

    --font-en: 'Inter', sans-serif;
    --font-kr: 'Pretendard', sans-serif;

    --container: 1200px;
    --header-h: 80px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-kr);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-en);
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background 0.3s, backdrop-filter 0.3s;
}

/* Light Section 위에 있을 때 */
.header.light {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--gray-200);
}

.header.light .logo {
    background-image: url('../images/NEWDIA_CI-01.svg'); /* 검정 로고 */
}

.header.light .nav-link {
    color: var(--black);
}

.header.light .nav-toggle span {
    background: var(--black);
}


/* Hero 위 (기본 상태) */
.header .logo {
    background-image: url('../images/NEWDIA_CI-02.svg');
}

/* 메뉴 컬러 */
.header.scrolled .nav-link {
    color: var(--black);
}

.header .nav-link {
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 24px; /* ✅ 좌우 여백 추가 */
}

.logo {
    margin-right: 48px;
    display: block;
    width: 140px;
    height: 32px;

    position: relative;   /* ⭐ 추가 */
    top: 1px;             /* ⭐ 핵심: 살짝 내려줌 */

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;}

.header.scrolled .logo { color: var(--black); }

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

.header.scrolled .nav-link { color: var(--black); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    z-index: 1001;
}

.nav-toggle span {
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

.header.scrolled .nav-toggle span { background: var(--black); }

.nav-toggle.active span { background: var(--white); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 700px; }

.hero-title {
    font-family: var(--font-en);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title span { display: block; }
.hero-title .accent { color: var(--accent); }

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

/* ========================================
   ABOUT
   ======================================== */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.stat-number {
    display: block;
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ========================================
   SERVICES
   ======================================== */
.services { background: var(--gray-100); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-title {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.service-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    font-size: 24px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   GALLERY (카테고리별 섹션)
   ======================================== */
.gallery-section {
    background: var(--white);
    padding: 100px 0;
}

.gallery-section.alt {
    background: var(--gray-100);
}

.gallery-section-header {
    margin-bottom: 48px;
}

.gallery-section-title {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.gallery-section-desc {
    font-size: 16px;
    color: var(--gray-600);
}

.view-all-link {
    display: inline-block;
    margin-left: 16px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: opacity 0.3s;
}

.view-all-link:hover {
    opacity: 0.7;
}

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

.gallery-item {
    cursor: pointer;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-item-client {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.95);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--gray-400);
    transition: color 0.3s;
}

.modal-close:hover { color: var(--accent); }

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.modal-gallery { background: var(--black); }

.modal-main {
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 28px;
    transition: background 0.3s;
}

.modal-nav:hover { background: var(--accent); }
.modal-nav.prev { left: 20px; }
.modal-nav.next { right: 20px; }

.modal-thumbs {
    display: flex;
    gap: 8px;
    padding: 16px;
    overflow-x: auto;
}

.modal-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    opacity: 0.5;
    transition: opacity 0.3s;
    padding: 0;
    border: 2px solid transparent;
}

.modal-thumb:hover,
.modal-thumb.active {
    opacity: 1;
}

.modal-thumb.active { border-color: var(--accent); }

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info { padding: 40px; }

.modal-category {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.modal-title {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 600;
    margin: 12px 0 16px;
}

.modal-desc {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.modal-meta {
    display: flex;
    gap: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.meta-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.meta-value {
    font-size: 15px;
    font-weight: 500;
}

/* ========================================
   PROBLEM/SOLUTION (신규)
   ======================================== */
.problem-solution {
    background: var(--white);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ps-column-title {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.ps-problems .ps-column-title {
    color: var(--gray-600);
}

.ps-solutions .ps-column-title {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.ps-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ps-item {
    padding: 24px;
    background: var(--gray-100);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ps-solutions .ps-item {
    background: rgba(169, 219, 42, 0.1);
    border-left: 3px solid var(--accent);
}

.ps-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ps-item-title {
    font-family: var(--font-kr);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.ps-item-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   PACKAGES (신규)
   ======================================== */
.packages {
    background: var(--gray-100);
}

.section-desc {
    font-size: 18px;
    color: var(--gray-600);
    margin-top: 16px;
}

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

.package-card {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    /* 카드 높이 균등화 */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 520px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.package-card.highlight {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.package-card.highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 16px;
}

.package-name {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.package-subtitle {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.package-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.package-features {
    text-align: left;
    margin-bottom: 32px;
    padding: 0 16px;
    /* 버튼을 하단에 고정시키기 위한 flex-grow */
    flex-grow: 1;
}

.package-features li {
    font-size: 14px;
    color: var(--gray-800);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 24px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.package-features li:last-child {
    border-bottom: none;
}

/* 패키지 카드 버튼 하단 고정 */
.package-card .btn {
    margin-top: auto;
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ========================================
   TARGET CLIENT (신규)
   ======================================== */
.target-client {
    background: var(--white);
}

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

.tc-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-100);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--white);
}

.tc-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.tc-card-title {
    font-family: var(--font-kr);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.tc-card-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   CTA SECTION (신규)
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #8bc34a 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-kr);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.cta-btn {
    background: var(--white);
    color: var(--accent);
    border: none;
    font-size: 16px;
    padding: 18px 48px;
}

.cta-btn:hover {
    background: var(--black);
    color: var(--white);
}

.cta-subtext {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
}

/* ========================================
   MESSAGE
   ======================================== */
.message {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.message-content { max-width: 800px; margin: 0 auto; }

.quote {
    font-family: var(--font-kr);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 24px;
    white-space: nowrap;
}

.quote-desc {
    font-size: 25px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    background: var(--gray-100);
    text-align: center;
}

.contact-content { max-width: 600px; margin: 0 auto; }

.contact-title {
    font-family: var(--font-en);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: nowrap;
}

.contact-link {
    text-align: center;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    color: var(--black);
    white-space: nowrap;
    transition: color 0.3s;
}

/* 모바일에서만 예외 처리 */
@media (max-width: 768px) {
    .contact-value {
        white-space: normal;
        word-break: keep-all;
    }
}

a.contact-link:hover .contact-value { color: var(--accent); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 32px;
}

.social-link {
    font-family: var(--font-en);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.social-link:hover { color: var(--accent); }

.copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}

/* ========================================
   RESPONSIVE - Tablet
   ======================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 56px; }
    .section-title { font-size: 36px; }
    .about-grid { gap: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-section-title { font-size: 28px; }

    /* Problem/Solution */
    .ps-grid { gap: 40px; }

    /* Packages */
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .package-card { min-height: 480px; }

    /* Target Client */
    .tc-grid { grid-template-columns: repeat(2, 1fr); }

    /* CTA */
    .cta-title { font-size: 36px; }
}

/* ========================================
   RESPONSIVE - Mobile
   ======================================== */
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .gallery-section { padding: 60px 0; }

    /* Mobile Nav */
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 24px;
        color: var(--white);
    }

    /* Hero */
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 16px; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image { order: -1; }
    .about-image img { height: 300px; }

    .stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat-number { font-size: 36px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-section-title { font-size: 24px; }

    /* Modal */
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
    }

    .modal-info { padding: 24px; }
    .modal-title { font-size: 24px; }
    .modal-meta { flex-direction: column; gap: 16px; }

    /* Message */
    .quote { font-size: 24px; }

    /* Contact */
    .contact-title { font-size: 32px; }
    .contact-info { flex-direction: column; gap: 24px; }

    /* Problem/Solution */
    .ps-grid { grid-template-columns: 1fr; gap: 48px; }
    .ps-item { padding: 20px; }

    /* Packages */
    .packages-grid { grid-template-columns: 1fr; }
    .package-card { padding: 32px 24px; min-height: auto; }
    .package-name { font-size: 24px; }

    /* Target Client */
    .tc-grid { grid-template-columns: 1fr; }
    .tc-card { padding: 32px 20px; }
    .tc-icon { font-size: 40px; }

    /* CTA */
    .cta-title { font-size: 28px; }
    .cta-description { font-size: 16px; }
    .cta-btn { padding: 16px 32px; font-size: 14px; }
}
