﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1867C0;
    --primary-orange: #FFA500;
    --pastel-pink: #FFB3D9;
    --pastel-purple: #C7B3FF;
    --pastel-green: #B3FFD9;
    --pastel-yellow: #FFF4B3;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --light-bg: #f9fafb;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

    .logo > a {
        text-decoration: none;
        color: inherit;
    }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

.cta-button {
    background: var(--primary-orange);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
        background: #FF8C00;
    }

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: var(--pastel-pink);
        border-radius: 50%;
        opacity: 0.3;
        z-index: 0;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: var(--pastel-purple);
        border-radius: 50%;
        opacity: 0.3;
        z-index: 0;
    }

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
}

    .hero h1 .gradient-text {
        color: #000000;
    }

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    background: white;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-blue);
}

    .secondary-button:hover {
        background: var(--primary-blue);
        color: white;
    }

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: white;
}

.features-section {
    padding: 6rem 2rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
    }

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
    color: #9ca3af;
    font-weight: 600;
}

.feature-card:nth-child(1) .feature-icon {
    background: #e8f4fd;
}

.feature-card:nth-child(2) .feature-icon {
    background: #fff4e6;
}

.feature-card:nth-child(3) .feature-icon {
    background: #ffe8f5;
}

.feature-card:nth-child(4) .feature-icon {
    background: #f0ebff;
}

.feature-card:nth-child(5) .feature-icon {
    background: #e6fff5;
}

.feature-card:nth-child(6) .feature-icon {
    background: #fffce6;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

.feature-category {
    margin-bottom: 6rem;
    scroll-margin-top: 160px;
}

.feature-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.category-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--gray);
    font-size: 1.125rem;
}

/* Itinerary Management - Blue */
#itinerary .category-header {
    border-bottom-color: var(--primary-blue);
}


/* Supplier Management - Orange */
#suppliers .category-header {
    border-bottom-color: var(--primary-orange);
}


/* Client Management - Purple */
#clients .category-header {
    border-bottom-color: var(--pastel-purple);
}

/* Agent Portal - Green */
#agents .category-header {
    border-bottom-color: var(--pastel-green);
}

/* Accounting - Pink */
#accounting .category-header {
    border-bottom-color: var(--pastel-pink);
}


/* Additional Features - Yellow */
#additional .category-header {
    border-bottom-color: var(--pastel-yellow);
}


/* Updated Feature Grid for categorized features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Feature Item styles */
.feature-item {
    background: var(--light-bg);
    padding: 1.75rem;
    border-radius: 15px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#itinerary .feature-item:hover {
    border-left-color: var(--primary-blue);
}

#suppliers .feature-item:hover {
    border-left-color: var(--primary-orange);
}

#clients .feature-item:hover {
    border-left-color: var(--pastel-purple);
}

#agents .feature-item:hover {
    border-left-color: var(--pastel-green);
}

#accounting .feature-item:hover {
    border-left-color: var(--pastel-pink);
}

#additional .feature-item:hover {
    border-left-color: var(--pastel-yellow);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.975rem;
}

/* Comparison Section */
.comparison {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-column {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

    .comparison-column h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 3px solid;
    }

    .comparison-column:first-child h3 {
        color: var(--gray);
        border-bottom-color: var(--gray);
    }

    .comparison-column:last-child h3 {
        color: var(--primary-blue);
        border-bottom-color: var(--primary-blue);
    }

.comparison-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

    .comparison-item:last-child {
        border-bottom: none;
    }

/* App Showcase */
.app-showcase {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #2196F3);
    color: white;
    position: relative;
    overflow: hidden;
}

    .app-showcase::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.app-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.app-features {
    list-style: none;
    margin-top: 2rem;
}

    .app-features li {
        padding: 0.75rem 0;
        padding-left: 2rem;
        position: relative;
    }

        .app-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
            color: var(--pastel-green);
        }

.app-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    text-align: center;
    font-size: 3rem;
}

/* Case Studies Section */
.case-studies {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
}

