/* ==========================================================================
   HTCTheme — Front Page Styles
   ========================================================================== */

/* -------------------------------------------------------------------------
   Shared Section Utilities
   ------------------------------------------------------------------------- */
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: var(--weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}
.section-title .highlight { color: var(--color-primary); }
.section-title--light { color: var(--color-white); }
.section-title--light .highlight { color: var(--color-accent); }

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    max-width: 640px;
    margin-bottom: 0;
}
.section-subtitle--light { color: rgba(255, 255, 255, 0.72); }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-label--light { color: var(--color-accent) !important; }
.section-label--light::after { background: var(--color-accent) !important; }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.8125rem 1.5rem;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    line-height: 1;
    white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform var(--transition-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-border);
}
.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-bg);
}

.btn--full { width: 100%; justify-content: center; }

/* -------------------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------------------- */
.hero-section {
    /*background: var(--color-white);*/
    background: url('/wp-content/uploads/2026/06/hero_bg-scaled.jpg') no-repeat center center;
    background-size: cover;
    padding: calc(var(--header-height) + 4rem) 0 5rem;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

/* Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
/*    background: var(--color-primary-bg);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    padding: 0.375rem 1rem;*/
    margin-bottom: var(--space-6);
}
.section-badge span {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero title */
.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: var(--weight-bold);
    color: var(--color-navy);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
}
.hero-title .highlight { color: var(--color-primary); }

.hero-description {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 560px;
}

/* Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

/* Stats row */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}
.hero-stat {
    gap: var(--space-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-stat__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-stat__label {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    white-space: nowrap;
}

/* Hero image */
.hero-image { 
    position: relative; 
    align-self: flex-end;
}
.hero-image__img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}
.hero-image__placeholder {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 520px;
}
.hero-image__gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-navy) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
}
.hero-image__icon { opacity: 0.9; }
.hero-image__placeholder-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin: 0;
    text-align: center;
    padding: 0 var(--space-8);
}

/* -------------------------------------------------------------------------
   ABOUT SECTION
   ------------------------------------------------------------------------- */
.about-section {
    padding: 50px 0;
    background: var(--color-bg-light);
}

.about-inner {
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: start;
}
.about-text .section-title {
    font-size: 24px;
}
.about-text p {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}
.about-text .btn { margin-top: var(--space-4); }

/* Feature cards */
.about-cards { 
    display: flex; 
    /*flex-direction: column; */
    gap: var(--space-5); 
}

.feature-card {
    display: flex;
    gap: var(--space-5);
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--transition-slow);
    flex-direction: column;
}
.feature-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
}
.feature-card__icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card__title {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}
.feature-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* -------------------------------------------------------------------------
   ECOSYSTEM SECTION
   ------------------------------------------------------------------------- */
.ecosystem-section {
    padding: 50px 0;
    /*background: var(--color-navy);*/
}

.ecosystem-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-top: var(--space-16);
    /*overflow-x: auto;*/
    padding-bottom: var(--space-4);
}

.ecosystem-node {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #ccc;
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: all var(--transition-slow);
}
.ecosystem-node:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-4px);
}
/*.ecosystem-node--featured {
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.5);
}*/
.ecosystem-node--featured:hover { background: rgba(37, 99, 235, 0.35); }

.ecosystem-node__icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}
.ecosystem-node--featured .ecosystem-node__icon {
    background: rgba(37, 99, 235, 0.3);
}

.ecosystem-node__title {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: #2563EB;
    margin-bottom: var(--space-3);
}
.ecosystem-node__desc {
    font-size: var(--text-sm);
    color: #333;
    line-height: var(--leading-relaxed);
    margin: 0;
}

.ecosystem-arrow {
    flex-shrink: 0;
    padding: 0 var(--space-2);
    display: flex;
    align-items: center;
    opacity: 0.7;
}

/* -------------------------------------------------------------------------
   GAISHA SECTION
   ------------------------------------------------------------------------- */
.gaisha-section {
    padding: 50px 0;
    background: var(--color-white);
}
.gaisha-inner {
    display: grid;
    grid-template-columns: 30% 70%;
    /*gap: var(--space-16);*/
}

.gaisha-content .section-label { margin-bottom: var(--space-3); }
.gaisha-content .section-title { margin-bottom: var(--space-5); }

.gaisha-desc {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

/* Feature list */
.gaisha-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}
.gaisha-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--color-text);
}
.gaisha-feature__icon { flex-shrink: 0; }

/* Dashboard mockup */
.gaisha-mockup { perspective: 1200px; }

.mockup-window {
    background: var(--color-navy);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}
.mockup-window:hover { transform: rotateY(0) rotateX(0); }

