* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #D1D5DB;
}

body {
    background: linear-gradient(145deg, #1E3A8A, #3B82F6);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px;
    background: #3B82F6(30, 88, 178, 0.75);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #3B82F6(30, 88, 178, 0.75); /* Semi-transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.5rem 0;
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    header {
        background: rgba(30, 58, 138, 0.85);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron';
    font-size: 2rem;
    color: #2DD4BF;
    text-shadow: 0 0 5px rgba(45, 212, 191, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    color: #2DD4BF;
}

nav a:hover, nav a.active {
    background: linear-gradient(90deg, #2DD4BF, #6EE7B7);
    color: #1E3A8A;
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Orbitron';
    font-size: 4rem;
    color: #2DD4BF;
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.7);
    margin-bottom: 1rem;
}

.hero-content a h1 {
    text-decoration: none;
}

.hero h2 {
    font-family: 'Orbitron';
    font-size: 2rem;
    color: #2DD4BF;
    margin-bottom: 2rem;
}

.hero p, .hero ul {
    font-family: 'Orbitron';
    font-size: 1.5rem;
    color: #6EE7B7;
    margin-bottom: 2rem;
}

.hero ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.hero ul li {
    margin-bottom: 2rem;
}

.hero-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.hero-content form label {
    font-size: 1.2rem;
    color: #2DD4BF;
}

.hero-content form input,
.hero-content form textarea {
    padding: 0.75rem;
    border: 1px solid #2DD4BF;
    border-radius: 10px;
    background: #1E3A8A;
    color: #D1D5DB;
}

.hero-content form textarea {
    min-height: 100px;
    resize: vertical;
}

.hero-content form button {
    padding: 0.75rem 2rem;
    background: #2DD4BF;
    color: #1E3A8A;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-content form button:hover {
    background: #6EE7B7;
    box-shadow: 0 0 15px rgba(110, 231, 183, 0.5);
}

.cta-button {
    font-family: 'Orbitron';
    display: inline-block;
    padding: .3rem 1.5rem;
    background: linear-gradient(90deg, #2DD4BF, #6EE7B7);
    color: #1E3A8A;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(110, 231, 183, 0.7);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

#particle-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Chatbot Section with Zapier Embed */
.chatbot-section {
    padding: 4rem 0;
    background: linear-gradient(145deg, #1E3A8A, #3B82F6);
    position: relative;
    z-index: 1;
}

.chatbot-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #2DD4BF;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
}

.embedded-chatbot {
    max-width: 600px;
    margin: 0 auto 2rem;
}

zapier-interfaces-chatbot-embed {
    display: block !important; /* Ensure inline display */
    width: 100%;
    height: 700px;
    border: 2px solid #2DD4BF;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.3), rgba(45, 212, 191, 0.1));
    backdrop-filter: blur(8px);
    overflow: hidden;
}

zapier-interfaces-chatbot-embed::part(chat-window) {
    background: transparent;
    color: #D1D5DB;
}

zapier-interfaces-chatbot-embed::part(chat-message) {
    background: #3B82F6(45, 212, 191, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #D1D5DB;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

zapier-interfaces-chatbot-embed::part(user-message) {
    background: rgba(59, 130, 246, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #D1D5DB;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

#buy-now.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    background: linear-gradient(90deg, #2DD4BF, #6EE7B7);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1E3A8A;
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

#buy-now.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(110, 231, 183, 0.7);
    background: linear-gradient(90deg, #2DD4BF, #8B5CF6);
}

.chatbot-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 40px;
    background: linear-gradient(90deg, #1294eb, #6EE7B7);
    border: none;
    border-radius: 50%;
    color: #385bbb;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(110, 231, 183, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chatbot-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(82, 157, 211, 0.7);
}

/* Survey Modal */
.survey-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.survey-modal.active {
    display: flex;
}

.survey-content {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #2d7ed4;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.3);
}

.survey-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: #6ebbe7;
    margin-bottom: 1.5rem;
}

.survey-question {
    margin-bottom: 1.5rem;
    text-align: left;
}

.survey-question p {
    color: #2da2d4;
    margin-bottom: 0.5rem;
}

.survey-question label {
    display: inline-block;
    margin-right: 1rem;
    color: #D1D5DB;
}

.survey-question input[type="radio"] {
    margin-right: 0.5rem;
}

.survey-question input[type="email"],
.survey-question textarea {
    width: 100%;
    min-height: 80px;
    background: #1E3A8A;
    border: 1px solid #2da5d4;
    border-radius: 10px;
    padding: 0.75rem;
    color: #D1D5DB;
    resize: vertical;
}

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

.survey-buttons button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.survey-buttons button[type="submit"] {
    background: #2d94d4;
    color: #1E3A8A;
}

.survey-buttons button[type="submit"]:hover {
    background: #094565;
    box-shadow: 0 0 15px rgba(110, 231, 183, 0.5);
}

.survey-buttons button[type="button"] {
    background: #3B82F6;
    color: #2d57d4;
}

.survey-buttons button[type="button"]:hover {
    background: #6ebbe7;
    color: #1E3A8A;
}

/* Features */
.features {
    padding: 6rem 0;
    text-align: center;
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #2dadd4;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(59, 130, 246, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #6eb9e7;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(45, 184, 212, 0.5);
}

.feature-card i {
    font-size: 2.5rem;
    color: #2d94d4;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #6ec1e7;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: rgba(30, 58, 138, 0.5);
    text-align: center;
}

.testimonials h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #2DD4BF;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #3B82F6;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #2DD4BF;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card span {
    color: #6EE7B7;
    font-weight: 400;
}

/* Footer */
footer {
    padding: 1rem 0;
    background: linear-gradient(145deg, #1E3A8A, #3B82F6);
    text-align: center;
}

footer p {
    display: inline;
    margin-right: 1rem;
}

.footer-links a {
    color: #2DD4BF;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.footer-links a {
    color: #6EE7B7;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2DD4BF;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p, .hero ul {
        font-size: 1.2rem;
    }
    nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    .embedded-chatbot {
        width: 90%;
    }
    zapier-interfaces-chatbot-embed {
        height: 300px;
    }
    #buy-now.cta-button {
        max-width: 250px;
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
    footer p, .footer-links {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Fix for form input issue on get-in-touch.html */
.hero-content {
    z-index: 10; /* Ensures form is interactive */
}