.case-study {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.case-study:hover {
    transform: translateY(-5px);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.case-study:nth-child(even) .case-study-image {
    order: 2;
}

.case-study:nth-child(even) .case-study-text {
    order: 1;
}

.case-study-image {
    background: #f3f4f6;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
    font-size: 1.125rem;
}

.case-study-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.case-study:nth-child(even) .case-study-tag {
    background: var(--primary-orange);
    color: #000000;
}

.case-study h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.case-study-company {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.case-study-excerpt {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.case-stat {
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.case-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.case-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: white;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: white;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .testimonial-card:nth-child(1) {
        border-left-color: var(--primary-blue);
    }

    .testimonial-card:nth-child(2) {
        border-left-color: var(--primary-orange);
    }

    .testimonial-card:nth-child(3) {
        border-left-color: var(--pastel-purple);
    }

    . testimonial-card:nth-child(4) {
        border-left-color: var(--pastel-green);
    }

    .testimonial-card:nth-child(5) {
        border-left-color: var(--pastel-pink);
    }

    .testimonial-card:nth-child(6) {
        border-left-color: var(--pastel-yellow);
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.stars {
    color: var(--primary-orange);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-pink));
    text-align: center;
}

.cta-section.white-bg {
    background: white;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-section a:hover {
        color: white;
    }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Demo Page Container */
.demo-container {
    margin-top: 80px;
    padding: 4rem 2rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side - Info */
.demo-info {
    position: sticky;
    top: 120px;
}

.demo-info h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-blue);
}

.demo-info p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.demo-benefits {
    list-style: none;
    margin-top: 2rem;
}

.demo-benefits li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--dark);
}

.demo-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.trust-badge {
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
}

.trust-badge p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark);
}

/* Right Side - Form */
.demo-form-container {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Form Styles */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--primary-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(24, 103, 192, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.submit-button {
    background: var(--primary-orange);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
    background: #FF8C00;
}

/* Main Solutions Section */
.main-solutions {
    padding: 6rem 2rem;
    background: white;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 30px;
}

.solution-large:nth-child(even) {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f9ff 100%);
}

.solution-large:nth-child(even) .solution-content {
    order: 2;
}

.solution-large:nth-child(even) .solution-image {
    order: 1;
}

.solution-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.solution-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
    margin-top: 2rem;
}

.solution-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.solution-image {
    background: #f3f4f6;
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Additional Solutions Grid */
.additional-solutions {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.solutions-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-top: 4px solid;
}

.solution-card:nth-child(1) {
    border-top-color: var(--primary-blue);
}

.solution-card:nth-child(2) {
    border-top-color: var(--primary-orange);
}

.solution-card:nth-child(3) {
    border-top-color: var(--pastel-purple);
}

.solution-card:nth-child(4) {
    border-top-color: var(--pastel-green);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-card-image {
    background: #f3f4f6;
    border-radius: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.solution-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-card ul {
    list-style: none;
    margin-top: 1rem;
}

.solution-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.solution-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Payment Providers Section */
.payment-providers {
    padding: 6rem 2rem;
    background: white;
}

.providers-grid {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    align-items: center;
}

.provider-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--dark);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.provider-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Integrations Section */
.integrations-section {
    padding: 6rem 2rem;
    background: white;
}

.integrations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.integration-category {
    margin-bottom: 5rem;
}

.integration-category:last-child {
    margin-bottom: 0;
}

/* Enhanced category-header for integrations (using existing styles) */
.integration-category .category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.integration-category .category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.integration-category .category-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.integration-category .category-header p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}


/* Integration Cards Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.integration-card:hover::before {
    transform: scaleX(1);
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.integration-logo {
    width: 100%;
    height: 100px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

.integration-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.integration-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.integration-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
}

.integration-badge.active {
    background: var(--pastel-green);
    color: var(--dark);
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.coming-soon-header {
    text-align: center;
    margin-bottom: 3rem;
}

.coming-soon-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.coming-soon-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

.coming-soon-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.coming-soon-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed #e5e7eb;
    transition: all 0.3s;
}

.coming-soon-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.coming-soon-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.coming-soon-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--pastel-yellow);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

/* Request Integration Section */
.request-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-pink));
    text-align: center;
}

.request-content {
    max-width: 800px;
    margin: 0 auto;
}

.request-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
}

.request-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--dark);
    opacity: 0.85;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: white;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark);
}

.story-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.timeline-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

.timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-orange));
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-blue);
    border-radius: 50%;
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-dot {
    border-color: var(--primary-orange);
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.timeline-item:nth-child(even) .timeline-year {
    background: var(--primary-orange);
    color: #000000;
}

.timeline-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-screenshot {
    background: #f3f4f6;
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid #e5e7eb;
    overflow: hidden;
}

.timeline-item:nth-child(odd) .timeline-screenshot {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-screenshot {
    grid-column: 1;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: white;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.values-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.value-card:nth-child(1) .value-icon {
    background: linear-gradient(135deg, var(--primary-blue), #4A90E2);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--primary-orange), #FFB84D);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--pastel-purple), #9575CD);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, var(--pastel-green), #4DB6AC);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.team-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
}

.team-content p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-locations {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.location {
    padding: 1rem 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    font-weight: 600;
}

/* Value Proposition Section */
.value-prop {
    padding: 6rem 2rem;
    background: white;
}

.value-prop-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-prop-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.value-prop-content p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.value-prop-list {
    list-style: none;
    margin-top: 2rem;
}

.value-prop-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--dark);
}

.value-prop-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.value-prop-visual {
    background: var(--light-bg);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
}

.branding-mockup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.mockup-logo {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.mockup-title {
    font-weight: 700;
    color: var(--dark);
}

.mockup-content {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefits-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, var(--primary-blue), #4A90E2);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, var(--primary-orange), #FFB84D);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, var(--pastel-purple), #9575CD);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, var(--pastel-green), #4DB6AC);
}

.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, var(--pastel-pink), #FF80AB);
}

.benefit-card:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, var(--pastel-yellow), #FFD54F);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Ideal Partners Section */
.ideal-partners {
    padding: 6rem 2rem;
    background: white;
}

.ideal-partners-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ideal-partners h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark);
}

.ideal-partners p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.partner-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-type {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.partner-type:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.partner-type h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Contact Form Section */
.contact-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Enhanced contact-info for standard contact page */
.contact-section .contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-section .contact-info p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateX(5px);
}

.contact-card:nth-child(1) {
    border-left-color: var(--primary-blue);
}

.contact-card:nth-child(2) {
    border-left-color: var(--primary-orange);
}

.contact-card:nth-child(3) {
    border-left-color: var(--pastel-purple);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-card:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, var(--primary-blue), #4A90E2);
}

.contact-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, var(--primary-orange), #FFB84D);
}

.contact-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, var(--pastel-purple), #9575CD);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Enhanced contact-form-container for standard contact page */
.contact-section .contact-form-container {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 30px;
}

.contact-section .form-header {
    margin-bottom: 2rem;
}

.contact-section .form-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-section .form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-section .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-section .privacy-notice {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
}

.contact-section .privacy-notice a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-section .privacy-notice a:hover {
    text-decoration: underline;
}

/* Office Locations Section */
.locations-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.locations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.locations-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.locations-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

.locations-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.location-flag {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.location-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Privacy Policy Page */
/* Header */
.policy-header {
    margin-top: 80px;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 100%);
    text-align: center;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
}

.policy-meta {
    color: var(--gray);
    font-size: 1rem;
}

/* Table of Contents */
.toc-section {
    padding: 3rem 2rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.toc-container {
    max-width: 900px;
    margin: 0 auto;
}

.toc-container h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.toc-list li a {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s;
}

.toc-list li a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

/* Content */
.policy-content {
    padding: 4rem 2rem;
    background: white;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-blue);
}

.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.policy-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.highlight-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-pink));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.contact-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-box p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.contact-box a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .app-content,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .quick-nav {
        position: relative;
        top: 0;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-header h2 {
        font-size: 1.75rem;
    }

    .integration-category .category-header h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .demo-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .solution-large {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .solution-large:nth-child(even) .solution-content,
    .solution-large:nth-child(even) .solution-image {
        order: initial;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .request-section h2 {
        font-size: 2rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2rem;
    }

    .case-study-content {
        grid-template-columns: 1fr;
    }

    .case-study:nth-child(even) .case-study-image,
    .case-study:nth-child(even) .case-study-text {
        order: initial;
    }

    .case-study-stats {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .demo-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .demo-info {
        position: static;
    }

    .demo-info h1 {
        font-size: 2rem;
    }

    .demo-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 60px;
    }

    .timeline-dot {
        left: 20px;
        top: 1rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-screenshot,
    .timeline-item:nth-child(even) .timeline-screenshot {
        grid-column: 1;
    }

    .team-locations {
        flex-direction: column;
        gap: 1rem;
    }

    .value-prop-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .partner-types {
        grid-template-columns: 1fr;
    }

    .contact-section .contact-form-container {
        padding: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Extra small screens - Demo page horizontal overflow fix */
@media (max-width: 400px) {
    .demo-container {
        padding: 2rem 1rem;
    }

    .demo-form-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .demo-info h1 {
        font-size: 1.5rem;
    }

    .demo-info p {
        font-size: 1rem;
    }

    .demo-benefits li {
        padding-left: 2rem;
        font-size: 0.95rem;
    }

    .trust-badge {
        padding: 1rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