.mockup-titlebar {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mockup-dot--red   { background: #FF5F57; }
.mockup-dot--yellow { background: #FFBD2E; }
.mockup-dot--green { background: #28C840; }
.mockup-titlebar__label {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.6);
    margin-left: var(--space-3);
}

.mockup-body { padding: var(--space-6); }

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}
.mockup-logo {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-white);
    letter-spacing: -0.02em;
}
.mockup-status {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.mockup-status--live {
    background: rgba(16, 185, 129, 0.2);
    color: #6EE7B7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mockup-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}
.mockup-metric {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}
.mockup-metric--highlight {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
}
.mockup-metric__value {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-1);
}
.mockup-metric__label {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.55);
    font-weight: var(--weight-medium);
    margin-bottom: var(--space-1);
}
.mockup-metric__unit {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
}
.mockup-metric__trend {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
}
.mockup-metric__trend--up { color: #6EE7B7; background: rgba(16, 185, 129, 0.15); }
.mockup-metric__trend--down { color: #93C5FD; background: rgba(37, 99, 235, 0.15); }

/* Mini bar chart */
.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: var(--space-2);
    height: 72px;
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: var(--space-3);
}
.mockup-chart__bar {
    flex: 1;
    background: rgba(96, 165, 250, 0.3);
    border-radius: 3px 3px 0 0;
    transition: background var(--transition-fast);
}
.mockup-chart__bar--active { background: var(--color-primary); }

.mockup-footer-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0;
}

/* -------------------------------------------------------------------------
   FUTURE INVESTMENT SECTION
   ------------------------------------------------------------------------- */
.investment-section {
    padding: 50px 0;
    background: var(--color-bg-light);
}

.investment-cards {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: space-around;
}

.invest-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-6);
    transition: all var(--transition-slow);
    width: 22.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.invest-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.2);
}
.invest-card__icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}
.invest-card__title {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}
.invest-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Disclaimer */
.investment-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5) var(--space-6);
}
.investment-disclaimer svg { flex-shrink: 0; margin-top: 2px; }
.investment-disclaimer p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* -------------------------------------------------------------------------
   VISION SECTION
   ------------------------------------------------------------------------- */
.vision-section {
    padding: 50px 0;
    background: var(--color-white);
}
.vision-inner { 
    /*max-width: 860px; 
    margin: 0 auto; 
    text-align: center; */
    display: flex;
}

.vision-quote {
    border: none;
    margin: var(--space-12) 0;
    padding: var(--space-10) var(--space-12);
    background: #fff;
    border-radius: var(--radius-2xl);
    position: relative;
}
/*.vision-quote::before {
    content: '\201C';
    position: absolute;
    top: var(--space-4);
    left: var(--space-8);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}*/
.vision-quote__text {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: var(--weight-bold);
    line-height: var(--leading-snug);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
    text-align: left;
    color: #2563EB;
}
.vision-quote__footer cite {
    font-size: var(--text-sm);
    font-style: normal;
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    display: block;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
    text-align: center;
}
.vision-pillar__number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: var(--space-2);
}
.vision-pillar__title {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}
.vision-pillar__desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin: 0;
    line-height: var(--leading-relaxed);
}

/* -------------------------------------------------------------------------
   CONTACT / PARTNER SECTION
   ------------------------------------------------------------------------- */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}
.contact-inner {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: var(--space-16);
    align-items: start;
}
.contact-section-form {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
    align-items: stretch;
}

.contact-section-form .form-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-section-form .form-left .form-group {
    margin-bottom: 15px;
}
.contact-section-form .form-textarea {
    width: 100%;
    min-height: unset;
}

.contact-section-form .btn--full {
    width: 100%;
}
.contact-content .section-title { margin-bottom: var(--space-5); }
.contact-desc {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    font-style: normal;
    margin-bottom: var(--space-8);
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}
.contact-detail__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.contact-detail span:not(.contact-detail__icon),
.contact-detail a {
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.5;
}
.contact-detail a:hover { color: var(--color-primary); }

.contact-social {
    display: flex;
    gap: var(--space-3);
}
.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: all var(--transition-base);
}
.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Contact form wrapper */
.contact-form-wrap {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-card);
}
.contact-form__heading {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-6);
}

/* Form elements */
.form-row { display: flex; gap: var(--space-5); }
.form-row--two > .form-group { flex: 1; }

.form-group { margin-bottom: var(--space-5); }
.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}
.form-required { color: var(--color-error); }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-lighter); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }

/* -------------------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-inner,
    .about-inner,
    .gaisha-inner,
    .contact-inner { grid-template-columns: 1fr; gap: var(--space-12); }

    .hero-section { padding-top: calc(var(--header-height) + 3rem); }
    .hero-image { order: -1; }
    .hero-image__placeholder,
    .hero-image__img { height: 380px; }

    .investment-cards { grid-template-columns: repeat(2, 1fr); }
    .ecosystem-flow { flex-wrap: wrap; gap: var(--space-4); }
    .ecosystem-arrow { display: none; }
    .ecosystem-node { max-width: 46%; }
}

@media (max-width: 768px) {
    .hero-stats { gap: var(--space-4); }
    .hero-stat__label { font-size: var(--text-xs); }

    .investment-cards { grid-template-columns: 1fr; }
    .vision-pillars { grid-template-columns: 1fr; gap: var(--space-6); }

    .vision-quote { padding: var(--space-8) var(--space-6); }
    .vision-quote::before { font-size: 4rem; }

    .contact-form-wrap { padding: var(--space-8) var(--space-6); }
    .form-row--two { flex-direction: column; gap: 0; }
    .ecosystem-node { max-width: 100%; }

    .mockup-metrics { grid-template-columns: repeat(2, 1fr); }
    .mockup-window { transform: none; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { justify-content: space-between; }
    .about-cards { 
        flex-direction: column; 
    }
    .contact-section-form {
        grid-template-columns: 1fr;
    }
    .contact-form .form-row {
        display: block;
    }
    .investment-cards {
        flex-wrap: wrap;
    }
    .investment-cards .invest-card {
        width: 100%;
    }
    .hero-image {
        order: unset;
    }
    .hero-image .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
