/* Author: Christoph Zwanzig, 2025 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #000;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0;
}

.iphone-mockup {
    width: 375px;
    height: calc(100vh - 20px);
    max-height: 900px;
    background: #000;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #333,
        0 0 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.iphone-mockup.initialized {
    opacity: 1;
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 999;
}

.iphone-mockup::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 999;
}

.version-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.author-name {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    color: white;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-name a {
    color: #87CEEB;
    text-decoration: none;
    pointer-events: all;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 4px;
}

.author-name a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.slack-logo {
    width: 20px;
    height: 20px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.version-old, .version-new {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.toggle-label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-label input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
    background: #007AFF;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.app-container.new-version .version-new,
.app-container:not(.new-version) .version-old {
    color: #007AFF;
    font-weight: 600;
}

.app-container {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    min-height: 0;
}

.app-container:not(.new-version) .new-version-only {
    display: none;
}

.app-container.new-version .old-version-only {
    display: none;
}

.header {
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    color: #000;
    padding: 50px 20px 15px 20px;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 80px;
    flex-shrink: 0;
    max-width: 100%;
    overflow: hidden;
}

.header h1 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    flex: 1;
    margin: 0 50px;
    color: #000;
}

.back-button {
    background: none;
    border: none;
    color: #007AFF;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 15px;
    border-radius: 8px;
    transition: background 0.2s;
    height: 40px;
}

.back-button:hover {
    background: rgba(0, 122, 255, 0.1);
}

.back-button svg {
    vertical-align: middle;
}

.back-button svg path {
    stroke: #007AFF;
}

.help-button {
    background: none;
    border: none;
    color: #007AFF;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    right: 15px;
    border-radius: 8px;
    transition: background 0.2s;
}

.help-button:hover {
    background: rgba(0, 122, 255, 0.1);
}

.step {
    display: none;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 100%;
    min-height: 0;
    overflow-x: hidden;
}

.step::-webkit-scrollbar {
    display: none;
}

.step.active {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    overflow-x: hidden;
}

#step1.step.active {
    display: block;
    overflow-y: auto;
}

#step3.step.active {
    display: block;
    overflow-y: auto;
}

.content-section {
    padding: 20px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.content-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.content-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 15px 0;
    color: #000;
}

#step5 .content-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 20px 0;
    color: #000;
    text-align: center;
    line-height: 1.2;
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.info-card {
    background: #f2f2f7;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-color: #38383a;
}

.info-row:not(:last-child) {
    border-bottom: 1px solid #d1d1d6;
}

.info-label-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    color: #8e8e93;
    font-size: 14px;
    font-weight: 400;
}

.info-date {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.info-value {
    font-weight: 400;
    color: #000;
    font-size: 14px;
}

.input-container {
    margin-bottom: 30px;
}

.odometer-input {
    width: 100%;
    font-size: 18px;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #d1d1d6;
    background: transparent;
    text-align: left;
    outline: none;
    font-weight: 400;
    color: #000;
}

.odometer-input:focus {
    border-bottom-color: #d1d1d6;
}

.odometer-input::placeholder {
    color: #c7c7cc;
}

.submit-button {
    width: 100%;
    background: #d1d1d6;
    color: #8e8e93;
    border: none;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 25px;
    cursor: not-allowed;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.submit-button.active {
    background: #007AFF;
    color: white;
    cursor: pointer;
}

.submit-button.active:hover {
    background: #0056CC;
}

.submit-button.loading {
    background: #8e8e93;
    color: white;
    cursor: not-allowed;
}

.keypad {
    display: grid;
    gap: 12px;
    margin: 20px;
    padding-bottom: 20px;
}

.keypad-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.key {
    background: #ffffff;
    border: 1px solid #d1d1d6;
    border-radius: 12px;
    padding: 20px;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
}

.key:hover {
    background: #f2f2f7;
}

.key:active {
    background: #e5e5ea;
    transform: scale(0.98);
}

.key.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.key.empty:hover {
    background: transparent;
}

.key .letters {
    font-size: 10px;
    color: #8e8e93;
    font-weight: 400;
    margin-top: 2px;
    text-transform: uppercase;
}

.key.delete {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px 60px 40px;
    text-align: center;
    flex: 1;
    background: white;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.loader-icon {
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

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

.loader-container h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    max-width: 280px;
    line-height: 1.4;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.result-container {
    padding: 30px 30px 30px 30px;
    text-align: center;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.result-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.result-icon img {
    max-width: 100%;
    height: auto;
}

.result-container h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.3;
}

.result-description {
    font-size: 16px;
    color: #8e8e93;
    margin-bottom: 30px;
    line-height: 1.5;
}

.info-box {
    background: #f0f8ff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.info-text-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.info-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box p {
    font-size: 14px;
    color: #1a73e8;
    line-height: 1.4;
    margin: 0;
}

.primary-button {
    width: 100%;
    background: #007AFF;
    color: white;
    border: none;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: #0056CC;
}

.primary-button:disabled {
    background: #d1d1d6;
    color: #8e8e93;
    cursor: not-allowed;
}

.primary-button:disabled:hover {
    background: #d1d1d6;
}

.drawer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer.active {
    pointer-events: all;
    opacity: 1;
}

.new-version .drawer {
    position: relative;
    z-index: auto;
    pointer-events: all;
    opacity: 1;
}

.new-version .drawer-backdrop {
    display: none;
}

.new-version .drawer-content {
    position: relative;
    transform: translateY(0);
    transition: none;
    border-radius: 0;
    max-height: none;
    overflow-y: visible;
}

.new-version .drawer-handle {
    display: none;
}

.drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.drawer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 85%;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.drawer.active .drawer-content {
    transform: translateY(0);
}

.drawer-handle {
    width: 40px;
    height: 4px;
    background: #d1d1d6;
    border-radius: 2px;
    margin: 12px auto 20px auto;
}

.help-container {
    padding: 0 30px 30px 30px;
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.help-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.help-icon img {
    max-width: 100%;
    height: auto;
}

.help-container h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.help-subtitle {
    font-size: 16px;
    color: #8e8e93;
    margin-bottom: 25px;
}

.checklist {
    text-align: left;
    margin-bottom: 30px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item span {
    font-size: 15px;
    line-height: 1.5;
    color: #000;
}

/* Checklist Icon Animation */
.check-icon.animated {
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.check-icon.animated.show {
    opacity: 1;
    transform: scale(1);
}

.check-icon.animated svg {
    transition: all 1s ease;
}

.check-icon.animated.show svg {
    animation: checkIconBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes checkIconBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.new-version .analysis-container {
    padding: 20px;
}

.analysis-header {
    text-align: center;
    margin-bottom: 20px;
}

.analysis-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.analysis-subtitle {
    font-size: 16px;
    color: #8e8e93;
    margin: 0;
}

.accordion {
    margin-bottom: 24px;
}

.accordion-item {
    border: 1px solid #e5e5ea;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
}

.accordion-header:hover {
    background: #f8f8f8;
}

.accordion-header:active {
    background: #e5e5ea;
}

.accordion-header span {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    flex: 1;
    margin-right: 12px;
    line-height: 1.3;
}

.accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-content {
    display: none;
    overflow: hidden;
    background: #fff;
    padding: 16px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    font-size: 14px;
    color: #3c3c43;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.accordion-content .info-box p {
    color: #1a73e8;
    margin: 0 0 12px 0;
}

.accordion-content .info-box p:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    margin: 0 0 16px 0;
    padding-left: 16px;
}

.accordion-content li {
    font-size: 13px;
    color: #8e8e93;
    margin-bottom: 4px;
    line-height: 1.3;
}

.action-button {
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.action-button:hover {
    background: #0056b3;
}

.action-button:active {
    background: #004494;
    transform: translateY(0);
}

.old-version .analysis-container {
    display: none;
}

.new-version .help-container {
    display: none;
}

.new-version .analysis-container {
    display: block;
}

.new-version #step4 .drawer-content {
    padding-bottom: 40px;
}

.analysis-container, .help-container {
    transition: opacity 0.3s ease;
}

.help-content {
    margin: 10px 0 10px 0;
    text-align: left;
}

.help-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
}

