:root {
    --primary-color: #75AE3A;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --text-color: #333;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    /* Clean white background */
    min-height: 100vh;
    overflow-x: hidden;
    background-color: transparent !important;
    /* Override openbatra.css pistachio green */
}

/* --- Header --- */
.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.ai-nav {
    height: auto !important;
    min-height: 0 !important;
    display: flex;
    align-items: center;
}

.ai-nav a {
    text-decoration: none;
    color: var(--secondary-color);
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.ai-nav a:hover {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(117, 174, 58, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

/* --- AI Wizard Container --- */
.wizard-wrapper {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out 0.8s backwards;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 40px;
    position: relative;
}

/* Override/Adapt Catalog Styles for this context */
.form-card {
    background: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    box-shadow: none !important;
}

.styled-input {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s;
}

.styled-input:focus {
    background: white !important;
    box-shadow: 0 0 0 3px rgba(117, 174, 58, 0.2) !important;
    border-color: var(--primary-color) !important;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Animations --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- Nano Status Override --- */
.nano-status-fab {
    bottom: 30px !important;
    right: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

/* --- Pricing Styles --- */
.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 10px 0;
}

/* --- Parallax Backgrounds --- */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    /* Increased opacity for readability */
    backdrop-filter: blur(3px);
    /* Blur to help text stand out */
    z-index: 0;
}

/* Keep stronger overlay for Demo section to ensure readability of the wizard */
.bg-demo::before {
    background: rgba(255, 255, 255, 0.85);
}

.parallax-section>* {
    position: relative;
    z-index: 1;
}

/* Specific Backgrounds */
.bg-hero {
    background-image: url('../img/parallax/hero.png');
}

.bg-why {
    background-image: url('../img/parallax/why.png');
}

.bg-advantages {
    background-image: url('../img/parallax/advantages.png');
}

.bg-services {
    background-image: url('../img/parallax/services.png');
}

.bg-facilitators {
    background-image: url('../img/parallax/facilitators.png');
}

.bg-demo {
    background-image: url('../img/parallax/demo.png');
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .ai-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .ai-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .ai-nav a {
        margin-left: 10px;
        margin-right: 10px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
        /* Reduced from 3.5rem */
        word-wrap: break-word;
        /* Prevent overflow */
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 60px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Stack columns */
        padding: 0 15px;
    }

    .wizard-wrapper {
        padding: 0 10px;
    }

    .glass-card {
        padding: 20px;
    }
}