* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    padding: 1rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.header-logo img {
    width: 50px;
    height: 50px;
}

.header-logo span {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(to right, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-cta {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.header-cta:hover {
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 1rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(37, 99, 235, 0.2), rgba(15, 23, 42, 1), rgba(6, 182, 212, 0.2));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    display: block;
}

@media (min-width: 768px) {
    .hero-logo {
        width: 220px;
        height: 220px;
    }
    .header-logo img {
        width: 55px;
        height: 55px;
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    color: #60a5fa;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #60a5fa, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.hero p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.5rem;
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    color: white;
}

.btn-secondary:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

/* Sections */
section {
    padding: 6rem 1rem;
}

.section-alt {
    background-color: rgba(30, 41, 59, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
.card {
    padding: 2rem;
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background-color: rgba(30, 41, 59, 0.7);
    transform: translateY(-5px);
}

.card-icon {
    color: #60a5fa;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.card p {
    color: #94a3b8;
    line-height: 1.7;
}

/* Workflow Cards */
.workflow-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.workflow-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.workflow-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    background-color: #1e293b;
    border-bottom: 1px solid #334155;
    padding: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.workflow-image:hover {
    opacity: 0.8;
}

.workflow-content {
    padding: 1.5rem;
}

.workflow-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #60a5fa;
}

.workflow-content p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #60a5fa;
}

/* Benefits */
.benefit {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: rgba(30, 41, 59, 0.3);
    border-radius: 0.5rem;
}

.benefit svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit p {
    color: #cbd5e1;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background-color: rgba(30, 41, 59, 0.7);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.faq-item p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-textarea {
    resize: none;
}

/* Footer */
footer {
    padding: 3rem 1rem;
    border-top: 1px solid #1e293b;
    text-align: center;
    color: #94a3b8;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

footer a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #93c5fd;
}

/* Icons */
.icon {
    width: 2rem;
    height: 2rem;
}

.icon-sm {
    width: 1.5rem;
    height: 1.5rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ElevenLabs Widget */
elevenlabs-convai {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

elevenlabs-convai.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.lightbox-close:hover {
    color: #60a5fa;
}