/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #000000;
    background-color: #FFFFFF;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
    border: none;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 20px 20px, 25px 25px, 30px 30px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    z-index: -1;
    animation: sphereGlow 15s ease-in-out infinite;
    filter: blur(0.5px);
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: -2;
    animation: spherePulse 8s ease-in-out infinite;
}

/* Additional dot pattern overlay */
body {
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    background-position: 0 0;
}

@keyframes sphereGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes spherePulse {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 255, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.nav-logo h2 {
    color: #000000;
    font-weight: 700;
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666666;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: #000000;
    border-bottom-color: #000000;
}

.nav-cta {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    letter-spacing: -0.01em;
    text-transform: none;
    min-width: auto;
    height: 32px;
    line-height: 1;
}

.nav-cta:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-cta:active {
    transform: none;
}

/* Hero Section */
.hero {
    padding: 20px 0 40px;
    background: #FFFFFF;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    border: none;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.highlight {
    color: #000000;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}


.hero-subtitle {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-cta {
    margin-top: 30px;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-primary {
    background: #0d1208;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    letter-spacing: -0.01em;
    text-transform: none;
}

.btn-primary:hover {
    background: #080b05;
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

.btn-primary:active {
    transform: none;
}

.btn-primary.large {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-1px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-interface {
    position: relative;
    width: 400px;
    height: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.voice-wave {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    position: relative;
}

.voice-wave::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #2563eb;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.ai-chat {
    text-align: center;
}

.chat-bubble {
    background: #f1f5f9;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    color: #475569;
    font-weight: 500;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

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

/* Trusted Companies Section */
.trusted-companies {
    padding: 60px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.trusted-content {
    text-align: center;
}

.trusted-text {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.companies-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.companies-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 3rem;
    align-items: center;
    width: max-content;
    animation-play-state: running;
    animation-fill-mode: none;
}

.company-logo {
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    opacity: 1;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: #ffffff;
    border: 0.0px solid #FFFFFF;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    border: none;
    outline: none;
    box-shadow: none;
}

.company-logo:hover {
    opacity: 1;
    color: #ffffff;
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Muller Automotive Logo Styling */
.muller-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: #ffffff;
    border-radius: 4px;
}

.muller-logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border: none;
    outline: none;
    box-shadow: none;
}

.muller-logo:hover {
    background: #8B4513;
}

.muller-logo:hover .muller-logo-img {
    filter: grayscale(0%) brightness(0) invert(1);
}

/* CI Logo Styling */
.ci-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.0rem;
    background: #ffffff;
    border-radius: 0px;
    min-width: 120px;
    min-height: 80px;
}

.ci-logo-img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
}

.ci-logo:hover {
    background: #000000;
}

.ci-logo:hover .ci-logo-img {
    filter: grayscale(0%) brightness(0) invert(1);
}

/* Gatesche Logo Styling */
.gatesche-logo {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    background: #ffffff;
    border: 2px solid #000000;
    padding: 0.75rem 1.25rem;
    transform: skew(-5deg);
    position: relative;
    overflow: hidden;
}

.gatesche-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.gatesche-logo:hover::before {
    left: 100%;
}

.gatesche-logo:hover {
    background: #000000;
    color: #ffffff;
    transform: skew(-5deg) translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: #FFFFFF;
}

/* AI Agents Section */
.ai-agents {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.agent-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.agent-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.agent-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Dashboard Preview Section */
.dashboard-preview {
    background: #ffffff;
    padding: 0 0 40px 0;
    margin-top: -100px;
}

.dashboard-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-image {
    margin: 0 auto;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Voice AI Section */
.voice-ai {
    padding: 100px 0;
    background: #ffffff;
}

.voice-ai-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.voice-ai-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.voice-ai-text > p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 50px;
    line-height: 1.6;
}

.voice-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.voice-feature {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.voice-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.voice-feature p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: #666666;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: transparent;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: #666666;
    line-height: 1.5;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #FFFFFF;
}

.benefits-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.benefits-text h2 {
    font-size: 2rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.benefits-text p {
    font-size: 1.25rem !important;
    font-weight: 500;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 0;
}

.benefits-text h2 em {
    color: #000000;
    font-style: italic;
    position: relative;
}

.benefits-text > p {
    font-size: 1rem !important;
    color: #666666;
    margin-bottom: 0;
}

.benefits-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.benefits-cta .btn-primary {
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.benefits-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 18, 8, 0.3);
    text-decoration: none;
}

.benefit-item {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 0.5rem;
    color: #000000;
    letter-spacing: -0.01em;
}

.benefit-item p {
    color: #000000;
    line-height: 1.5;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.dashboard-preview {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #000000;
    font-style: italic;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #FFFFFF;
    color: #000000;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 2rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.cta .btn-primary {
    background: #0d1208;
    color: #ffffff;
}

.cta .btn-primary:hover {
    background: #080b05;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #FFFFFF;
    color: #000000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.footer-section h3:first-child {
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.25rem;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.01em;
}

.footer-section p {
    color: #666666;
    line-height: 1.5;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #666666;
}

/* Demo Request Page Styles */
.demo-request {
    padding: 100px 0 80px;
    background: #FFFFFF;
    min-height: 100vh;
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.demo-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.demo-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    text-align: left;
}

.demo-form {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
    color: #000000;
}

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

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

.demo-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.demo-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: -0.02em;
    text-align: center;
}

.demo-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-info ul li {
    padding: 0.75rem 0;
    color: #333333;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.demo-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0d1208;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-info {
    background: rgba(13, 18, 8, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0d1208;
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.contact-info p {
    margin: 0;
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.success-message h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.success-message p {
    color: #666666;
    margin-bottom: 1rem;
}

.error-message {
    text-align: center;
    padding: 2rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
}

.error-message h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.error-message p {
    color: #666666;
    margin-bottom: 1rem;
}

.error-message small {
    color: #dc2626;
    font-size: 0.8rem;
}

.nav-cta.active {
    background: transparent;
    color: #000000;
    border-bottom-color: #000000;
    font-weight: 500;
}

/* About Us Page Styles */
.about-us {
    padding: 120px 0 80px;
    background: #FFFFFF;
    min-height: 100vh;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.mission-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.mission-content p {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.mission-content em {
    font-style: italic;
    color: #000000;
    font-weight: 500;
}

.team-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.team-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: rgba(0, 0, 0, 0.02);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.team-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary {
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 18, 8, 0.3);
    text-decoration: none;
}

.nav-link.active {
    color: #000000;
    border-bottom-color: #000000;
    font-weight: 500;
}

/* Terms of Service Page Styles */
.terms-section {
    padding: 120px 0 80px;
    background: #FFFFFF;
    min-height: 100vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.last-updated {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.terms-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.terms-intro p {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.terms-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.terms-body p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-body li {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.terms-body li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .benefits-text h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-content p {
        font-size: 1.25rem;
    }
    
    .demo-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-title {
        font-size: 2.5rem;
    }
    
    .trusted-companies {
        padding: 40px 0;
    }
    
    .companies-track {
        gap: 2rem;
    }
    
    .company-logo {
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
        border: 1px solid #000000;
    }
    
    .about-us {
        padding: 100px 0 60px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .mission-content h2 {
        font-size: 1.5rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .terms-section {
        padding: 100px 0 60px;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-intro p {
        font-size: 1rem;
    }
    
    .terms-body h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }
    
    .terms-body p,
    .terms-body li {
        font-size: 0.9rem;
    }
    
    .muller-logo {
        padding: 0.5rem 0.8rem;
        border: 1px solid #8B4513;
    }
    
    .muller-main {
        font-size: 1rem;
    }
    
    .muller-sub {
        font-size: 0.7rem;
    }
    
    .gatesche-logo {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        transform: skew(-3deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}