/* ==========================================================================
   B2B Homepage Sections
   ========================================================================== */

/* Hero Section */
.hero-section {
    padding: 4rem 0 6rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Ensure container inside hero is properly positioned */
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Add smooth transition at the bottom */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: center;
    max-width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Dashboard Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.dashboard-preview {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.dashboard-header {
    /* background: var(--primary-color); */
    padding: 1rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-content {
    padding: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.product-card {
    border: var(--card-border);
    border-radius: var(--card-radius);
    padding: 0.75rem;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    transition: var(--card-transition);
    text-align: center;
    min-width: 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 80px;
    background: var(--light-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.product-info {
    width: 100%;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h4 {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
}

.product-condition {
    font-size: 0.7rem;
    color: var(--success-color);
    background: rgba(40, 167, 69, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: var(--border-radius-sm);
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem & Solution Section */
.problem-solution-section {
    padding: 4rem 0;
    background: white;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card,
.solution-card {
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.problem-card {
    background: #fff5f5;
    border: 2px solid #fed7d7;
}

.solution-card {
    background: #f0fff4;
    border: 2px solid #9ae6b4;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.problem-card .card-icon {
    background: #fed7d7;
    color: var(--error-color);
}

.solution-card .card-icon {
    background: #9ae6b4;
    color: var(--success-color);
}

.problem-card h3,
.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card ul,
.solution-card ul {
    list-style: none;
    text-align: left;
}

.problem-card li,
.solution-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.problem-card li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
}

.solution-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 98, 76, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Business Impact Section */
.business-impact-section {
    padding: 4rem 0;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2rem;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.impact-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Listing Types Section */
.listing-types-section {
    padding: 4rem 0;
    background: white;
}

.listing-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.listing-type-card {
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: var(--shadow-sm);
}

.listing-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.listing-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 98, 76, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.listing-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.listing-type-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.listing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.listing-features li {
    padding: 0.75rem 0;
    color: var(--dark-color);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e9ecef;
}

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

.listing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .listing-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .listing-type-card {
        padding: 2rem;
    }

    .listing-type-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .listing-type-card h3 {
        font-size: 1.25rem;
    }
}

/* How it Works Sections */
.how-it-works-section {
    padding: 4rem 0;
    background: white;
}

.how-it-works-section:nth-child(even) {
    background: var(--light-color);
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.process-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(2, 98, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.process-title {
    flex: 1;
}

.process-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.process-title p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Interactive Demo Elements */
.demo-interface {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Listing Creation Interface */
.listing-creation {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-top: 1rem;
}

.listing-creation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-creation-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.listing-creation-content p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.listing-creation-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.listing-creation-button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}



/* Integration Process Section */
.integration-process-section {
    padding: 4rem 0;
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.process-step p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    border-radius: var(--border-radius-lg);
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    color: var(--primary-color) !important;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-feature svg {
    color: var(--accent-color);
}

/* B2B Homepage Responsive */
@media (max-width: 768px) {
    /* Increase tap targets and tighten spacing on mobile */
    .btn { min-height: 48px; }

    .hero-section {
        padding: 2rem 0 4rem 0;
        min-height: auto;
    }
    
    .hero-section::after {
        height: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.55;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .dashboard-preview {
        max-width: 100%;
        transform: scale(0.8);
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 0 3rem 0;
    }
    
    .hero-section::after {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        margin-bottom: 1.5rem;
    }
    
    .hero-cta .btn {
        padding: 1rem 1.25rem;
        font-size: 1.25rem;
        max-width: 250px;
    }
    
    .hero-stats {
        align-items: center;
    }
    
    .stat {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .hero-visual {
        padding: 0 0.5rem;
    }
    
    .dashboard-preview {
        transform: none;
        max-width: 100%;
    }
    
    .dashboard-content {
        padding: 0.75rem;
    }
    
    .product-grid {
        gap: 0.5rem;
    }
    
    .product-card {
        padding: 0.5rem;
    }
    
    .product-info h4 {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .product-price {
        font-size: 0.8rem;
    }
    
    .product-condition {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
        line-height: 1.1;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .impact-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-cta .btn {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
        max-width: 180px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat {
        min-width: auto;
    }
    
    .dashboard-preview {
        transform: scale(0.6);
        max-width: 85%;
    }
    
    .hero-visual {
        padding: 0 0.25rem;
    }
}

/* ==========================================================================
   Content Lists (ul/ol)
   ========================================================================== */

/* Default styling for content lists */
.content ul,
.content ol,
article ul,
article ol,
.page-content ul,
.page-content ol,
.entry-content ul,
.entry-content ol {
    margin: 1rem 0;
    padding-left: 2.5rem;
    line-height: 1.8;
}

/* Nested lists */
.content ul ul,
.content ol ol,
.content ul ol,
.content ol ul,
article ul ul,
article ol ol,
article ul ol,
article ol ul {
    margin: 0.5rem 0;
}

/* List items */
.content li,
article li,
.page-content li,
.entry-content li {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.content li:last-child,
article li:last-child,
.page-content li:last-child,
.entry-content li:last-child {
    margin-bottom: 0;
}

/* Unordered lists */
.content ul,
article ul,
.page-content ul,
.entry-content ul {
    list-style-type: disc;
    list-style-position: outside;
}

.content ul ul,
article ul ul,
.page-content ul ul,
.entry-content ul ul {
    list-style-type: circle;
}

.content ul ul ul,
article ul ul ul,
.page-content ul ul ul,
.entry-content ul ul ul {
    list-style-type: square;
}

/* Ordered lists */
.content ol,
article ol,
.page-content ol,
.entry-content ol {
    list-style-type: decimal;
    list-style-position: outside;
}

.content ol ol,
article ol ol,
.page-content ol ol,
.entry-content ol ol {
    list-style-type: lower-alpha;
}

.content ol ol ol,
article ol ol ol,
.page-content ol ol ol,
.entry-content ol ol ol {
    list-style-type: lower-roman;
}

/* Bold list items styling */
.content li strong:first-child,
article li strong:first-child,
.page-content li strong:first-child,
.entry-content li strong:first-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .content ul,
    .content ol,
    article ul,
    article ol,
    .page-content ul,
    .page-content ol,
    .entry-content ul,
    .entry-content ol {
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .content ul,
    .content ol,
    article ul,
    article ol,
    .page-content ul,
    .page-content ol,
    .entry-content ul,
    .entry-content ol {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
    
    .content li,
    article li,
    .page-content li,
    .entry-content li {
        margin-bottom: 0.5rem;
    }
}

/* ==========================================================================
   HTML Tables
   ========================================================================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

thead {
    background: var(--primary-color);
    color: white;
}

thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

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

tbody tr:hover {
    background-color: var(--light-color);
}

tbody td {
    padding: 1rem;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Striped rows variant */
table.striped tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

table.striped tbody tr:nth-child(even):hover {
    background-color: var(--light-color);
}

/* Bordered variant */
table.bordered {
    border: 1px solid #e9ecef;
}

table.bordered td,
table.bordered th {
    border: 1px solid #e9ecef;
}

/* Compact variant */
table.compact td,
table.compact th {
    padding: 0.5rem;
}

/* Responsive table wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
}

.table-responsive table {
    margin: 0;
    min-width: 600px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    thead th,
    tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Stack table on very small screens */
    table.stack-mobile {
        border: 0;
    }
    
    table.stack-mobile thead {
        display: none;
    }
    
    table.stack-mobile tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e9ecef;
        border-radius: var(--border-radius-md);
    }
    
    table.stack-mobile tbody td {
        display: block;
        text-align: right;
        padding: 0.75rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    table.stack-mobile tbody td:last-child {
        border-bottom: none;
    }
    
    table.stack-mobile tbody td::before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: var(--primary-color);
    }
}

@media (max-width: 480px) {
    .table-responsive table {
        min-width: 100%;
    }
    
    thead th,
    tbody td {
        padding: 0.5rem 0.4rem;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Subscription Plans Section
   ========================================================================== */

   .subscription-section {
    padding: 80px 0;
    background: var(--light-color);
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.subscription-section.has-overlay .container {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
}

.subscription-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.subscription-overlay-content {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.subscription-overlay-content h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.subscription-overlay-content p {
    color: var(--dark-color);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.subscription-overlay-content .btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.subscription-overlay-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 201, 115, 0.2);
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.subscription-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--card-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--card-transition);
    box-shadow: var(--card-shadow);
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.subscription-card.popular {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.subscription-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.plan-price {
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.period {
    font-size: 16px;
    color: var(--dark-color);
    opacity: 0.7;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

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

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.plan-cta {
    margin-top: 20px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--dark-color);
    opacity: 0.8;
    margin: 0 0 15px 0;
}

/* Meeting item specific styling */
.meeting-item .contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-meeting,
.btn-meeting-link {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* background: linear-gradient(135deg, var(--accent-color), #00c973); */
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.btn-meeting:hover,
.btn-meeting-link:hover {
    /* background: linear-gradient(135deg, #00c973, #00b366); */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

.btn-meeting:active,
.btn-meeting-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Contact Form */
.contact-form-container {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00C973;
    box-shadow: 0 0 0 3px rgba(0, 201, 115, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--input-border-focus);
    box-shadow: 0 0 0 3px rgba(0, 223, 130, 0.1);
}

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

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

.form-message {
    padding: 15px;
    border-radius: var(--border-radius-md);
    margin-top: 20px;
    font-weight: 500;
}

.form-message.success {
    background: var(--status-success-bg);
    border: 1px solid var(--status-success-border);
    color: var(--status-success-color);
}

.form-message.error {
    background: var(--status-error-bg);
    border: 1px solid var(--status-error-border);
    color: var(--status-error-color);
}

/* ==========================================================================
   Interactive Demo Section
   ========================================================================== */

.interactive-demo-section {
    padding: 80px 0;
    background: var(--light-color);
}

.demo-container {
    margin-top: 50px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 600px;
}

.overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.play-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-video-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-color-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.play-video-btn svg {
    width: 24px;
    height: 24px;
}

#demo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Browser Window Styling */
.demo-browser {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.browser-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e9ecef;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red {
    background: #ff5f57;
}

.browser-dot.yellow {
    background: #ffbd2e;
}

.browser-dot.green {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    color: #6c757d;
    overflow: hidden; /* contain long urls */
}

.url-text {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    white-space: nowrap;      /* single line */
    overflow: hidden;         /* hide overflow */
    text-overflow: ellipsis;  /* add ellipsis */
    display: block;
}

.browser-content {
    padding: 30px;
    background: #ffffff;
}

/* Product Page Demo */
.product-page-demo {
    max-width: 100%;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.product-image-demo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.product-info-demo h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.price-demo {
    margin-bottom: 15px;
}

.original-price {
    font-size: 16px;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 10px;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-description {
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Product Block Demo */
.product-block-demo {
    margin-top: 20px;
    position: relative;
}

.product-block-demo .product_block {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-block-demo .flex-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-block-demo .flex-item-img {
    flex-shrink: 0;
}

.product-image-small {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.product-block-demo .flex-item-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-block-demo .flex-item-text p {
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-block-demo .product_view_open {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-block-demo .product_view_open:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 223, 130, 0.3);
}

/* Click hint animation on the CTA button */
.product-block-demo .product_view_open.show-click-hint {
    position: relative;
    overflow: visible;
}

.product-block-demo .product_view_open.show-click-hint::before {
    /* ripple ring */
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: hintRipple 1.6s ease-out infinite;
    pointer-events: none;
}

.product-block-demo .product_view_open.show-click-hint::after {
    /* cursor graphic */
    content: "";
    position: absolute;
    left: 65%;
    top: -14px;
    width: 20px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    /* realistic pointer cursor SVG (white fill, dark border) */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="28" viewBox="0 0 20 28"><path d="M2 2 L2 19 L7.5 14.5 L10.5 24.5 L13.3 23.5 L10.3 13.5 L18 13.5 Z" fill="white" stroke="%23212b36" stroke-width="1.5" stroke-linejoin="round"/></svg>');
    animation: hintClick 1.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hintRipple {
    0% { opacity: 0.0; transform: translate(-50%, -50%) scale(0.6); }
    30% { opacity: 0.8; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes hintClick {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    20% { transform: translate(-4px, 2px) scale(0.96); }
    35% { transform: translate(0, 0) scale(1); }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Second-hand Options */
.second-hand-options {
    position: absolute;
    top: -150px;
    left: -20px;
    right: -20px;
    bottom: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: slideDown 0.3s ease-out;
    overflow: visible;
}

.second-hand-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 11;
}

.second-hand-close:hover {
    background: #f8f9fa;
    color: var(--dark-color);
}

.second-hand-options h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
    margin-top: 10px;
}

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

.option-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    background: #ffffff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 223, 130, 0.15);
}

.option-image {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    margin: 0 auto 10px;
}

.option-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.option-info .condition {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 8px;
}

.option-info .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

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




/* Responsive Design */
@media (max-width: 1024px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-placeholder {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .browser-content {
        padding: 20px;
    }
    /* Constrain video height on mobile to avoid overfilling viewport */
    .video-wrapper { max-height: 60vh; }
    /* Remove extra spacing above demo section on mobile */
    .demo-container { margin-top: 0; }
    
    .product-main {
        grid-template-columns: 120px 1fr; /* image left, text right */
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .image-placeholder {
        width: 110px;
        height: 110px;
    }
    
    .product-info-demo h3 {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 24px;
    }
    
    .product-block-demo .flex-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .product-image-small {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .browser-header {
        padding: 12px 15px;
    }
    
    .browser-content {
        padding: 15px;
    }
    .video-wrapper { max-height: 55vh; }
    .demo-container { margin-top: 0; }
    
    .product-main { grid-template-columns: 100px 1fr; gap: 14px; }
    .image-placeholder { width: 100px; height: 100px; }
    .product-info-demo h3 {
        font-size: 18px;
    }
    
    .current-price {
        font-size: 20px;
    }
    
    .product-block-demo .product_block {
        padding: 15px;
    }
    
    .second-hand-options {
        padding: 15px;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        max-height: 60vh;
        overflow: auto;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .second-hand-close {
        top: 10px;
        right: 10px;
        font-size: 20px;
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   Calendly Modal Styling
   ========================================================================== */

.calendly-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.calendly-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.calendly-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    background: var(--light-color);
}

.calendly-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.calendly-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.calendly-modal-close:hover {
    background: #f8f9fa;
    color: var(--dark-color);
}

.calendly-modal-body {
    padding: 0;
    height: 600px;
}

.calendly-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 12px 12px;
}

.demo-step {
    display: none;
}
.demo-step.active {
    display: block;
}



/* ==========================================================================
   One-Pager Navigation & Smooth Scrolling
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

/* Update hero CTA buttons to scroll to sections */
.hero-cta a[href^="#"] {
    scroll-behavior: smooth;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .subscription-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .subscription-card.popular {
        transform: none;
    }
    
    .subscription-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .btn-meeting {
        padding: 14px 28px;
        font-size: 15px;
        align-self: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .btn-meeting {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .plan-price .price {
        font-size: 36px;
    }

    /* Mobile tuning for subscription overlay and CTAs */
    .subscription-section.has-overlay .container { filter: blur(8px); }
    .subscription-overlay-content { max-width: 90vw; padding: 24px; }
    .plan-cta .btn { width: 100%; }

    /* Hide third subscription card on mobile */
    .subscription-grid .subscription-card:nth-child(3) { display: none; }
    .subscription-grid .subscription-card:nth-child(2) { display: none; }
}

@media (max-width: 480px) {
    .subscription-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .subscription-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
}

/* Disable hover-driven lifts on touch devices to reduce motion */
@media (hover: none) {
    .feature-card:hover,
    .listing-type-card:hover,
    .process-card:hover,
    .subscription-card:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
}