
/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: white;
}

/* AI Section */
.ai-section {
    padding: 100px 0;
    background: none;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}


.ai-content {
    max-width: 900px;
    margin: 0 auto;
}

.ai-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* AI Grid */
.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.ai-column {
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    background: rgba(17, 32, 29, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-column:hover {
    transform: translateY(-10px);
}

.ai-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.ai-list {
    list-style: none;
}

.ai-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.ai-list li:last-child {
    border-bottom: none;
}

.ai-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcC005;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* AI Features */
.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ai-feature {
    text-align: center;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    background: rgba(17, 32, 29, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.ai-feature i {
    font-size: 3rem;
    color: #fcC005;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.ai-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.ai-warning {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 40px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* AI Philosophy */
.ai-philosophy {
    margin: 40px 0;
}

.philosophy-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.philosophy-list {
    list-style: none;
    margin: 0 auto;
    max-width: 600px;
}

.philosophy-list li {
    padding: 15px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.philosophy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcC005;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.ai-question {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case {
    text-align: center;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    background: rgba(17, 32, 29, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case:hover {
    transform: translateY(-10px);
}

.use-case i {
    font-size: 3rem;
    color: #fcC005;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.use-case h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Trust Section */
.trust-content {
    max-width: 600px;
    margin: 0 auto;
}

.trust-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.trust-list {
    list-style: none;
    margin: 0 auto;
}

.trust-list li {
    padding: 15px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcC005;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Closing Section */
.closing-section {
    padding: 100px 0;
    background: none;
    color: white;
    text-align: center;
}

.closing-content {
    max-width: 600px;
    margin: 0 auto;
}

.closing-intro {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .ai-section {
        padding: 60px 0;
    }
}

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

/* Scroll animations */
.ai-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ai-section.visible {
    opacity: 1;
    transform: translateY(0);
}