/* --- style.css content starts here --- */
/* Universal box-sizing for consistent layout */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --primary-font: 'Inter', sans-serif;
    --white: #ffffff;
    --light-grey: #e0e0e0;
    --medium-grey: #9e9e9e;
    --dark-grey: #424242;
    --accent-color: #6a82fb; /* A subtle blue for highlights */
    --text-color: #333333;
}

body {
    font-family: var(--primary-font);
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
    position: relative; /* For background pattern canvas */
    color-scheme: light;
}

/* Background Pattern Canvas */
#backgroundPatternCanvas {
    position: fixed; /* Fixed to viewport */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Allow clicks to pass through */
    z-index: -2; /* Ensure it's behind all content */
}

.background-image-left,
.background-image-right {
    position: fixed;
    top: 40%;
    transform: translateY(-50%);
    width: 65vw; /* Adjust as needed, e.g., 20vw-30vw */
    height: auto;
    opacity: 0.15; /* Very subtle */
    z-index: -1; /* Behind content, above canvas */
    pointer-events: none; /* Ensure no interaction */
}

.background-image-left {
    margin-top: 100px;
    left: 0;
}

.background-image-right {
    right: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1; /* Ensure content is above background */
    position: relative; /* To contain its z-index */
}

/* Header - Sticky */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px; /* Consistent padding */
    position: sticky; /* Make it sticky */
    top: 0;
    background-color: var(--white); /* Default background */
    z-index: 100; /* High z-index to stay on top */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.8); /* Transparent white */
    backdrop-filter: blur(5px); /* Blur background */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Subtle shadow when sticky */
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--accent-color);
}

/* Navigation */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 15px 20px; /* Padding for desktop nav */
    display: flex;
    border-radius: 8px; /* Added border radius */
    background-color: var(--white); /* Default background for desktop */
}

.nav-menu li {
    margin: 0 15px; /* Adjusted margin for spacing */
}

.nav-menu a {
    text-decoration: none;
    color: var(--medium-grey);
    font-weight: 400;
    font-size: 1.05em;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
    padding: 8px 12px; /* Added padding to links for better hover/click area */
    display: block; /* Make links block for padding to apply */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dark-grey);
    transform: translateY(-2px);
}
.nav-menu a:hover::after {
    width: 100%;
    left: 0;
    background: var(--accent-color);
}

/* Hamburger icon for mobile */
.hamburger {
    display: none; /* Hidden on desktop */
    font-size: 1.8em;
    color: var(--dark-grey);
    cursor: pointer;
    z-index: 100;
}

/* Running Reviews Line - Sticky, below header */
.reviews-line {
    background-color: var(--light-grey);
    color: var(--dark-grey);
    font-size: 0.85em;
    padding: 8px 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky; /* Make it sticky */
    top: 0; /* This will be set dynamically by JS */
    z-index: 99; /* Slightly lower than header */
    transition: top 0.3s ease; /* Smooth transition if header height changes */
}

.reviews-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-reviews 90s linear infinite; /* Slower speed */
}

.reviews-content span {
    margin-right: 40px;
    opacity: 0.8;
}

@keyframes scroll-reviews {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px 0;
    width: 100%;
}

.hero-section h1 {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    /* color: var(--dark-grey); */
    background: -webkit-linear-gradient(0deg,rgba(219, 53, 147, 1) 0%, rgba(110, 74, 177, 1) 40%, rgb(44, 151, 222) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-section p {
    font-size: 1.2em;
    font-weight: 300;
    color: var(--medium-grey);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--light-grey);
    background-color: var(--white);
    color: var(--medium-grey);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0);
}

.cta-button:hover {
    border-color: var(--accent-color);
    color: var(--dark-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Waitlist Section */
.waitlist-section {
    text-align: center;
    padding: 40px 0;
    width: 100%;
    margin-top: 40px;
}

.waitlist-section h2 {
    font-size: 2em;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.waitlist-section p {
    font-size: 1em;
    color: var(--medium-grey);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    font-family: var(--primary-font);
    font-size: 1em;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(106, 130, 251, 0.2);
}

.waitlist-form button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.waitlist-form button:hover {
    background-color: #5572e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#waitlist-message {
    margin-top: 20px;
    font-size: 0.95em;
    font-weight: 600;
}
#waitlist-message.success {
    color: green;
}
#waitlist-message.error {
    color: red;
}


/* General Section Styling */
section {
    width: 100%;
    padding: 80px 0;
    text-align: center;
    border-top: 0;
    margin-top: 20px;
}

section:first-of-type {
    margin-top: 0;
}

section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 30px;
}