.help-subtitle.centered {
    text-align: center;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.secondary-button {
    flex: 1;
    background: transparent;
    color: #007AFF;
    border: 1px solid #007AFF;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: rgba(0, 122, 255, 0.1);
}

.button-group .primary-button {
    flex: 1;
    margin: 0;
}

.analysis-page {
    padding: 30px 30px 30px 30px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.analysis-page .analysis-header {
    text-align: center;
    margin-bottom: 20px;
}

.analysis-page .primary-button {
    margin-top: 30px;
}

.analysis-checkbox {
    margin: 20px 0;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e5e5ea;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #c7c7cc;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-input:checked {
    background: #007AFF;
    border-color: #007AFF;
}

.checkbox-input:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 15px;
    color: #000;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.service-info {
    background: #f2f2f7;
    border-radius: 8px;
    padding: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #3c3c43;
    line-height: 1.4;
}

.message-container {
    margin-bottom: 20px;
}

.message-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.customer-message {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 1px solid #d1d1d6;
    border-radius: 8px;
    font-size: 16px;
    color: #000;
    background: white;
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.2s ease;
}

.customer-message:focus {
    border-color: #007AFF;
}

.customer-message::placeholder {
    color: #c7c7cc;
}

.thank-you-container {
    padding: 60px 30px;
    text-align: center;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.thank-you-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.thank-you-subtitle {
    font-size: 16px;
    color: #8e8e93;
    line-height: 1.4;
    margin: 0;
}

strong {
    color: #000;
    font-weight: 600;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    word-wrap: break-word;
    transform: translateX(100%);
    max-width: calc(100vw - 40px);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .iphone-mockup {
        width: 350px;
        height: 760px;
    }
    
    .version-toggle {
        top: 10px;
        left: 10px;
        padding: 8px;
    }
    
    .author-name {
        bottom: 10px;
        left: 10px;
        font-size: 12px;
        gap: 6px;
    }
    
    .slack-logo {
        width: 16px;
        height: 16px;
    }
    
    .toast {
        top: 10px;
        right: 10px;
        font-size: 13px;
        max-width: calc(100vw - 20px);
    }
    
    .toggle-label {
        width: 40px;
        height: 22px;
    }
    
    .toggle-slider:before {
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 3px;
    }
    
    input:checked + .toggle-slider:before {
        transform: translateX(18px);
    }
    
    .version-old, .version-new {
        font-size: 10px;
    }
    
    .content-section {
        padding: 15px;
    }
    
    .keypad {
        margin: 15px;
    }
    
    .key {
        min-height: 55px;
        padding: 15px;
        font-size: 20px;
    }
    
    .result-container {
        padding: 30px 20px;
    }
    
    .help-container {
        padding: 0 20px 30px 20px;
    }
    
    .accordion-header {
        padding: 14px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    .accordion-header span {
        font-size: 14px;
    }
    
    .accordion-content {
        padding: 14px;
    }
    
    .action-button {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .step-indicator {
        bottom: 10px;
        right: 10px;
        font-size: 12px;
        gap: 6px;
    }
    
    .step-indicator .spreadsheet-logo {
        height: 16px;
    }
}

.step-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    user-select: none;
    display: none;
    align-items: center;
    gap: 8px;
    flex-direction: row-reverse;
}

.app-container.new-version .step-indicator {
    display: flex;
}

.step-indicator .spreadsheet-logo {
    height: 20px;
    transition: transform 0.2s ease;
}

.step-indicator .step-number {
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
} 