/* General Body Styles */
:root {
    --font-heading: "Space Grotesk", "IBM Plex Sans", "Segoe UI", Helvetica, Arial, sans-serif;
    --font-body: "IBM Plex Sans", "Space Grotesk", "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #0D1117; /* Dark background */
    color: #c9d1d9; /* Light grey text */
}

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #161b22;
    border-bottom: 1px solid #30363d;
    position: relative; /* Needed for mobile nav positioning */
}

.logo a {
    text-decoration: none;
    color: #f0f6fc;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1rem auto;
}

.main-nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav a {
    color: #c9d1d9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav .cta-button {
    color: #ffffff;
}

.main-nav a:hover {
    color: #58a6ff; /* Blue accent on hover */
}

.cta-button {
    background-color: #58a6ff;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background-color: #4895f3;
}

.cta-button.secondary-button {
    background-color: transparent;
    border: 1px solid #58a6ff;
    color: #58a6ff;
}

.cta-button.secondary-button:hover {
    background-color: transparent;
    color: #80bfff;
    border-color: #80bfff;
}

/* Main Content */
main {
    padding: 0;
    max-width: 100%;
}

section {
    padding: 4rem 2rem;
    border-bottom: 1px solid #30363d;
}

section:last-child {
    border-bottom: none;
}

h1, h2 {
    color: #58a6ff; /* Blue accent for headings */
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    font-family: var(--font-heading);
}

h3, h4 {
    font-family: var(--font-heading);
}

h1 {
    text-transform: lowercase;
}

h1::first-letter {
    text-transform: uppercase;
}

p {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #c9d1d9; /* Lighter grey for paragraphs - Improved contrast */
    margin-bottom: 2rem;
}

.setup-fee {
    max-width: 60ch;
    margin: 0 auto 2.5rem auto;
    padding: 1rem 1.5rem;
    border: 1px solid #30363d;
    border-radius: 10px;
    background: rgba(88, 166, 255, 0.08);
    color: #f0f6fc;
    text-align: center;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    color: #8b949e;
    margin-top: -1rem;
}

.legal-list {
    max-width: 60ch;
    margin: 0 auto 2rem auto;
    text-align: center;
    list-style-position: inside;
}


/* Hero Section */
#hero {
    background-color: #0D1117; /* Darker base for the pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='smallGrid' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(88,166,255,0.05)' stroke-width='0.5'/%3E%3C/pattern%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Crect width='100' height='100' fill='url(%23smallGrid)'/%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(88,166,255,0.1)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)' /%3E%3C/svg%3E");
    background-size: auto; /* Use the SVG's native size */
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

#hero h1,
#hero p,
.hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

.js #hero h1,
.js #hero p,
.js #hero .hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#hero.hero-animate h1,
#hero.hero-animate p,
#hero.hero-animate .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons .cta-button {
    margin: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-buttons .secondary-button:hover {
    color: #80bfff; /* Brighter blue for text */
    border-color: #80bfff; /* Brighter blue for border */
}


/* Services Section (Pain Points) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#how-it-works .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 2.5rem;
}

#industries .services-grid {
    margin-bottom: 2.5rem;
}

#included .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

#included .service-card {
    text-align: center;
    align-items: center;
}

#included .service-card h3 {
    text-align: center;
}

#included .service-card p {
    text-align: center;
}

.service-card {
    background: #161b22;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #30363d;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.js .service-card {
    opacity: 0;
    transform: translateY(20px);
}

.services-grid a.service-card {
    color: inherit;
    text-decoration: none;
}

.service-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(7, 10, 14, 0.4);
}

.service-card h3 {
    color: #58a6ff;
    font-size: 1.25rem;
    margin-top: 1rem;
}

.service-card .icon img {
    width: 64px;
    height: 64px;
}

/* Detailed Solutions Section */
#detailed-solutions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-item {
    background: #161b22;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #30363d;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.js .solution-item {
    opacity: 0;
    transform: translateY(20px);
}

.solution-item.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(7, 10, 14, 0.4);
}