section p {
    font-size: 1.1em;
    font-weight: 300;
    color: var(--medium-grey);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 10px auto;
}

/* Vision Section */
.vision-quote {
    font-size: 2em;
    font-style: italic;
    font-weight: 300;
    color: var(--dark-grey);
    max-width: 800px;
    margin: 40px auto 60px auto;
    line-height: 1.4;
}

.vision-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-item {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease-in-out;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.industry-item h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.industry-item p {
    font-size: 1em;
    font-weight: 300;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 0; /* Override section p margin */
    max-width: none; /* Override section p max-width */
}
/* Vision Section */
.vision-quote {
    font-size: 2em;
    font-style: italic;
    font-weight: 300;
    color: var(--dark-grey);
    max-width: 800px;
    margin: 40px auto 60px auto;
    line-height: 1.4;
}

.vision-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-item {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease-in-out;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.industry-item h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.industry-item p {
    font-size: 1em;
    font-weight: 300;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 0; /* Override section p margin */
    max-width: none; /* Override section p max-width */
}


/* Features Section (existing) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.feature-item h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.feature-item p {
    font-size: 1em;
    font-weight: 300;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease-in-out;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.testimonial-item p {
    font-style: italic;
    font-size: 1em;
    color: var(--dark-grey);
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: none;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

.testimonial-company {
    font-size: 0.9em;
    color: var(--medium-grey);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-plan {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 40px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease-in-out;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.pricing-plan h3 {
    font-size: 1.8em;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.price span {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--medium-grey);
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    text-align: left;
}

.pricing-plan ul li {
    color: var(--medium-grey);
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 0.95em;
    display: flex;
    align-items: center;
}

.pricing-plan ul li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: 600;
}

.pricing-plan .cta-button {
    padding: 12px 25px;
    font-size: 1em;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-grey);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    font-family: var(--primary-font);
    font-size: 1em;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(106, 130, 251, 0.2);
}

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

.contact-form button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    background-color: #5572e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    font-size: 0.9em;
    color: var(--medium-grey);
    border-top: 1px solid var(--light-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-media-icons {
    display: flex;
    gap: 20px;
}

.social-media-icons a {
    color: var(--medium-grey);
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-media-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    body{
        color-scheme: light;
        background-color: var(--white);
    }
    .header {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 20px; /* Adjust header padding for mobile */
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px; /* Reduced margin */
    }

    .nav-menu {
        position: fixed; /* Fixed to viewport */
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white overlay */
        backdrop-filter: blur(8px); /* Blur background */
        flex-direction: column;
        justify-content: center; /* Center items vertically */
        align-items: center; /* Center items horizontally */
        z-index: 101; /* Higher than header */
        display: none; /* Hidden by default */
        transform: translateX(100%); /* Start off-screen to the right */
        transition: transform 0.3s ease-in-out; /* Smooth transition */
        border-radius: 0; /* No border radius for full screen */
        padding: 0; /* Remove padding from ul, links will have their own */
    }

    .nav-menu.active {
        display: flex; /* Show when active */
        transform: translateX(0); /* Slide in */
    }

    .nav-menu li {
        margin: 20px 0; /* More vertical spacing for mobile links */
    }

    .nav-menu a {
        font-size: 1.5em; /* Larger font size for mobile links */
        padding: 10px 20px; /* Padding for touch targets */
    }

    .hamburger {
        display: block; /* Show hamburger */
        position: fixed; /* Fixed so it's always accessible */
        top: 20px;
        right: 20px;
        z-index: 102; /* Above the overlay */
    }

    .reviews-line {
        /* top will be set by JS */
    }

    .hero-section h1 {
        font-size: 2.5em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .waitlist-form {
        flex-direction: column;
        max-width: 90%;
    }

    .waitlist-form input[type="email"],
    .waitlist-form button {
        width: 100%;
        min-width: unset;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2em;
    }

    section p {
        font-size: 1em;
    }

    .features-grid, .testimonials-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .background-image-left,
    .background-image-right {
        width: 55vw; /* Make them slightly smaller on mobile */
        opacity: 0.1; /* Even more subtle on mobile */
    }
}

@media (max-width: 480px) {
    .reviews-line {
        font-size: 0.8em;
    }

    .hero-section h1 {
        font-size: 2em;
    }
}
/* --- style.css content ends here --- */