.solution-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    filter: invert(53%) sepia(35%) saturate(2462%) hue-rotate(185deg) brightness(101%) contrast(101%); /* Blue color for icons */
}

.solution-item h3 {
    color: #58a6ff;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.solution-item p {
    text-align: center;
    max-width: none; /* Override default p styles */
}

/* Pricing Tiers Section */
#pricing-tiers {
    background-color: #0D1117;
}

.billing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative; /* Establish stacking context */
    z-index: 1; /* Ensure it's above the pricing cards */
}

.billing-toggle-container span {
    font-size: 1rem;
    font-weight: 500;
    color: #c9d1d9;
}

.billing-toggle-container .discount-badge {
    background-color: #1f6feb;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.billing-toggle-container .discount-badge.visible {
    opacity: 1;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 1rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #30363d;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #58a6ff;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 5.5rem auto 0 auto; /* Add more margin-top */
    align-items: center;
}

.pricing-card {
    background: #161b22;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #30363d;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%; /* Make cards same height */
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: #58a6ff;
    transform: translateY(-8px);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #58a6ff;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card:not(.popular):hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(7, 10, 14, 0.4);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #f0f6fc;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: #58a6ff;
    margin-bottom: 0.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #c9d1d9;
}

.pricing-card .audience {
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1; /* Push features list down */
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.common-automations .features-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.common-automations .features-list li {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.common-automations .features-list li::before {
    content: '•';
    color: #58a6ff;
    position: static;
}

.features-list li {
    margin-bottom: 0.75rem;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    color: #58a6ff;
    position: absolute;
    left: 0;
}

.pricing-card .cta-button {
    width: auto;
    min-width: 180px;
    display: inline-flex;
    align-self: center;
    margin-top: auto; /* Push button to the bottom */
}

section > .cta-button,
section > .cta-button.secondary-button {
    margin: 0 auto;
}

/* Feature Comparison Table */
#feature-comparison {
    background-color: #0D1117;
}

.table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto; /* For responsive behavior on small screens */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    color: #c9d1d9;
}

table th, table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #30363d;
}

table th {
    font-size: 1.2rem;
    color: #f0f6fc;
}

table td.feature-name {
    text-align: left;
    font-weight: 600;
}

table td {
    font-size: 1rem;
}

table tbody tr:last-child td {
    border-bottom: none;
}

table tbody tr:nth-child(even) {
    background-color: #161b22;
}

/* FAQ Section */
#faq {
    background-color: #0D1117;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0 auto;
}

.faq-container details {
    background: #161b22;
    border-radius: 8px;
    border: 1px solid #30363d;
    margin-bottom: 1rem;
}

.faq-container summary {
    padding: 1.5rem 3.5rem 1.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    list-style: none; /* Remove default marker */
}

.faq-container summary::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome/Safari */
}

.faq-container summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.faq-container details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-container details p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    text-align: left;
    max-width: 100%;
    border-top: 1px solid #30363d;
    padding-top: 1.5rem;
    margin-top: -0.5rem; /* Adjust to align with summary */
}

/* Case Studies Grid */
#case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(7, 10, 14, 0.4);
}

.case-study-logo {
    max-height: 60px;
    margin-bottom: 2rem;
    filter: grayscale(100%) brightness(150%);
}

.case-study-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(240, 246, 252, 0.08);
    color: #f0f6fc;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.case-study-card h3 {
    font-size: 1.5rem;
    color: #f0f6fc;
    margin-bottom: 1.5rem;
}

.key-metrics {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 2rem;
    border-top: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
    padding: 1.5rem 0;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #58a6ff;
}

.metric-label {
    font-size: 0.9rem;
    color: #c9d1d9;
}

.case-study-card .cta-button {
    margin-top: auto;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background-color: #121828; /* Dark background */
    border-top: 1px solid #30363d;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}


/* Footer */
footer {
    background-color: #010409; /* A darker, richer black */
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid #30363d;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: left;
}
.footer-column h3, .footer-column h4 {
    color: #f0f6fc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.footer-column.footer-brand p {
    text-align: left;
    max-width: 100%;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 0.75rem;
}
.footer-column ul li a {
    color: #c9d1d9;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: #58a6ff;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #30363d;
}

.footer-cta {
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-cta .cta-button {
    margin: 0 auto;
}

.footer-cta h4 {
    color: #f0f6fc;
    margin: 0 0 0.75rem 0;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}
.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #30363d;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #0D1117;
    color: #c9d1d9;
}
.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.form-status {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-status.is-visible {
    padding: 12px 14px;
    margin-top: 1rem;
    border-radius: 6px;
    border: 1px solid #30363d;
    background-color: #161b22;
    opacity: 1;
    transform: translateY(0);
}

.form-reset {
    display: block;
    margin: 0.75rem auto 0 auto;
    background: transparent;
    border: 1px solid #30363d;
    color: #c9d1d9;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.form-reset:hover {
    border-color: #58a6ff;
    color: #58a6ff;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.download-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #58a6ff;
    color: #58a6ff;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.download-link:hover {
    border-color: #80bfff;
    color: #80bfff;
}
.contact-info {
    text-align: center;
    margin-top: 2rem;
}

/* Lead to Contract Diagram */
#lead-to-contract {
    text-align: center;
}

#lead-to-contract > .cta-button {
    display: inline-flex;
    margin: 2rem auto 0;
}

.diagram-container {
    display: flex;
    justify-content: center; /* Center items for better alignment */
    align-items: flex-start; /* Align items to the top for consistent look */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    margin: 3rem auto;
    max-width: 1200px; /* Slightly increase max-width to accommodate 4 items + arrows */
    gap: 2rem; /* Consistent spacing between items */
}

.diagram-step {
    flex-basis: 180px; /* Give steps a base width */
    flex-grow: 0;
    flex-shrink: 0; /* Prevent steps from shrinking too much */
    text-align: center;
}

.diagram-arrow {
    display: flex; /* Use flex to center the arrow image */
    align-items: center; /* Vertically center the arrow */
    margin: 0 1rem; /* Space around arrows */
}

.diagram-arrow svg {
    width: 30px;
    height: 30px;
}

.diagram-arrow svg path {
    stroke: #58a6ff; /* Blue color for arrows */
}

@media (max-width: 1024px) {
    .diagram-container {
        max-width: 900px; /* Adjust max-width for slightly smaller desktops */
    }
}

@media (max-width: 768px) {
    .diagram-container {
        flex-direction: column; /* Stack steps vertically */
        align-items: center; /* Center items when stacked */
    }

    .diagram-arrow {
        transform: rotate(90deg); /* Rotate arrow for vertical flow */
        margin: 1rem 0; /* Adjust margin for vertical flow */
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden by default */
    padding: 15px;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    z-index: 1001; /* Ensure it's above the nav */
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 100%;
    height: 3px;
    background-color: #f0f6fc;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.25s ease-in-out;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* Hamburger animation to "X" */
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(0);
    opacity: 0;
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}


/* Responsive Styles */
@media (max-width: 768px) {
    h1, h2 {
        font-size: 2rem; /* Reduce heading font size on mobile */
    }

    section {
        padding: 3rem 1.5rem; /* Reduce section padding on mobile */
    }

    #hero {
        padding: 4rem 1.5rem; /* Adjust hero padding specifically */
    }

    #detailed-solutions {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .pricing-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    #how-it-works .services-grid {
        grid-template-columns: 1fr;
    }

    #included .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1); /* Disable scaling on mobile */
    }

    .main-nav {
        display: none; /* Hide desktop nav */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #161b22;
        border-top: 1px solid #30363d;
        z-index: 1000;
    }

    .main-nav.is-active {
        display: block; /* Show mobile nav when active */
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        display: block;
        padding: 1.5rem;
        border-bottom: 1px solid #30363d;
    }

    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .cta-button {
        display: block;
        margin: 1rem;
    }
    
    .hamburger {
        display: inline-block; /* Show hamburger on mobile */
    }
}

@media (max-width: 1100px) {
    #how-it-works .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #included .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
